mirror of
https://github.com/bhaiest/holoiso.git
synced 2024-11-16 08:12:32 +01:00
9 lines
427 B
Bash
9 lines
427 B
Bash
#!/bin/zsh
|
|
if [[ "${DESKTOP_SESSION}" == "plasma" ]]; then
|
|
sudo pkexec sed -i 's/plasma/gamescope-wayland/g' /etc/sddm.conf.d/autologin.conf
|
|
sudo pkill -f "gamescope*" && sudo systemctl restart display-manager
|
|
else
|
|
sudo pkexec sed -i 's/gamescope-wayland/plasma/g' /etc/sddm.conf.d/autologin.conf
|
|
sudo systemctl restart display-manager && sudo pkexec chvt 1 && sudo pkill -f "gamescope*"
|
|
fi
|