Files
gpu-screen-recorder/uninstall.sh
2024-06-11 17:01:51 +02:00

11 lines
230 B
Bash
Executable File

#!/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"