aboutsummaryrefslogtreecommitdiff
path: root/dmenu-settings
diff options
context:
space:
mode:
authorPhilip Wittamore <philip@wittamore.com>2025-06-16 18:33:27 +0200
committerPhilip Wittamore <philip@wittamore.com>2025-06-16 18:33:27 +0200
commitce2d80f5c5104c31950a30eac0a6a86ba71c3163 (patch)
tree48417c3b848ae7f3808fbb1d43bb521a8115960f /dmenu-settings
parent00e2a2f919bb26ca1493ca2842dd7af1791ae587 (diff)
downloadscripts-ce2d80f5c5104c31950a30eac0a6a86ba71c3163.tar.gz
scripts-ce2d80f5c5104c31950a30eac0a6a86ba71c3163.tar.bz2
scripts-ce2d80f5c5104c31950a30eac0a6a86ba71c3163.zip
update
Diffstat (limited to 'dmenu-settings')
-rwxr-xr-xdmenu-settings9
1 files changed, 9 insertions, 0 deletions
diff --git a/dmenu-settings b/dmenu-settings
new file mode 100755
index 0000000..027dba3
--- /dev/null
+++ b/dmenu-settings
@@ -0,0 +1,9 @@
+#!/bin/sh
+
+choice=$(echo -e " Theme\n󰞅 Emojis\n✘ Exit" | dmenu -bw 4 -c -z 500 -l 6 -p "Settings: ")
+case "$choice" in
+ " Theme") choose-theme;;
+ "󰞅 Emojis") dmenu-emoji;;
+ " Exit") exit 0 ;;
+ *) exit 1;;
+esac