Skip to content

Instantly share code, notes, and snippets.

@rezwan-hossain
Last active May 15, 2023 20:36
Show Gist options
  • Star 3 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save rezwan-hossain/f8a10b2bbb3321ae202ddf6262d83415 to your computer and use it in GitHub Desktop.
Save rezwan-hossain/f8a10b2bbb3321ae202ddf6262d83415 to your computer and use it in GitHub Desktop.
rofi keybinding/shortcut for starting rofi
After install rofi we can type terminal following command to run rofi
rofi show <mode> mode = run or window
we can also add keybord shortcuts to run rofi in lubuntu
go to .config/openbox there you will find lubuntu-rc.xml file this file contain all shortcuts our system
we need to add addition shortcuts
<keybind key="W-space">
<action name="Execute">
<command>rofi -show window </command>
</action>
</keybind>
* W = super / window key
C = control key
A = alt key
S = Shift
after that restart the openbox
openbox --restart
we can use combi in rofi
rofi -show combi -combi-modi "window,drun"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment