diff options
Diffstat (limited to '.config')
-rw-r--r-- | .config/fish/config.fish | 6 | ||||
-rw-r--r-- | .config/git/config | 4 | ||||
-rw-r--r-- | .config/i3/config | 3 |
3 files changed, 11 insertions, 2 deletions
diff --git a/.config/fish/config.fish b/.config/fish/config.fish index 2f8c7ef..61ea087 100644 --- a/.config/fish/config.fish +++ b/.config/fish/config.fish @@ -105,11 +105,17 @@ set -x PATH $HOME/.ghcup/bin $PATH set -x PATH /snap/bin $PATH set -x PATH $HOME/.gem/ruby/2.7.0/bin $PATH set -x PATH $DENO_INSTALL/bin $PATH +set -x PATH $HOME/.pyenv/bin $PATH +set -x PATH $HOME/.poetry/bin $PATH # hub, the github cli tool set -x HUB_CONFIG $HOME/.config/hub set -x HUB_PROTOCOL ssh +# pyenv +status is-login; and pyenv init --path | source +status is-interactive; and pyenv init - | source + # rust env #set -x RUST_SRC_PATH ~/.rustup/toolchains/nightly-x86_64-unknown-linux-gnu/lib/rustlib/src/rust/library diff --git a/.config/git/config b/.config/git/config index 0f93408..712cd8e 100644 --- a/.config/git/config +++ b/.config/git/config @@ -1,12 +1,12 @@ [sendemail] smtpEncryption = tls smtpServer = smtp.fastmail.com - smtpUser = ben@gbmor.dev + smtpUser = ben@gbmor.org smtpServerPort = 587 annotate = yes [user] name = "Benjamin Morrison" - email = ben@gbmor.dev + email = ben@gbmor.org signingkey = EAB272409CD12FF0 [init] templatedir = ~/.config/git/template.git diff --git a/.config/i3/config b/.config/i3/config index ed3c049..afe1046 100644 --- a/.config/i3/config +++ b/.config/i3/config @@ -11,7 +11,10 @@ ################################# # AUTOSTART SECTION # ############################### +exec_always "sh $HOME/.fehbg" exec_always --no-startup-id $HOME/.config/polybar/launch.sh +exec "xcompmgr &" +exec "xscreensaver &" exec "pactl upload-sample /usr/share/sounds/freedesktop/stereo/bell.oga x11-bell" exec "pactl load-module module-x11-bell sample=x11-bell display=$DISPLAY" exec "xset b 100" |