mirror of
https://github.com/gryf/gryf-overlay.git
synced 2025-12-30 02:12:26 +01:00
13 lines
146 B
Plaintext
13 lines
146 B
Plaintext
#!/sbin/runscript
|
|
|
|
depend() {
|
|
before xdm
|
|
}
|
|
|
|
start() {
|
|
ebegin "Setting nvidia card overclock speed"
|
|
nvclock ${CLOCKOPTS} >/dev/null
|
|
eend $?
|
|
}
|
|
|