i3wm; swap mod+\ from mic mute to screenshot

This commit is contained in:
2023-11-11 07:27:41 -07:00
parent 592fe48004
commit fc60660b9b
4 changed files with 39 additions and 1 deletions

15
zsh/completion Normal file
View File

@ -0,0 +1,15 @@
#!/bin/zsh
#####################################################################
command -v op >/dev/null 2>&1 && {
eval "$(op completion zsh)"
compdef _op op
export OP_FORMAT=json
}
command -v flux >/dev/null 2>&1 && {
. <(flux completion zsh)
}
#####################################################################
true