Fixed icons

laptop
Elias Almqvist 1 year ago
parent e9987d9707
commit a4ba1c44c5
No known key found for this signature in database
GPG Key ID: E31A99CE3E75A158
  1. 4
      eww/.config/eww/eww.yuck
  2. 8
      zsh/.zshrc

@ -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"

@ -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
Loading…
Cancel
Save