1
0
Fork 0

reorganize script

This commit is contained in:
Massaki Archambault 2019-04-04 20:00:09 -04:00
parent 96108823da
commit 74a0c75d40
20 changed files with 6 additions and 8 deletions

2
files/.local/bin/.gitignore vendored Normal file
View File

@ -0,0 +1,2 @@
*
!.gitignore

2
files/.local/profile.d/.gitignore vendored Normal file
View File

@ -0,0 +1,2 @@
*
!.gitignore

View File

@ -1,6 +0,0 @@
# Set SSH to use gpg-agent
unset SSH_AGENT_PID
if [ "${gnupg_SSH_AUTH_SOCK_by:-0}" -ne $$ ]; then
export SSH_AUTH_SOCK="$(gpgconf --list-dirs agent-ssh-socket)"
fi

View File

@ -1,5 +1,5 @@
# PATH
export PATH="$HOME/bin:$HOME/.local/bin:$PATH"
export PATH="$HOME/.local/bin:$HOME/bin:$PATH"
# applications
export TERMINAL=termite

View File

@ -1,6 +1,6 @@
# Autostart sway if we are on tty1
if [ -z "$WAYLAND_DISPLAY" ] && [ "$(tty)" = "/dev/tty1" ]; then
exec ~/.local/bin/sway
exec ~/bin/sway
fi