-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
f23eac8
commit a8e2686
Showing
14 changed files
with
79 additions
and
77 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1,18 @@ | ||
#!/bin/bash | ||
|
||
# Create directory if it doesn't exist | ||
mkdir -p $HOME/.config/fastfetch | ||
mkdir -p "$HOME"/.config/fastfetch | ||
|
||
# Copy config file to user's config directory | ||
cp -v $HOME/linux-stuff/Dotfiles/config/fastfetch/config.jsonc $HOME/.config/fastfetch/config.jsonc | ||
cp -v "$HOME"/linux-stuff/Dotfiles/config/fastfetch/config.jsonc "$HOME"/.config/fastfetch/config.jsonc | ||
|
||
# Set ownership for the user | ||
chown -R $USER:$USER $HOME/.config/fastfetch | ||
chown -R "$USER":"$USER" "$HOME"/.config/fastfetch | ||
|
||
# Copy config file to system-wide skel directory | ||
sudo mkdir -p /etc/skel/.config/fastfetch | ||
sudo cp -v $HOME/.config/fastfetch/config.jsonc /etc/skel/.config/fastfetch/ | ||
sudo cp -v "$HOME"/.config/fastfetch/config.jsonc /etc/skel/.config/fastfetch/ | ||
|
||
# Copy config file to root's config directory | ||
sudo mkdir -p /root/.config/fastfetch | ||
sudo cp -v /etc/skel/.config/fastfetch/config.jsonc /root/.config/fastfetch/ | ||
sudo cp -v /etc/skel/.config/fastfetch/config.jsonc /root/.config/fastfetch/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.