summaryrefslogtreecommitdiff
path: root/.config/scripts
diff options
context:
space:
mode:
Diffstat (limited to '.config/scripts')
-rw-r--r--.config/scripts/master.sh4
1 files changed, 3 insertions, 1 deletions
diff --git a/.config/scripts/master.sh b/.config/scripts/master.sh
index 433ca06..576e5aa 100644
--- a/.config/scripts/master.sh
+++ b/.config/scripts/master.sh
@@ -2,12 +2,14 @@
SCRIPT_DIR="$HOME/.config/scripts"
-options="wallpaper\nsettings\nfastfetch"
+options="wallpaper\nsettings\nconfig\nbtop\nfastfetch"
choice=$(echo -e "$options" | fuzzel -d -p "> ")
case "$choice" in
*wallpaper*) "$SCRIPT_DIR/wallpaper.sh" ;;
*settings*) "$SCRIPT_DIR/settings.sh" ;;
+ *config*) "$SCRIPT_DIR/config.sh" ;;
+ *btop*) kitty btop ;;
*fastfetch*) kitty sh -c "fastfetch; read -p 'press enter to close...'" ;;
esac