copy dotfiles from arch

This commit is contained in:
Benjamin Palko 2024-07-11 09:20:12 -04:00
parent 76d6787417
commit c71ba09614
57 changed files with 2714 additions and 0 deletions

View file

@ -0,0 +1,11 @@
#!/bin/bash
CONFIG_FILES="$HOME/.config/swaync/ $HOME/.cache/wal/"
trap "killall swaync" EXIT
swaync &
while true; do
inotifywait -e create,modify -r $CONFIG_FILES
swaync-client -R & swaync-client -rs
done

View file

@ -0,0 +1,12 @@
#!/bin/bash
CONFIG_FILES="$HOME/.config/waybar/ $HOME/.cache/wal/"
trap "killall waybar" EXIT
while true; do
sleep 1.6
waybar &
inotifywait -e create,modify -r $CONFIG_FILES
killall waybar
done