New animations for overlays (status bar, launcher and side panel), fade is ugly. Added the devinit alias for the new devbox system and reswitched helix to dark. Fixed a bug in the set-wallpaper script

This commit is contained in:
Gu://em_ 2026-04-25 21:32:13 +02:00
parent 83116af07b
commit 92bb14e687
4 changed files with 35 additions and 36 deletions

20
.zshrc
View file

@ -79,6 +79,8 @@ export PATH=$PATH:~/.local/bin
export PATH=$PATH:~/.local/share/Xilinx/Vivado/2024.2/bin
export EDITOR=helix
export DIRENV_LOG_FORMAT=" "
# Aliases
alias cl='clear'
alias hyprcfg='$EDITOR ~/.config/hypr/'
@ -90,8 +92,9 @@ alias zed='zeditor'
alias cg='cargo'
alias rqr='rust-quick-run.sh'
alias vm='quickemu --vm *.conf'
alias paclist="pacman -Qq | fzf --preview 'pacman -Qil {}' --layout=reverse --bind 'enter:execute(pacman -Qil {} | less)'
"
alias paclist="pacman -Qq | fzf --preview 'pacman -Qil {}' --layout=reverse --bind 'enter:execute(pacman -Qil {} | less)'"
alias devinit="devbox init && echo 'use devbox' > .envrc && direnv allow"
# Power management
alias pprof='cat /sys/firmware/acpi/platform_profile' # Get current performance profile
alias pprof-list='cat /sys/firmware/acpi/platform_profile_choices' # Lists the available performance profiles
@ -113,16 +116,3 @@ alias cm=" cmake -S . -B build && cmake --build build"
eval "$(fzf --zsh)"
eval "$(zoxide init --cmd cd zsh)" # Override cd with zoxide
eval "$(direnv hook zsh)"
# Nix
if [ -e /etc/profile.d/nix-daemon.sh ]; then
. /etc/profile.d/nix-daemon.sh
fi
# pnpm
export PNPM_HOME="/home/guillm/.local/share/pnpm"
case ":$PATH:" in
*":$PNPM_HOME:"*) ;;
*) export PATH="$PNPM_HOME:$PATH" ;;
esac
# pnpm end