This commit is contained in:
array-in-a-matrix 2024-02-20 13:10:56 -05:00
parent 797cd90de1
commit 1f26fc21ef
4 changed files with 23 additions and 5 deletions

View file

@ -16,6 +16,8 @@ alias vim="nvim"
alias code="vscodium ." alias code="vscodium ."
alias ip="ip -c" alias ip="ip -c"
alias py="python3" alias py="python3"
alias copy="wl-copy"
alias paste="wl-paste --type TEXT"
alias open="xdg-open" alias open="xdg-open"
alias radeontop="radeontop -c" alias radeontop="radeontop -c"
alias tty-clock="tty-clock -scBxbn" alias tty-clock="tty-clock -scBxbn"
@ -23,7 +25,7 @@ alias wget="wget --hsts-file='$XDG_CACHE_HOME/wget-hsts'"
# long aliases # long aliases
alias ex="exiftool -overwrite_original -All= $@" alias ex="exiftool -overwrite_original -All= $@"
alias upgrade="sudo aura -Syu; sudo aura -Aykuaxc; flatpak update" alias upgrade="sudo aura -Aykuaxc; flatpak update"
alias micoff="pactl unload-module module-loopback" alias micoff="pactl unload-module module-loopback"
alias svn="svn --config-dir \"$XDG_CONFIG_HOME\"/subversion" alias svn="svn --config-dir \"$XDG_CONFIG_HOME\"/subversion"
alias micon="pactl load-module module-loopback latency_msec=1" alias micon="pactl load-module module-loopback latency_msec=1"

View file

@ -65,3 +65,9 @@ export PF_INFO="ascii os kernel uptime de wm shell editor palette"
# use qt file picker # use qt file picker
export GTK_USE_PORTAL=1 export GTK_USE_PORTAL=1
# nintendo console development vars
export DEVKITPRO=/opt/devkitpro
export DEVKITARM=/opt/devkitpro/devkitARM
export DEVKITPPC=/opt/devkitpro/devkitPPC

View file

@ -7,7 +7,7 @@ if [[ $XDG_SESSION_DESKTOP == "sway" ]]; then
fi fi
# if using wayland allow native rendering # if using wayland allow native rendering
if [[ "$XDG_SESSION_TYPE" == "wayland" ]]; then if [[ "$XDG_SESSION_TYPE" == "wayland" ]]; then
export MOZ_ENABLE_WAYLAND=0 export MOZ_ENABLE_WAYLAND=1
export QT_QPA_PLATFORM="wayland;xcb" export QT_QPA_PLATFORM="wayland;xcb"
export GDK_BACKEND="wayland,x11" export GDK_BACKEND="wayland,x11"
fi fi
@ -43,19 +43,28 @@ emoji
zsh-syntax-highlighting zsh-syntax-highlighting
) )
source "$XDG_CONFIG_HOME/zsh/path"
source "$ZSH/oh-my-zsh.sh"
source "$XDG_CONFIG_HOME/zsh/path" source "$XDG_CONFIG_HOME/zsh/path"
source "$XDG_CONFIG_HOME/zsh/icons" source "$XDG_CONFIG_HOME/zsh/icons"
source "$XDG_CONFIG_HOME/zsh/alias" source "$XDG_CONFIG_HOME/zsh/alias"
source "$XDG_CONFIG_HOME/zsh/func" source "$XDG_CONFIG_HOME/zsh/func"
source "$XDG_CONFIG_HOME/zsh/env" source "$XDG_CONFIG_HOME/zsh/env"
source "$ZSH/oh-my-zsh.sh"
# key binding # key binding
bindkey -s '^o' 'lfcd\n' bindkey -s '^o' 'lfcd\n'
bindkey -s '^f' 'dolphin . &> /dev/null & disown\n' bindkey -s '^f' 'dolphin . &> /dev/null & disown\n'
bindkey -s '^x' '&> /dev/null & disown\n' bindkey -s '^x' ' &> /dev/null & disown\n'
# zoxide # zoxide
eval "$(zoxide init zsh --cmd cd)" eval "$(zoxide init zsh --cmd cd)"
[ -s "/home/linux/.bun/_bun" ] && source "/home/linux/.bun/_bun" [ -s "/home/linux/.bun/_bun" ] && source "/home/linux/.bun/_bun"
# pnpm
export PNPM_HOME="/home/linux/.local/share/pnpm"
case ":$PATH:" in
*":$PNPM_HOME:"*) ;;
*) export PATH="$PNPM_HOME:$PATH" ;;
esac
# pnpm end

View file

@ -6,8 +6,9 @@ export PATH="$HOME/.local/bin:$PATH"
# programming languages # programming languages
export PATH="$GOPATH/bin:$PATH" export PATH="$GOPATH/bin:$PATH"
export PATH="$BUN_INSTALL/bin:$PATH" export PATH="$BUN_INSTALL/bin:$PATH"
export PATH="$HOME/.nimble/bin:$PATH"
export PATH="$HOME/.local/share/python/bin:$PATH" export PATH="$HOME/.local/share/python/bin:$PATH"
export PATH="$HOME/.nimble/bin:$PATH"
export PATH="$HOME/.local/share/nimble/bin:$PATH"
export PATH=$HOME/home/linux/.cargo/bin:$PATH export PATH=$HOME/home/linux/.cargo/bin:$PATH
# pnpm # pnpm