Updating neofetch and profile
This commit is contained in:
parent
f39fcf8ec6
commit
18e4a976fe
|
@ -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
|
||||
|
|
10
profile
10
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"
|
||||
|
|
3
zshrc
3
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)
|
||||
|
|
Loading…
Reference in New Issue