diff --git a/eww/.config/eww/eww.yuck b/eww/.config/eww/eww.yuck index b5978d5..597360a 100644 --- a/eww/.config/eww/eww.yuck +++ b/eww/.config/eww/eww.yuck @@ -161,7 +161,7 @@ (button :onclick "amixer -D pulse set Master 1+ toggle" :class "icon volume + ${muted-volume != 'on' ? 'red' : ''}" :tooltip "Volume: ${current-volume}%" - {muted-volume != "on" ? "ﱝ" : "墳"} + {muted-volume != "on" ? "󰝟" : "󰕾"} ) ))) (defvar volume false) @@ -230,7 +230,7 @@ ;; Pause (button :class "icon pause" :tooltip "Pause/play" - :onclick "playerctl play-pause" {music-status == "Playing" ? "" : ""}) + :onclick "playerctl play-pause" {music-status == "Playing" ? "󰏤" : ""}) ;; Pause (button :class "icon prev" diff --git a/zsh/.zshrc b/zsh/.zshrc index 8255f57..a1258a0 100644 --- a/zsh/.zshrc +++ b/zsh/.zshrc @@ -115,3 +115,11 @@ export EDITOR=nvim export PYENV_ROOT="$HOME/.pyenv" command -v pyenv >/dev/null || export PATH="$PYENV_ROOT/bin:$PATH" eval "$(pyenv init -)" + +# pnpm +export PNPM_HOME="/home/elal/.local/share/pnpm" +case ":$PATH:" in + *":$PNPM_HOME:"*) ;; + *) export PATH="$PNPM_HOME:$PATH" ;; +esac +# pnpm end \ No newline at end of file