9 lines
176 B
Bash
9 lines
176 B
Bash
#!/bin/sh
|
|
|
|
set -e
|
|
|
|
if [ -f /usr/bin/pika-hyprland ]; then
|
|
rm -f /usr/share/wayland-sessions/hyprland.desktop
|
|
rm -f /usr/share/wayland-sessions/hyprland-uwsm.desktop
|
|
fi
|