Created
September 11, 2015 13:30
-
-
Save ptomasroos/7af3033ed583a784fe34 to your computer and use it in GitHub Desktop.
Remove program entries in i3 dmenu
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
To remove a program in the i3 dmenu just pipe the result from dmenu_path in the /usr/bin/dmenu_run | |
dmenu_path | awk '!/zsh/' | ....... | |
would remove zsh. |
Sorry @voylin not sure what you're referring to.
These days I'm no longer running i3 as I'm purely on Mac OS
How can I extend the values?
`dmenu_path | awk '!/zsh/',/base/~~~'
trying to figure are adding more values to your example.
How can I extend the values?
`dmenu_path | awk '!/zsh/',/base/~~~'
trying to figure are adding more values to your example.
Just keep piping
dmenu_path | awk '!/zsh/' | awk '!/code/' | awk '!/gcloud/'
I got it..
it is done with
awk '!/zsh|code|gloud/'
Thank you for prompt reply...
This was driving me crazy for like a week or so...
Clearly new to the wm world :)
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
This only works in the standard i3 menu, how about the i3-dmenu?