summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSaumit Dinesan <justsaumit@protonmail.com>2022-03-03 19:05:03 +0530
committerSaumit Dinesan <justsaumit@protonmail.com>2022-03-03 19:05:03 +0530
commit8ef46e789453aac437862417df158434122b34be (patch)
tree904e44dcff9c4c282acf4d510e3a2076d6efbe2c
parentb17fc15d470a338804958fada5d6f7c20805939d (diff)
dmenu_exclude
-rw-r--r--Makefile6
-rw-r--r--README.md3
-rw-r--r--dmenu_exclude9
-rwxr-xr-xdmenu_run2
4 files changed, 16 insertions, 4 deletions
diff --git a/Makefile b/Makefile
index a03a95c..87d1a77 100644
--- a/Makefile
+++ b/Makefile
@@ -34,7 +34,7 @@ clean:
dist: clean
mkdir -p dmenu-$(VERSION)
cp LICENSE Makefile README arg.h config.def.h config.mk dmenu.1\
- drw.h util.h dmenu_path dmenu_run stest.1 $(SRC)\
+ drw.h util.h dmenu_path dmenu_run dmenu_exclude stest.1 $(SRC)\
dmenu-$(VERSION)
tar -cf dmenu-$(VERSION).tar dmenu-$(VERSION)
gzip dmenu-$(VERSION).tar
@@ -42,10 +42,11 @@ dist: clean
install: all
mkdir -p $(DESTDIR)$(PREFIX)/bin
- cp -f dmenu dmenu_path dmenu_run stest $(DESTDIR)$(PREFIX)/bin
+ cp -f dmenu dmenu_path dmenu_run dmenu_exclude stest $(DESTDIR)$(PREFIX)/bin
chmod 755 $(DESTDIR)$(PREFIX)/bin/dmenu
chmod 755 $(DESTDIR)$(PREFIX)/bin/dmenu_path
chmod 755 $(DESTDIR)$(PREFIX)/bin/dmenu_run
+ chmod 644 $(DESTDIR)$(PREFIX)/bin/dmenu_exclude
chmod 755 $(DESTDIR)$(PREFIX)/bin/stest
mkdir -p $(DESTDIR)$(MANPREFIX)/man1
sed "s/VERSION/$(VERSION)/g" < dmenu.1 > $(DESTDIR)$(MANPREFIX)/man1/dmenu.1
@@ -57,6 +58,7 @@ uninstall:
rm -f $(DESTDIR)$(PREFIX)/bin/dmenu\
$(DESTDIR)$(PREFIX)/bin/dmenu_path\
$(DESTDIR)$(PREFIX)/bin/dmenu_run\
+ $(DESTDIR)$(PREFIX)/bin/dmenu_exclude\
$(DESTDIR)$(PREFIX)/bin/stest\
$(DESTDIR)$(MANPREFIX)/man1/dmenu.1\
$(DESTDIR)$(MANPREFIX)/man1/stest.1
diff --git a/README.md b/README.md
index 35b4bce..98458b6 100644
--- a/README.md
+++ b/README.md
@@ -12,7 +12,8 @@ source: `git clone https://git.suckless.org/dmenu`
2. <b>Fonts</b> - JetBrains mono and Joypixels
3. <b>Xresources patch</b> and changes in dmenu.c for consistent colorschemes
-4. <b>Additional patches:</b> [<i>source</i>](https://tools.suckless.org/dmenu/patches/)
+4. <b> dmenu_exclude</b> removes dmenu options for dmenu_run. Useful to include terminal only commands and/or eliminating highpriority options that may interfere with the intended one
+5. <b>Additional patches:</b> [<i>source</i>](https://tools.suckless.org/dmenu/patches/)
- <b>Password patch</b> (-P)
- uses asterisks '*' instead of dots '.'
- <b>Highpriority patch</b> (-hp items)
diff --git a/dmenu_exclude b/dmenu_exclude
index a66c926..bcf0a83 100644
--- a/dmenu_exclude
+++ b/dmenu_exclude
@@ -1 +1,10 @@
+du
+mount
+umount
+tr
+trash
pic
+picom
+btsnoop
+xev
+
diff --git a/dmenu_run b/dmenu_run
index 4fde442..4b1bfd4 100755
--- a/dmenu_run
+++ b/dmenu_run
@@ -1,2 +1,2 @@
#!/bin/sh
-dmenu_path | awk '$0!="pic"' |dmenu -H "${XDG_CACHE_HOME:-$HOME/.cache/}/dmenu_run.hist" "$@" | ${SHELL:-"/bin/sh"} &
+dmenu_path | grep -vw -f /usr/local/bin/dmenu_exclude |dmenu -H "${XDG_CACHE_HOME:-$HOME/.cache/}/dmenu_run.hist" "$@" | ${SHELL:-"/bin/sh"} &