Skip to content

Instantly share code, notes, and snippets.

@dedeibel
Created July 1, 2019 17:04
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dedeibel/9f0ee39682c6e85e6f78d6fc15975a6f to your computer and use it in GitHub Desktop.
Save dedeibel/9f0ee39682c6e85e6f78d6fc15975a6f to your computer and use it in GitHub Desktop.
Remove unwanted entries from i3wm dmenu. Ugly hack, but working, I go wash my keyboard now.
#!/bin/sh
# run this once in your .xsession or similar
(
while(true); do
grep -v keepass2 ~/.cache/dmenu_run | sponge ~/.cache/dmenu_run
sleep 60
done;
) &
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment