17 lines
531 B
Bash
Executable file
17 lines
531 B
Bash
Executable file
#!/bin/bash
|
|
|
|
connected_displays=$(swaymsg -rt get_outputs | jq -r .[].name)
|
|
|
|
for display in {DP-7,DP-6,HDMI-A-1}; do
|
|
if [[ ${connected_displays} == *"${display}"* ]]; then
|
|
echo swaymsg workspace "39:" output "${display}"
|
|
fi
|
|
done
|
|
|
|
swaymsg workspace number '39:'
|
|
|
|
librewolf-profile Work 'https://library.lanecc.edu/' \
|
|
'https://inside.lanecc.edu/sites/default/files/pg/map_2024_ltr.pdf' \
|
|
'https://lanecc.libcal.com/allspaces' \
|
|
'https://library.lanecc.edu/study-rooms#maps' \
|
|
'https://my.livechatinc.com/home'
|