10 lines
246 B
Bash
10 lines
246 B
Bash
# Enable VRR.
|
|
function vrron() {
|
|
swaymsg 'output "Huawei Technologies Co., Inc. ZQE-CBA 0xC080F622" adaptive_sync on'
|
|
}
|
|
|
|
# Disable VRR.
|
|
function vrroff() {
|
|
swaymsg 'output "Huawei Technologies Co., Inc. ZQE-CBA 0xC080F622" adaptive_sync off'
|
|
}
|