Updating neofetch and profile
This commit is contained in:
parent
f39fcf8ec6
commit
18e4a976fe
|
@ -11,6 +11,7 @@ print_info() {
|
||||||
info "Packages" packages
|
info "Packages" packages
|
||||||
info "Shell" shell
|
info "Shell" shell
|
||||||
info "Resolution" resolution
|
info "Resolution" resolution
|
||||||
|
prin "Session" "$(echo $XDG_SESSION_TYPE)"
|
||||||
info "DE" de
|
info "DE" de
|
||||||
info "WM" wm
|
info "WM" wm
|
||||||
#info "WM Theme" wm_theme
|
#info "WM Theme" wm_theme
|
||||||
|
@ -30,7 +31,7 @@ print_info() {
|
||||||
# info "Font" font
|
# info "Font" font
|
||||||
# info "Song" song
|
# info "Song" song
|
||||||
# info "Playing" song
|
# info "Playing" song
|
||||||
prin "Playing" "$(song)"
|
#prin "Playing" "$(song)"
|
||||||
# [[ $player ]] && prin "Player" "$player"
|
# [[ $player ]] && prin "Player" "$player"
|
||||||
# info "Local IP" local_ip
|
# info "Local IP" local_ip
|
||||||
# info "Public IP" public_ip
|
# info "Public IP" public_ip
|
||||||
|
@ -280,7 +281,7 @@ gpu_type="all"
|
||||||
# Example:
|
# Example:
|
||||||
# on: '1920x1080 @ 60Hz'
|
# on: '1920x1080 @ 60Hz'
|
||||||
# off: '1920x1080'
|
# off: '1920x1080'
|
||||||
refresh_rate="off"
|
refresh_rate="on"
|
||||||
|
|
||||||
|
|
||||||
# Gtk Theme / Icons / Font
|
# Gtk Theme / Icons / Font
|
||||||
|
|
10
profile
10
profile
|
@ -1,12 +1,18 @@
|
||||||
# The city's finest exports!
|
# The city's finest exports!
|
||||||
export GIT_EDITOR="vim"
|
export GIT_EDITOR="vim"
|
||||||
export PATH="$PATH:$HOME/.local/bin"
|
export GPG_TTY=$(tty)
|
||||||
#export TERM=xterm-256color # Fixes ssh since I use alacritty and it sets the TERM to its name
|
export PATH="$HOME/.local/bin:$PATH"
|
||||||
export VIMINIT="source $HOME/.config/vim/vimrc"
|
export VIMINIT="source $HOME/.config/vim/vimrc"
|
||||||
|
|
||||||
# Let's set up our personal routes
|
# Let's set up our personal routes
|
||||||
export SCREENSHOT_DIR="/data/hdd/screenshots"
|
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 ls="ls -h --color=auto"
|
||||||
alias myip="curl https://ifconfig.co"
|
alias myip="curl https://ifconfig.co"
|
||||||
alias steam="HOME=/games steam"
|
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-init zle_application_mode_start
|
||||||
add-zle-hook-widget -Uz zle-line-finish zle_application_mode_stop
|
add-zle-hook-widget -Uz zle-line-finish zle_application_mode_stop
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
zstyle :omz:plugins:ssh-agent identities id_ed25519
|
||||||
|
plugins=(git ssh-agent)
|
||||||
|
|
Loading…
Reference in New Issue