diff options
| author | Alec Goncharow <alec@goncharow.dev> | 2022-01-09 15:28:58 -0500 |
|---|---|---|
| committer | Alec Goncharow <alec@goncharow.dev> | 2022-01-09 15:28:58 -0500 |
| commit | 72cf398a6292fa56d57e82caa4d21570e5573294 (patch) | |
| tree | e536efb8c5fedb0aceeae2951330b985e34e4ec8 /.config/rofi/launchers/text/launcher.sh | |
| parent | fa93303ea8313cf08c437953d53c18de2006b899 (diff) | |
:)
Diffstat (limited to '.config/rofi/launchers/text/launcher.sh')
| -rwxr-xr-x | .config/rofi/launchers/text/launcher.sh | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/.config/rofi/launchers/text/launcher.sh b/.config/rofi/launchers/text/launcher.sh new file mode 100755 index 0000000..b5c28a6 --- /dev/null +++ b/.config/rofi/launchers/text/launcher.sh @@ -0,0 +1,29 @@ +#!/usr/bin/env bash + +## Author : Aditya Shakya +## Mail : adi1090x@gmail.com +## Github : @adi1090x +## Twitter : @adi1090x + +# Available Styles +# >> Created and tested on : rofi 1.6.0-1 +# +# style_1 style_2 style_3 style_4 style_5 style_6 style_7 + +theme="style_2" + +dir="$HOME/.config/rofi/launchers/text" +styles=($(ls -p --hide="colors.rasi" $dir/styles)) +color="${styles[$(( $RANDOM % 10 ))]}" + +# comment this line to disable random colors +sed -i -e "s/@import .*/@import \"$color\"/g" $dir/styles/colors.rasi + +# comment these lines to disable random style +themes=($(ls -p --hide="launcher.sh" --hide="styles" $dir)) +theme="${themes[$(( $RANDOM % 7 ))]}" + +rofi -no-lazy-grab -show drun \ +-modi run,drun,window \ +-theme $dir/"$theme" + |
