chore: revert deleted code

This commit is contained in:
Sander 2025-08-29 18:48:47 +02:00 committed by GitHub
parent 197d12b3fd
commit f8d9545764
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 9 additions and 0 deletions

View File

@ -36,6 +36,15 @@ create_menu_items() {
'select title, url from CompletionHistory ORDER BY last_atime DESC')"
}
# Main
# https://github.com/halfwit/dotfiles/blob/master/.config/dmenu/font
[[ -s $confdir/dmenu/font ]] && read -r font < "$confdir"/dmenu/font
[[ -n $font ]] && opts+=(-fn "$font")
# shellcheck source=/dev/null
[[ -s $optsfile ]] && source "$optsfile"
while true; do
selection=$(create_menu_items | create_menu)
exit_code=$?