Add fetch and install scripts

- Add fetch script which fetches the current config that is used by the
  system into the git repo
- Add install script which copies the config in the repo into the config
  folder for the user
- Add waybar as config
This commit is contained in:
Thraix
2026-05-19 19:38:06 +02:00
parent e18df83174
commit aecdb34116
21 changed files with 1508 additions and 0 deletions
+13
View File
@@ -0,0 +1,13 @@
#!/bin/bash
# Check if waybar is running
if pgrep -x "waybar" > /dev/null; then
# If running, kill the waybar process
pkill -x "waybar"
waybar &
else
# If not running, start waybar
waybar &
fi