aboutsummaryrefslogtreecommitdiffstats
path: root/bin/run_with_dmenu.sh
diff options
context:
space:
mode:
authorterminaldweller <thabogre@gmail.com>2022-07-15 13:47:56 +0000
committerterminaldweller <thabogre@gmail.com>2022-07-15 13:47:56 +0000
commit5a2d75df546df3321b3a20ebe84dae2f91019e84 (patch)
treeca27e5395beee772dc4931110018e135700c7a05 /bin/run_with_dmenu.sh
parentupdates (diff)
downloadscripts-5a2d75df546df3321b3a20ebe84dae2f91019e84.tar.gz
scripts-5a2d75df546df3321b3a20ebe84dae2f91019e84.zip
secrets
Diffstat (limited to '')
-rwxr-xr-xbin/run_with_dmenu.sh7
1 files changed, 3 insertions, 4 deletions
diff --git a/bin/run_with_dmenu.sh b/bin/run_with_dmenu.sh
index bce0c00..8fda128 100755
--- a/bin/run_with_dmenu.sh
+++ b/bin/run_with_dmenu.sh
@@ -1,10 +1,9 @@
#!/usr/bin/env zsh
-
. ~/scripts/zshrc_stripped.sh
-COMMAND=$(echo "" | dmenu -l 20 -p "Quick Term:")
+COMMAND=$(echo "" | dmenu -fn "DejaVuSansMono Nerd Font Mono-11.3;antialias=true;autohint=true" -l 20 -p "Quick Term:")
RESULT=$(eval "$COMMAND")
if [ "$COMMAND" = "getmangas" ]; then
- echo "$RESULT" | sort | dmenu -D ">" -l 20 -p "Quick Term Out:" | xsel -ib
+ echo "$RESULT" | sort | dmenu -fn "DejaVuSansMono Nerd Font Mono-11.3;antialias=true;autohint=true" -D ">" -l 20 -p "Quick Term Out:" | xsel -ib
else
- echo "$RESULT" | dmenu -l 20 -p "Quick Term Out:" | xsel -ib
+ echo "$RESULT" | dmenu -fn "DejaVuSansMono Nerd Font Mono-11.3;antialias=true;autohint=true" -l 20 -p "Quick Term Out:" | xsel -ib
fi