summaryrefslogtreecommitdiff
path: root/.config/scripts/master.sh
diff options
context:
space:
mode:
authorsilly <u65487754@gmail.com>2026-03-07 15:33:24 +0100
committerGitHub <noreply@github.com>2026-03-07 15:33:24 +0100
commit2f9d5b584dbbddb4a9356de721aaae419b3bc475 (patch)
tree2d33c71d088b6db5a52b1d0257c33417687e4827 /.config/scripts/master.sh
parent9f9df8815e58f36968ec338273e95c4f91aa52bf (diff)
Update master.sh
Diffstat (limited to '.config/scripts/master.sh')
-rw-r--r--.config/scripts/master.sh11
1 files changed, 11 insertions, 0 deletions
diff --git a/.config/scripts/master.sh b/.config/scripts/master.sh
index 8b13789..76f5ff5 100644
--- a/.config/scripts/master.sh
+++ b/.config/scripts/master.sh
@@ -1 +1,12 @@
+#!/bin/bash
+SCRIPT_DIR="$HOME/.config/scripts"
+options="󰸉 wallpaper\n󰳗 decorations\n󰒓 fastfetch"
+
+choice=$(echo -e "$options" | rofi -dmenu -i -p "master" -theme-str 'window {width: 400px;}')
+
+case "$choice" in
+ *wallpaper*) "$SCRIPT_DIR/wallpaper.sh" ;;
+ *decorations*) "$SCRIPT_DIR/settings.sh" ;;
+ *fastfetch*) kitty sh -c "fastfetch; read -p 'press enter to close...'" ;;
+esac