summaryrefslogtreecommitdiff
path: root/.config/scripts
diff options
context:
space:
mode:
authorsilly <u65487754@gmail.com>2026-03-09 17:07:07 +0100
committerGitHub <noreply@github.com>2026-03-09 17:07:07 +0100
commitb0cfe786a9a1e1cd42b60bce11422a4350be70f4 (patch)
tree53fd4a6fadd24ea9d09e00da7da4ccc2d7774cf1 /.config/scripts
parent8cf88744cb303a7c3aee62c9057a63cff3a797de (diff)
Update master.sh
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