summaryrefslogtreecommitdiff
path: root/.config/scripts/master.sh
diff options
context:
space:
mode:
Diffstat (limited to '.config/scripts/master.sh')
-rw-r--r--.config/scripts/master.sh8
1 files changed, 4 insertions, 4 deletions
diff --git a/.config/scripts/master.sh b/.config/scripts/master.sh
index c090fed..062e852 100644
--- a/.config/scripts/master.sh
+++ b/.config/scripts/master.sh
@@ -2,14 +2,14 @@
SCRIPT_DIR="$HOME/.config/scripts"
-options="wallpaper\nsettings\nconfig\nbtop\nfastfetch"
+options="btop\nconfig\nsettings\nwallpaper\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 ;;
+ *config*) "$SCRIPT_DIR/config.sh" ;;
+ *settings*) "$SCRIPT_DIR/settings.sh" ;;
+ *wallpaper*) "$SCRIPT_DIR/wallpaper.sh" ;;
*fastfetch*) kitty sh -c "fastfetch; read -p ''" ;;
esac