{ ... }: { text = '' function monitor() { notify_short toggle() { local output=$(swaymsg -t get_outputs | jq -r '.[] | select(.focused) | .name') local state=$(swaymsg -t get_outputs | jq -r '.[] | select(.focused) | .power') if ''${state}; then swaymsg "output \"''${output}\" power off" else swaymsg "output \"''${output}\" power on" fi pkill -RTMIN+4 waybar } _sway_iterate_sockets toggle } function monitorreset() { swaymsg 'output * power on' pkill -RTMIN+4 waybar } function gaming() { notify_short toggle() { local output=$(swaymsg -t get_outputs | jq -r '.[] | select(.focused) | .name') local state=$(swaymsg -t get_outputs | jq -r '.[] | select(.focused) | .adaptive_sync_status') if [[ "''${state}" = "disabled" ]]; then swaymsg "output \"''${output}\" adaptive_sync on" else swaymsg "output \"''${output}\" adaptive_sync off" fi pkill -RTMIN+4 waybar } _sway_iterate_sockets toggle } function gamingreset() { swaymsg 'output * adaptive_sync off' pkill -RTMIN+4 waybar } function dnd() { toggle() { local state=$(makoctl mode) if [[ "''${state}" = "dnd" ]]; then makoctl mode -s default notify_short else notify_short makoctl mode -s dnd fi pkill -RTMIN+4 waybar } _sway_iterate_sockets toggle } # Reset the state of everything. function displayreset() { notify_long [[ "''$(monitorstate)" = "Y" ]] && monitorreset [[ "''$(gamingstate)" = "Y" ]] && gamingreset [[ "''$(recordingstate)" = "Y" ]] && pkill wf-recorder [[ "''$(dndstate)" = "Y" ]] && dnd true } # Waybar output. function displaywidget() { local _monitorstate=$(monitorstate) local _gamingstate=$(gamingstate) local _recordingstate=$(recordingstate) local _dndstate=$(dndstate) local class="" if [[ "''${_monitorstate}" = "Y" ]] || [[ "''${_gamingstate}" = "Y" ]] || [[ "''${_recordingstate}" = "Y" ]] || [[ "''${_dndstate}" = "Y" ]]; then class="modified" fi printf "{\"text\": \"󰍹\", \"tooltip\": \"DND: ''${_dndstate} / Monitor: ''${_monitorstate} / Gaming: ''${_gamingstate} / Recording: ''${_recordingstate}\", \"class\": \"''${class}\"}\n" } function monitorstate() { local outputs=($(swaymsg -t get_outputs | jq -r '.[] | .power')) for state in "''${outputs[@]}"; do ''${state} || { printf Y return 1 } done printf n return 0 } function recordingstate() { [[ "$(ps cax | rg wf-recorder)" = "" ]] && printf n || printf Y } function dndstate() { [[ "$(makoctl mode)" = "dnd" ]] && printf Y || printf n } function gamingstate() { local outputs=($(swaymsg -t get_outputs | jq -r '.[] | .adaptive_sync_status')) for state in "''${outputs[@]}"; do [[ "''${state}" = "disabled" ]] || { printf Y return 1 } done printf n return 0 } ''; }