Passing options to rofi #1304
Answered
by
vikasrawal
vikasrawal
asked this question in
Q&A
-
I use the following to pass some choices to dmenu. choice=$(echo -e "${options[@]}" | dmenu -i -p 'Open Calendar: ') How do I modify this to pass the options to rofi? Specifically, what is the equivalent of -p in rofi? |
Beta Was this translation helpful? Give feedback.
Answered by
vikasrawal
Apr 18, 2021
Replies: 1 comment
-
This does it: Wonderful. |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
DaveDavenport
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
This does it:
choice=$(echo -e "${options[@]}" | rofi -dmenu -i -p 'Open Calendar: ')
Wonderful.