dots

Dotfiles for Linux
Log | Files | Refs | README

commit 1fc87ebbd49ca6bb676d8f3dc5025a3185f43a7f
parent b39e9f583550aec252b5173c8ada502c6ab3e710
Author: Chris Kiriakou <c@ckiri.com>
Date:   Wed, 15 Jul 2026 08:03:10 +0200

change font for wmenu

Diffstat:
Mscripts/dot-local/bin/emojipicker.sh | 2+-
Mscripts/dot-local/bin/openpdf.sh | 2+-
Mscripts/dot-local/bin/passmenu.sh | 2+-
Mscripts/dot-local/bin/wayshot.sh | 2+-
Mscripts/dot-local/bin/websearch.sh | 2+-
5 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/scripts/dot-local/bin/emojipicker.sh b/scripts/dot-local/bin/emojipicker.sh @@ -3,6 +3,6 @@ # Pick emojis interactively. cat $HOME/.cache/emojilist \ - | wmenu -l 20 \ + | wmenu -l 20 -f "Sans-serif 10" \ | cut -d ' ' -f 2 \ | wl-copy -n diff --git a/scripts/dot-local/bin/openpdf.sh b/scripts/dot-local/bin/openpdf.sh @@ -2,6 +2,6 @@ # # Open PDFs using zathura -file=$(find ~/docs -name "*.pdf" | wmenu -l 20) +file=$(find ~/docs -name "*.pdf" | wmenu -l 20 -f "Sans-serif 10") test -z "$file" && exit 1 zathura "$file" diff --git a/scripts/dot-local/bin/passmenu.sh b/scripts/dot-local/bin/passmenu.sh @@ -12,7 +12,7 @@ else fi # Select all passwords in password store -password_files=$(find ~/.password-store -name '*.gpg' | cut -d "/" -f 5- | cut -d "." -f 1) +password_files=$(find ~/.password-store -name '*.gpg' | cut -d "/" -f 5- | sed s/.gpg// ) # Pipe all passwords into the menu password=$(printf '%s\n' "${password_files}" | $menu -f "Sans-serif 10" "$@") diff --git a/scripts/dot-local/bin/wayshot.sh b/scripts/dot-local/bin/wayshot.sh @@ -13,7 +13,7 @@ shoot() { timestamp=$(date +"%Y-%m-%d_%H-%M-%S") # Name screenshot - input=$(printf "" | wmenu -p "Filename: " -S 222222) + input=$(printf "" | wmenu -f "Sans-serif 10" -p "Filename: " -S 222222) test -n "$input" && filename="${input}.png" # Take timesramp if input/name is empty test ! -n "$input" && filename="${OUTPUT_PREFIX}${timestamp}.png" diff --git a/scripts/dot-local/bin/websearch.sh b/scripts/dot-local/bin/websearch.sh @@ -1,7 +1,7 @@ #!/bin/sh search_engine="https://duckduckgo.com/?t=ffab&q=" -query=$(printf "\n" | wmenu -S "#222222" -p "Search the Web:") +query=$(printf "\n" | wmenu -f "Sans-serif 10" -S "#222222" -p "Search the Web:") test ! -n "${query}" && exit 1 $BROWSER "${search_engine}${query}"