From cb47f4bbd36ffe38e709db6276dcaf95222bb61a Mon Sep 17 00:00:00 2001 From: Noah Masur <7386960+nmasur@users.noreply.github.com> Date: Sun, 15 May 2022 14:31:22 -0400 Subject: [PATCH] mess around with rofi brightness script --- modules/graphical/rofi/brightness.sh | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100755 modules/graphical/rofi/brightness.sh diff --git a/modules/graphical/rofi/brightness.sh b/modules/graphical/rofi/brightness.sh new file mode 100755 index 0000000..977f433 --- /dev/null +++ b/modules/graphical/rofi/brightness.sh @@ -0,0 +1,10 @@ +#!/usr/bin/env bash + +# THEME="$HOME/.config/rofi/config.rasi" + +ICON_UP="" +ICON_DOWN="" +ICON_OPT="" +options="$ICON_UP\n$ICON_OPT\n$ICON_DOWN" +chosen="$(echo -e "$options" | rofi -theme-str 'listview { layout:horizontal; }' -dmenu)" +echo "$chosen"