From: Andre Ramnitz Date: Mon, 11 Dec 2023 05:53:07 +0000 (+0100) Subject: bin: clean up X-Git-Tag: v0.2~352 X-Git-Url: https://git.ramnitz.eu/?a=commitdiff_plain;h=29c9bca21b873915e18afc3bf350f25c681cb937;p=dotfiles.git bin: clean up --- diff --git a/bin/.local/bin/kak-desktop b/bin/.local/bin/kak-desktop deleted file mode 100755 index e69de29b..00000000 diff --git a/bin/.local/bin/kak-shell b/bin/.local/bin/kak-shell deleted file mode 100755 index e69de29b..00000000 diff --git a/bin/.local/bin/launch-waybar b/bin/.local/bin/launch-waybar new file mode 100755 index 00000000..9eee56cf --- /dev/null +++ b/bin/.local/bin/launch-waybar @@ -0,0 +1,12 @@ +#!/bin/bash + +CONFIG_FILES="$HOME/.config/waybar/config $HOME/.config/waybar/style.css" + +trap "killall waybar" EXIT + +while true; do + waybar & + inotifywait -e create,modify $CONFIG_FILES + killall waybar +done +