From 18e4a976fe074f2a2fc3969bf82d7c0a6ee5216c Mon Sep 17 00:00:00 2001 From: Siina Mashek Date: Sun, 1 May 2022 10:25:06 +0300 Subject: [PATCH] Updating neofetch and profile --- config/neofetch/config.conf | 7 ++++--- profile | 10 ++++++++-- zshrc | 3 +++ 3 files changed, 15 insertions(+), 5 deletions(-) diff --git a/config/neofetch/config.conf b/config/neofetch/config.conf index 86b752a..9bc9999 100644 --- a/config/neofetch/config.conf +++ b/config/neofetch/config.conf @@ -11,6 +11,7 @@ print_info() { info "Packages" packages info "Shell" shell info "Resolution" resolution + prin "Session" "$(echo $XDG_SESSION_TYPE)" info "DE" de info "WM" wm #info "WM Theme" wm_theme @@ -30,13 +31,13 @@ print_info() { # info "Font" font # info "Song" song # info "Playing" song - prin "Playing" "$(song)" + #prin "Playing" "$(song)" # [[ $player ]] && prin "Player" "$player" # info "Local IP" local_ip # info "Public IP" public_ip # info "Users" users # info "Locale" locale # This only works on glibc systems. - prin "Weather" "$(weather)" + prin "Weather" "$(weather)" info cols } @@ -280,7 +281,7 @@ gpu_type="all" # Example: # on: '1920x1080 @ 60Hz' # off: '1920x1080' -refresh_rate="off" +refresh_rate="on" # Gtk Theme / Icons / Font diff --git a/profile b/profile index 57a63bd..817f9d4 100644 --- a/profile +++ b/profile @@ -1,12 +1,18 @@ # The city's finest exports! export GIT_EDITOR="vim" -export PATH="$PATH:$HOME/.local/bin" -#export TERM=xterm-256color # Fixes ssh since I use alacritty and it sets the TERM to its name +export GPG_TTY=$(tty) +export PATH="$HOME/.local/bin:$PATH" export VIMINIT="source $HOME/.config/vim/vimrc" # Let's set up our personal routes export SCREENSHOT_DIR="/data/hdd/screenshots" +# Let's get some private environment vars +source $HOME/.profile.private + +# Let's keep $HOME clean +LESSHISTFILE=- + alias ls="ls -h --color=auto" alias myip="curl https://ifconfig.co" alias steam="HOME=/games steam" diff --git a/zshrc b/zshrc index c4f770b..0e54c49 100644 --- a/zshrc +++ b/zshrc @@ -60,3 +60,6 @@ if (( ${+terminfo[smkx]} && ${+terminfo[rmkx]} )); then add-zle-hook-widget -Uz zle-line-init zle_application_mode_start add-zle-hook-widget -Uz zle-line-finish zle_application_mode_stop fi + +zstyle :omz:plugins:ssh-agent identities id_ed25519 +plugins=(git ssh-agent)