diff options
author | terminaldweller <thabogre@gmail.com> | 2022-07-15 13:47:56 +0000 |
---|---|---|
committer | terminaldweller <thabogre@gmail.com> | 2022-07-15 13:47:56 +0000 |
commit | 5a2d75df546df3321b3a20ebe84dae2f91019e84 (patch) | |
tree | ca27e5395beee772dc4931110018e135700c7a05 /bin/run_with_dmenu.sh | |
parent | updates (diff) | |
download | scripts-5a2d75df546df3321b3a20ebe84dae2f91019e84.tar.gz scripts-5a2d75df546df3321b3a20ebe84dae2f91019e84.zip |
secrets
Diffstat (limited to 'bin/run_with_dmenu.sh')
-rwxr-xr-x | bin/run_with_dmenu.sh | 7 |
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 |