8 lines
225 B
Bash
8 lines
225 B
Bash
|
#!/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"
|
||
|
|
||
|
echo "Successfully uninstalled gpu-screen-recorder"
|