diff --git a/modules/home/scripts/scripts/keybinds.sh b/modules/home/scripts/scripts/keybinds.sh deleted file mode 100755 index 4381f42..0000000 --- a/modules/home/scripts/scripts/keybinds.sh +++ /dev/null @@ -1,6 +0,0 @@ -#!/usr/bin/env bash - -config_file=~/.config/hypr/hyprland.conf -keybinds=$(grep -oP '(?<=bind=).*' $config_file) -keybinds=$(echo "$keybinds" | sed 's/,\([^,]*\)$/ = \1/' | sed 's/, exec//g' | sed 's/^,//g') -wofi -W 750 -dmenu -p "Keybinds" <<< "$keybinds" diff --git a/modules/home/scripts/scripts/shutdown-script.sh b/modules/home/scripts/scripts/shutdown-script.sh deleted file mode 100755 index 8813d2e..0000000 --- a/modules/home/scripts/scripts/shutdown-script.sh +++ /dev/null @@ -1,15 +0,0 @@ -#!/usr/bin/env zsh - -respond="$(echo "------------- Shutdown --------------\n------------- Restart ---------------\n-------------- Cancel ---------------" | wofi --show dmenu -k /dev/null)" - -if [ $respond = '------------- Shutdown --------------' ] -then - echo "shutdown" - shutdown now -elif [ $respond = '------------- Restart ---------------' ] -then - echo "restart" - reboot -else - notify-send "cancel shutdown" -fi