mirror of
https://github.com/nmasur/dotfiles
synced 2024-11-10 07:32:55 +00:00
11 lines
255 B
Bash
11 lines
255 B
Bash
|
#!/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"
|