From 2f9d5b584dbbddb4a9356de721aaae419b3bc475 Mon Sep 17 00:00:00 2001 From: silly Date: Sat, 7 Mar 2026 15:33:24 +0100 Subject: Update master.sh --- .config/scripts/master.sh | 11 +++++++++++ 1 file changed, 11 insertions(+) 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 -- cgit v1.3.1