2022-05-08 14:47:20 +02:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
MONITOR_CONF=~/.screenlayout/monitor.sh
|
|
|
|
GENERATED_MONITOR_CONF=~/.screenlayout/generated_monitor.sh
|
2022-05-08 16:11:11 +02:00
|
|
|
|
|
|
|
# Set command from current VM
|
|
|
|
MSG_COMMAND=i3-msg
|
|
|
|
if [[ $DESKTOP_SESSION =~ ^sway$ ]]; then
|
|
|
|
MSG_COMMAND=swaymsg
|
|
|
|
fi
|
|
|
|
|