From eae78d6aca1028a614583a538f73eb6164fbfc9e Mon Sep 17 00:00:00 2001 From: Philip Wittamore Date: Mon, 9 Jun 2025 18:07:30 +0200 Subject: update --- dmenu-system | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100755 dmenu-system (limited to 'dmenu-system') diff --git a/dmenu-system b/dmenu-system new file mode 100755 index 0000000..f1b71ac --- /dev/null +++ b/dmenu-system @@ -0,0 +1,10 @@ +#!/bin/sh + +choice=$(echo -e " Theme\n Bluetooth\n Network\n✘ Exit" | dmenu -bw 4 -c -l 6 -p "System: ") +case "$choice" in + " Theme") choose-theme;; + " Bluetooth") bluetui;; + " Network") st -e nmtui;; + " Exit") exit 0 ;; + *) exit 1;; +esac -- cgit v1.2.3