diff options
author | Aryadev Chavali <aryadev@aryadevchavali.com> | 2020-09-01 21:42:12 +0100 |
---|---|---|
committer | Aryadev Chavali <aryadev@aryadevchavali.com> | 2020-09-01 21:42:12 +0100 |
commit | 73f4500f0bbdb88ef027edbdb4ef0bcb74991b5a (patch) | |
tree | 1b86039a219aa3bc90e4cb8e4d114d8c4206008e | |
parent | f4bae311976921d00d4ec8ab124ecc6b264a9f74 (diff) | |
download | dotfiles-73f4500f0bbdb88ef027edbdb4ef0bcb74991b5a.tar.gz dotfiles-73f4500f0bbdb88ef027edbdb4ef0bcb74991b5a.tar.bz2 dotfiles-73f4500f0bbdb88ef027edbdb4ef0bcb74991b5a.zip |
~ssh-agent and ssh-add
-rw-r--r-- | Shell/.zprofile | 3 | ||||
-rw-r--r-- | Shell/.zshrc | 3 | ||||
-rw-r--r-- | XServer/.xinitrc | 2 |
3 files changed, 4 insertions, 4 deletions
diff --git a/Shell/.zprofile b/Shell/.zprofile index 583a962..bb651c6 100644 --- a/Shell/.zprofile +++ b/Shell/.zprofile @@ -11,6 +11,7 @@ export DOTNET_SKIP_FIRST_TIME_EXPERIENCE=true export DOTNET_CLI_TELEMTRY_OPTOUT=1 export force_color_prompt=yes export guile=guile2.2 +export TERM=xterm-256color # XDG variables export XDG_CONFIG_HOME="$HOME/.config" @@ -20,3 +21,5 @@ export XDG_RUNTIME_DIR=/run/user/`id -u` # Run some programs /usr/bin/pfetch +eval `ssh-agent`; +ssh-add -t 1h ~/.ssh/id_rsa diff --git a/Shell/.zshrc b/Shell/.zshrc index a2e21f8..8a25b3e 100644 --- a/Shell/.zshrc +++ b/Shell/.zshrc @@ -1,8 +1,6 @@ # zshrc -*- mode: sh; lexical-binding: t; -*- ## Aliases -setopt autocd -export TERM=xterm-256color alias vim="nvim" alias clip="xclip -sel clip" alias paste="xclip -o" @@ -16,6 +14,7 @@ alias sedit="eserver -a emacs -c" alias dre="doom sync" ## ZSH +setopt autocd export ZSH_THEME="af-magic" PS1="%B%F{blue}[%(4~|...|)%3~] %F{white}λ %b%f%k" diff --git a/XServer/.xinitrc b/XServer/.xinitrc index e8dcca1..e41c949 100644 --- a/XServer/.xinitrc +++ b/XServer/.xinitrc @@ -7,8 +7,6 @@ killall sxhkd; sh .xprofile; xset s 1800; -eval `ssh-agent`; - $(xss-lock --transfer-sleep-lock -- lock) & feh --randomize --bg-scale $HOME/Pictures/Backgrounds & |