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. |
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
Just keep piping
dmenu_path | awk '!/zsh/' | awk '!/code/' | awk '!/gcloud/'