blob: 30c9ed999b53bdcfb19c84786645bde81903ed26 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
#! /bin/bash
post_install () {
rm --force \
"etc/X11/xorg.conf" \
"etc/X11/xorg.conf.backup" \
"etc/X11/xorg.conf.nvidia-xconfig-original" \
"etc/X11/nvidia-xorg.conf.d/"*nvidia*
systemctl enable "optimus-manager.service"
}
post_upgrade () {
systemctl daemon-reload
}
pre_remove() {
systemctl disable --now "optimus-manager.service"
rm --force "etc/X11/xorg.conf.d/10-optimus-manager.conf"
}
|