mirror of
https://github.com/davatorium/rofi.git
synced 2024-10-27 05:23:18 -04:00
c62137f8ab
* rofi moved to libera.chat * unify some theme headers and whitespace * consistently use the same hashbang for bash * improve obsolete way of testing equality see https://github.com/koalaman/shellcheck/wiki/SC2268 for explanation * use consistent function definitions in bash scripts * remove duplicated author and fix whitespace * quote all variables in scripts fixes many warnings identified through shellcheck * fix whitespace in scripts * fix whitespace in non-source files * fix spelling in non-source files * fix whitespace and indentation in source files * fix spelling in source files
17 lines
411 B
Bash
Executable file
17 lines
411 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
shout()
|
|
{
|
|
echo -en "Normal Row\nAlternateRow\nNormal Row active\nAlternateRow Active\nNormal Row urgent\nAlternateRow urgent"
|
|
echo -en "\nSelected Row"
|
|
echo -en "\n1\n2\n3\n4\n5"
|
|
}
|
|
|
|
sleep 5
|
|
( shout | rofi -no-hide-scrollbar -columns 1 -width 1200 -location 0 -u 2,3 -a 4,5 -dmenu -p "Prompt" -padding 20 -line-margin 10 -selected-row 6 ) &
|
|
P=$!
|
|
sleep 5
|
|
scrot
|
|
sleep 1
|
|
killall rofi
|
|
wait "$P"
|