update: reconfigured hyprland nvim and other things

This commit is contained in:
2025-11-27 20:24:18 +03:00
parent a2f5381eba
commit 4e98365dab
432 changed files with 48232 additions and 154 deletions

View File

@ -0,0 +1,11 @@
#!/bin/bash
msgId="3378455"
station=$(wpctl get-volume @DEFAULT_AUDIO_SOURCE@ | sed 's/Volume://' | tr -d [:digit:] | tr -d ' .[]')
if [ $station = 'MUTED' ]; then
notify-send -i "$HOME/.config/dunst/scripts/icons/mic off.svg" -u low -r "$msgId" "Микрофон выключен"
else
notify-send -i "$HOME/.config/dunst/scripts/icons/mic on.svg" -u low -r "$msgId" "Микрофон включен"
fi