diff options
-rwxr-xr-x | bin/gnome-move-windows | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/bin/gnome-move-windows b/bin/gnome-move-windows index 0b6c0cc..f4fcd4e 100755 --- a/bin/gnome-move-windows +++ b/bin/gnome-move-windows @@ -11,7 +11,8 @@ done # Assign windows to predetermined workplaces misc=$(wmctrl -l | awk '/isco|eepa/ {print $1}') main="$(wmctrl -xl | awk '/ emacs/ {print $1}')" -communications="$(wmctrl -l | awk '/ebex|lack|communications|notmuch|elfeed/ {print $1}')" +communications="$(wmctrl -l | awk '/ebex|lack|communications|notmuch|Outlook|elfeed/ {print $1}')" +media="$(wmctrl -l | awk '/YouTube|Spotify/ {print $1}')" terminals="$(wmctrl -l | awk '/Alacritty|kitty|terminal/ {print $1}')" browsers="$(wmctrl -xl | awk '/irefox|hrom/ {print $1}')" @@ -34,3 +35,7 @@ done for window_id in $terminals; do wmctrl -i -r $window_id -t 3 done + +for window_id in $media; do + wmctrl -i -r $window_id -t 8 +done |