Update: Added cava and fonts, updated configs, delted useless rofi configs.

This commit is contained in:
Keyitdev
2022-06-22 19:25:59 +02:00
parent b7c3fa05d1
commit 9ffd98738b
40 changed files with 253 additions and 118 deletions
+3 -3
View File
@@ -22,15 +22,15 @@ get_options() {
main() {
# Get choice from rofi
choice=$( (get_options) | rofi -dmenu -i -fuzzy -p "" -theme "$THEME")
CHOICE=$( (get_options) | rofi -dmenu -i -fuzzy -p "" -theme "$THEME")
# If user has not picked anything, exit
if [[ -z "${choice// /}" ]]; then
if [[ -z "${CHOICE// /}" ]]; then
exit 1
fi
# run the selected command
case $choice in
case $CHOICE in
' Capture Region (without saving)')
screenshot -crtc
;;