10 lines
232 B
Bash
10 lines
232 B
Bash
# Enable monitors.
|
|
function monon() {
|
|
swaymsg 'output "ASUSTek COMPUTER INC ASUS VA24E R2LMTF127165" power on'
|
|
}
|
|
|
|
# Disable monitors.
|
|
function monoff() {
|
|
swaymsg 'output "ASUSTek COMPUTER INC ASUS VA24E R2LMTF127165" power off'
|
|
}
|