Add setting up fingerprint too

This commit is contained in:
David Heinemeier Hansson 2025-08-04 16:49:28 +02:00
parent 8e1beac707
commit 3acb5c2a83

View File

@ -12,7 +12,8 @@ show_cmd_menu() {
󰔎 Toggle Nightlight 󰔎 Toggle Nightlight
󱫖 Toggle Idle Lock 󱫖 Toggle Idle Lock
󰍜 Toggle Top Bar 󰍜 Toggle Top Bar
 Update Timezone"  Update Timezone
󰈷 Setup Fingerprint"
local selection=$(echo -e "$menu_options" | walker --dmenu --theme dmenu_250 -p "Trigger Command") local selection=$(echo -e "$menu_options" | walker --dmenu --theme dmenu_250 -p "Trigger Command")
case "$selection" in case "$selection" in
@ -28,6 +29,7 @@ show_cmd_menu() {
*Idle*) ~/.local/share/omarchy/bin/omarchy-toggle-idle ;; *Idle*) ~/.local/share/omarchy/bin/omarchy-toggle-idle ;;
*Bar*) pkill -SIGUSR1 waybar ;; *Bar*) pkill -SIGUSR1 waybar ;;
*Timezone*) ~/.local/share/omarchy/bin/omarchy-cmd-tzupdate ;; *Timezone*) ~/.local/share/omarchy/bin/omarchy-cmd-tzupdate ;;
*Fingerprint*) ~/.local/share/omarchy/bin/omarchy-setup-fingerprint ;;
esac esac
} }