updating some wm stuff

This commit is contained in:
Chris Cochrun 2022-11-16 09:34:42 -06:00
parent 79511c3289
commit d8b69fea60
8 changed files with 45 additions and 25 deletions

View file

@ -2,6 +2,6 @@
awesome-client "naughty.destroy_all_notifications()"
pamixer --allow-boost -d 5
pw-play /nix/store/grc8na7vz23zlz0q9g76y6f66qrgr2cv-sound-theme-freedesktop-0.8/share/sounds/freedesktop/stereo/audio-volume-change.oga
pw-play /run/current-system/sw/share/sounds/freedesktop/stereo/audio-volume-change.oga
volume=$(pulsemixer --get-volume | awk '{print $1}')
notify-send $volume

View file

@ -2,6 +2,6 @@
awesome-client "naughty.destroy_all_notifications()"
pamixer --allow-boost -i 5
pw-play /nix/store/grc8na7vz23zlz0q9g76y6f66qrgr2cv-sound-theme-freedesktop-0.8/share/sounds/freedesktop/stereo/audio-volume-change.oga
pw-play /run/current-system/sw/share/sounds/freedesktop/stereo/audio-volume-change.oga
volume=$(pulsemixer --get-volume | awk '{print $1}')
notify-send $volume

11
scripts/window.sh Executable file
View file

@ -0,0 +1,11 @@
#!/usr/bin/env bash
list_windows() (
wlrctl window list
)
window=$(list_windows | rofi -sync -dmenu -p "select window..." -theme ~/.config/rofi/launchers-git/laptop-rbw.rasi | awk '{print $1}' | sed 's/://')
echo $window
wlrctl window focus $window