diff --git a/.vscode/settings.json b/.vscode/settings.json index aceb9f9..90b44d8 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -15,5 +15,6 @@ "titleBar.inactiveBackground": "#83256199", "titleBar.inactiveForeground": "#e7e7e799" }, - "peacock.color": "#832561" + "peacock.color": "#832561", + "python.pythonPath": "C:\\Users\\sattler\\AppData\\Local\\Programs\\Python\\Python39\\python.exe" } \ No newline at end of file diff --git a/users/benjasat/config/neofetch.sh b/users/benjasat/config/neofetch.sh new file mode 100644 index 0000000..1d5e4fb --- /dev/null +++ b/users/benjasat/config/neofetch.sh @@ -0,0 +1,14 @@ +#!/bin/bash + +configure_neofetch_server () { + echo "Installing neofetch configuration" + + if [ -f "/home/$USER/.config/neofetch/config.conf"]; then + # rename old config to "config_old.conf" + cp /home/$USER/.config/neofetch/config.conf /home/$USER/.config/neofetch/config_old.conf + sudo rm -f /home/$USER/.config/neofetch/config.conf + fi + + # copy new config file + cp $PWD/users/benjasat/config/server/neofetch/config.conf /home/$USER/.config/neofetch/config.conf +} \ No newline at end of file