1
0

Compare commits

..

No commits in common. "5cfbe03d7195eb0ebe9a3cfe6f5c65b3c9eae29d" and "61fb51b3eb7f0eea838b2ba428f74c07f9cd4a05" have entirely different histories.

3 changed files with 6 additions and 31 deletions

View File

@ -4,11 +4,9 @@
!/.cache/zsh/compzwc/.keep !/.cache/zsh/compzwc/.keep
!/.cache/zsh/ssh/.keep !/.cache/zsh/ssh/.keep
!/.config/dotfiles/bin/.keep !/.config/dotfiles/bin/.keep
!/.config/dotfiles/debian.sources
!/.config/dotfiles/gen-gitignore.sh !/.config/dotfiles/gen-gitignore.sh
!/.config/dotfiles/gitattributes !/.config/dotfiles/gitattributes
!/.config/dotfiles/gitignore !/.config/dotfiles/gitignore
!/.config/dotfiles/gitignore.vcs
!/.config/dotfiles/install.sh !/.config/dotfiles/install.sh
!/.config/dotfiles/scripts/.keep !/.config/dotfiles/scripts/.keep
!/.config/dotfiles/woodpecker.yml !/.config/dotfiles/woodpecker.yml

View File

@ -1,18 +0,0 @@
!/.cache/zsh/compcache/.keep
!/.cache/zsh/completion/.keep
!/.cache/zsh/compzwc/.keep
!/.cache/zsh/ssh/.keep
!/.config/zsh/local/.keep
!/.config/zsh/local/completion/.keep
!/.config/zsh/local/env.zsh.example
!/.config/zsh/var/.keep
/.cache/zsh/compcache/*
/.cache/zsh/compdump
/.cache/zsh/completion/*
/.cache/zsh/compzwc/*
/.cache/zsh/ssh/*
/.config/zsh/**/*.zwc
/.config/zsh/local.zsh
/.config/zsh/local/*
/.config/zsh/var/*

View File

@ -6,17 +6,12 @@ z-gpg-agent() {
(( ${+commands[gpg-agent]} )) || return 127 (( ${+commands[gpg-agent]} )) || return 127
if (( ${+commands[systemctl]} )) ; then local u
local u s
for u in gpg-agent.{service,socket} ; do for u in gpg-agent.{service,socket} ; do
s=$(z-systemctl --user is-enabled $u) z-systemctl-exists --user $u || continue
case "$s" in
disabled ) ;;
* ) continue ;;
esac
z-systemctl --user --now enable $u z-systemctl --user --now enable $u
done done
fi
(( ${+commands[gpgconf]} )) || return 127 (( ${+commands[gpgconf]} )) || return 127