This commit is contained in:
2025-12-28 13:55:10 -08:00
commit 9b4219aa67
131 changed files with 32853 additions and 0 deletions

10
uninstall.sh Executable file
View File

@ -0,0 +1,10 @@
#!/bin/sh -e
script_dir=$(dirname "$0")
cd "$script_dir"
[ $(id -u) -ne 0 ] && echo "You need root privileges to run the uninstall script" && exit 1
ninja -C build uninstall
echo "Successfully uninstalled gpu-screen-recorder"