commit 32c06960440ffe703488da6993ce4b84a003ce6e
parent e2d87d931e7e153ad3f95cbf43b6b37634d73f49
Author: Chris Bracken <chris@bracken.jp>
Date: Sat, 10 Dec 2022 11:25:35 -0800
Set dmenu font to DejaVu Sans Mono 12
Diffstat:
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/.config/i3/config b/.config/i3/config
@@ -51,7 +51,7 @@ set $term alacritty
# Your preferred application launcher.
# Note: it's recommended that you pass the final command to i3.
-set $menu dmenu_path | dmenu | xargs i3-msg exec --
+set $menu dmenu_path | dmenu -fn "DejaVu Sans Mono-12" | xargs i3-msg exec --
# Set lock screen handler.
set $lock_screen i3lock -c 000000
diff --git a/.config/i3/exit_check.sh b/.config/i3/exit_check.sh
@@ -7,7 +7,7 @@
unset XMODIFIERS
while [ "$choice" != "no" ] && [ "$choice" != "yes" ]; do
- choice=$(echo -e 'no\nyes' | dmenu -p "Really exit?")
+ choice=`echo -e 'no\nyes' | dmenu -fn "DejaVu Sans Mono-12" -p "Really exit?"`
done
if [ "$choice" = "yes" ]; then
i3-msg exit