diff options
author | dec05eba <dec05eba@protonmail.com> | 2023-08-09 22:46:47 +0200 |
---|---|---|
committer | dec05eba <dec05eba@protonmail.com> | 2023-08-09 22:46:47 +0200 |
commit | ba00c20b478d76db5a462d592971b82527c5e638 (patch) | |
tree | 7f3b4eaff12dc55941ed9bb572d1b38aefde91bb /extra | |
parent | a0e8e9ba59f61aa19220f0715a1c9c7c082ab2cc (diff) |
Remove coolbits script (document the nvidia-xconfig command to use instead)
Diffstat (limited to 'extra')
-rw-r--r-- | extra/88-gsr-coolbits.conf | 5 | ||||
-rwxr-xr-x | extra/install_coolbits.sh | 10 |
2 files changed, 0 insertions, 15 deletions
diff --git a/extra/88-gsr-coolbits.conf b/extra/88-gsr-coolbits.conf deleted file mode 100644 index be665f1..0000000 --- a/extra/88-gsr-coolbits.conf +++ /dev/null @@ -1,5 +0,0 @@ -Section "Device" - Identifier "Device0" - Driver "nvidia" - Option "Coolbits" "12" -EndSection diff --git a/extra/install_coolbits.sh b/extra/install_coolbits.sh deleted file mode 100755 index 053e8ab..0000000 --- a/extra/install_coolbits.sh +++ /dev/null @@ -1,10 +0,0 @@ -#!/bin/sh - -script_dir=$(dirname "$0") -cd "$script_dir" - -[ $(id -u) -ne 0 ] && echo "You need root privileges to run the install script" && exit 1 - -for xorg_conf_d in "/etc/X11/xorg.conf.d" "/usr/share/X11/xorg.conf.d" "/usr/lib/X11/xorg.conf.d"; do - [ -d "$xorg_conf_d" ] && install -Dm644 "88-gsr-coolbits.conf" "$xorg_conf_d/88-gsr-coolbits.conf" && exit 0 -done |