Skip to content

Instantly share code, notes, and snippets.

@smmr0
Last active November 13, 2024 04:47
Show Gist options
  • Save smmr0/9c7de91b9e9cd19773cb10fee8a1fef7 to your computer and use it in GitHub Desktop.
Save smmr0/9c7de91b9e9cd19773cb10fee8a1fef7 to your computer and use it in GitHub Desktop.
Toggle KeePassXC window
#!/usr/bin/env sh
window_id="$(xdotool search --onlyvisible --class '^keepassxc$' | tail -1)"
if [ -n "$window_id" ]; then
xdotool windowminimize "$window_id"
else
keepassxc
fi
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment