diff options
author | Philip Wittamore <philip@wittamore.com> | 2025-06-16 18:33:27 +0200 |
---|---|---|
committer | Philip Wittamore <philip@wittamore.com> | 2025-06-16 18:33:27 +0200 |
commit | ce2d80f5c5104c31950a30eac0a6a86ba71c3163 (patch) | |
tree | 48417c3b848ae7f3808fbb1d43bb521a8115960f /dmenu-settings | |
parent | 00e2a2f919bb26ca1493ca2842dd7af1791ae587 (diff) | |
download | scripts-ce2d80f5c5104c31950a30eac0a6a86ba71c3163.tar.gz scripts-ce2d80f5c5104c31950a30eac0a6a86ba71c3163.tar.bz2 scripts-ce2d80f5c5104c31950a30eac0a6a86ba71c3163.zip |
update
Diffstat (limited to 'dmenu-settings')
-rwxr-xr-x | dmenu-settings | 9 |
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 |