1
0
Fork 0

Merge remote-tracking branch 'origin/main'

This commit is contained in:
Lance Vick 2025-02-25 18:13:54 -08:00
commit d5132ffb23
Signed by: lrvick
GPG Key ID: 8E47A1EC35A1551D
7 changed files with 53 additions and 7 deletions

47
X/.Xresources Normal file
View File

@ -0,0 +1,47 @@
*background: #002b36
*foreground: #657b83
!!*fading: 40
*fadeColor: #002b36
*cursorColor: #93a1a1
*pointerColorBackground: #586e75
*pointerColorForeground: #93a1a1
!! black dark/light
*color0: #073642
*color8: #002b36
!! red dark/light
*color1: #dc322f
*color9: #cb4b16
!! green dark/light
*color2: #859900
*color10: #586e75
!! yellow dark/light
*color3: #b58900
*color11: #657b83
!! blue dark/light
*color4: #268bd2
*color12: #839496
!! magenta dark/light
*color5: #d33682
*color13: #6c71c4
!! cyan dark/light
*color6: #2aa198
*color14: #93a1a1
!! white dark/light
*color7: #eee8d5
*color15: #fdf6e3
!! HiDPI
Xft.autohint: 0
Xft.lcdfilter: lcddefault
Xft.hintstyle: hintfull
Xft.hinting: 1
Xft.antialias: 1
Xft.rgba: rgb

View File

@ -14,7 +14,7 @@
decorate = true decorate = true
abbrevCommit = true abbrevCommit = true
[gpg] [gpg]
program = .local/bin/git-gpg program = qubes-gpg-client-wrapper
[init] [init]
defaultBranch = main defaultBranch = main
[remote "origin"] [remote "origin"]

View File

@ -0,0 +1 @@
vault

View File

@ -0,0 +1,2 @@
binds+=('/var/lib/docker')
binds+=('/var/lib/containerd')

View File

@ -0,0 +1 @@
@anyvm @anyvm ask default_target=vault

View File

@ -0,0 +1 @@
@anyvm @anyvm ask default_target=vault

View File

@ -7,18 +7,12 @@ export LC_CTYPE="en_US.UTF-8"
# Apply QubesOS specific configuration # Apply QubesOS specific configuration
if command -v qubesdb-read &> /dev/null; then if command -v qubesdb-read &> /dev/null; then
export QUBES_GPG_DOMAIN="vault";
export SSH_AUTH_SOCK="/home/${USER}/.SSH_AGENT_${QUBES_GPG_DOMAIN}"; export SSH_AUTH_SOCK="/home/${USER}/.SSH_AGENT_${QUBES_GPG_DOMAIN}";
git config --global gpg.program qubes-gpg-client-wrapper;
else
# Always use gpg2
[[ -f /usr/bin/gpg2 ]] && alias gpg="/usr/bin/gpg2"
fi fi
alias vi="nvim" alias vi="nvim"
alias vim="nvim" alias vim="nvim"
path=("$PYENV_ROOT/bin" $path)
path=("$HOME/.local/bin" $path) path=("$HOME/.local/bin" $path)
path=($^path(N)) # remove paths that don't exist path=($^path(N)) # remove paths that don't exist