This commit is contained in:
David Tomaschik
2019-08-19 14:54:09 -07:00
13 changed files with 1579 additions and 1324 deletions

View File

@@ -130,10 +130,11 @@ bindsym $alt+Control+Left workspace prev
# i3 lock
exec --no-startup-id ~/bin/i3lock.sh &
exec --no-startup-id xset dpms 600
bindsym $mod+l exec \
bash -c "i3lock -c 000000 -d && (sleep 2 && xset dpms force off) &"
bash -c "i3lock -c 000000 && (sleep 2 && xset dpms force off) &"
bindsym $alt+Control+l exec \
bash -c "i3lock -c 000000 -d && (sleep 2 && xset dpms force off) &"
bash -c "i3lock -c 000000 && (sleep 2 && xset dpms force off) &"
# things to start quickly
bindsym $mod+g exec /usr/bin/google-chrome-beta --password-store=gnome
@@ -169,14 +170,14 @@ bindsym --release $alt+Sys_Req exec --no-startup-id \
/usr/bin/scrot -s $screendir/$scrotformat
# useful utilities
exec --no-startup-id \
(which xss-lock >/dev/null || /usr/bin/cinnamon-settings-daemon) &
#exec --no-startup-id \
# (which xss-lock >/dev/null || /usr/bin/cinnamon-settings-daemon) &
exec --no-startup-id gnome-keyring-daemon --start --components=pkcs11,secrets
# Make GTK fonts look great again
exec --no-startup-id gnome-settings-daemon
exec --no-startup-id (sleep 2; nm-applet) &
#exec --no-startup-id gnome-settings-daemon
#exec --no-startup-id (sleep 2; nm-applet) &
exec --no-startup-id xset r rate 200 20
exec --no-startup-id ~/bin/autostart.py
#exec --no-startup-id ~/bin/autostart.py
exec --no-startup-id dex --autostart --environment x-cinnamon
# customize windows

View File

@@ -1,2 +1 @@
keyserver hkps://hkps.pool.sks-keyservers.net
hkp-cacert ~/.gnupg/sks-keyservers.pem
keyserver hkps://keys.openpgp.org

View File

@@ -1,6 +1,6 @@
use-agent
# HKPS requires gnupg-curl for gpg1
keyserver hkps://hkps.pool.sks-keyservers.net
keyserver hkps://keys.openpgp.org
keyserver-options auto-key-retrieve no-honor-keyserver-url
auto-key-locate keyserver
personal-digest-preferences SHA256

File diff suppressed because it is too large Load Diff

View File

@@ -80,6 +80,9 @@ zstyle ':prezto:module:editor' key-bindings 'vi'
# Ignore submodules when they are 'dirty', 'untracked', 'all', or 'none'.
# zstyle ':prezto:module:git:status:ignore' submodules 'all'
# Don't set up aliases I never use
zstyle ':prezto:module:git:alias' skip 'yes'
#
# GNU Utility
#

View File

@@ -76,5 +76,11 @@ if command -v most >/dev/null 2>&1; then
export PAGER="most"
fi
# Enable grc if we have it
if ls --version 2>&1 >/dev/null ; then
alias ls='ls --color -C'
fi
[[ -s "/etc/grc.zsh" ]] && source /etc/grc.zsh
# Load any local settings
if [ -e $HOME/.zshrc.local ] ; then source $HOME/.zshrc.local ; fi