2023-07-21 13:11:13 +00:00
|
|
|
#!/bin/sh
|
|
|
|
|
|
|
|
[ $(id -u) -ne 0 ] && echo "You need root privileges to run the uninstall script" && exit 1
|
|
|
|
|
|
|
|
rm -f "/usr/bin/gsr-kms-server"
|
|
|
|
rm -f "/usr/bin/gpu-screen-recorder"
|
2023-10-15 16:11:47 +00:00
|
|
|
rm -f "/usr/lib/systemd/user/gpu-screen-recorder.service"
|
2023-07-21 13:11:13 +00:00
|
|
|
|
|
|
|
echo "Successfully uninstalled gpu-screen-recorder"
|