Initial files
parent
e53234af98
commit
796db6a643
@ -0,0 +1 @@
|
||||
/etc/tmpfiles.d
|
@ -0,0 +1 @@
|
||||
/etc/asusd
|
@ -0,0 +1 @@
|
||||
/home/cole/.config/fish
|
@ -0,0 +1 @@
|
||||
/usr/lib/systemd/system-sleep
|
@ -0,0 +1 @@
|
||||
/etc/tmpfiles.d
|
@ -0,0 +1 @@
|
||||
f /dev/shm/looking-glass 0660 cole kvm -
|
@ -0,0 +1,45 @@
|
||||
{
|
||||
"gfx_managed": true,
|
||||
"active_profile": "ss",
|
||||
"toggle_profiles": [
|
||||
"normal",
|
||||
"boost",
|
||||
"silent",
|
||||
"ss"
|
||||
],
|
||||
"power_profile": 2,
|
||||
"bat_charge_limit": 100,
|
||||
"kbd_led_brightness": 0,
|
||||
"kbd_backlight_mode": 0,
|
||||
"kbd_backlight_modes": [],
|
||||
"power_profiles": {
|
||||
"boost": {
|
||||
"min_percentage": 0,
|
||||
"max_percentage": 100,
|
||||
"turbo": true,
|
||||
"fan_preset": 2,
|
||||
"fan_curve": null
|
||||
},
|
||||
"normal": {
|
||||
"min_percentage": 0,
|
||||
"max_percentage": 100,
|
||||
"turbo": false,
|
||||
"fan_preset": 2,
|
||||
"fan_curve": null
|
||||
},
|
||||
"silent": {
|
||||
"min_percentage": 0,
|
||||
"max_percentage": 100,
|
||||
"turbo": false,
|
||||
"fan_preset": 2,
|
||||
"fan_curve": null
|
||||
},
|
||||
"ss": {
|
||||
"min_percentage": 0,
|
||||
"max_percentage": 79,
|
||||
"turbo": false,
|
||||
"fan_preset": 2,
|
||||
"fan_curve": "30c:0%,40c:0%,50c:0%,60c:0%,70c:40%,80c:65%,90c:90%,100c:100%"
|
||||
}
|
||||
}
|
||||
}
|
@ -0,0 +1,2 @@
|
||||
alias rcopy "rsync -rltgohD --info=progress2"
|
||||
alias srcopy "sudo rsync -rltgohD --info=progress2"
|
@ -0,0 +1,10 @@
|
||||
#!/bin/bash
|
||||
|
||||
if [ "${1}" == "pre" ]; then
|
||||
asusctl -k off
|
||||
elif [ "${1}" == "post" ]; then
|
||||
brightness=$(cat /sys/class/leds/asus::kbd_backlight/brightness)
|
||||
echo 0 > /sys/class/leds/asus::kbd_backlight/brightness # set 2 different brightnesses to ensure a setting change
|
||||
echo 1 > /sys/class/leds/asus::kbd_backlight/brightness
|
||||
echo $brightness > /sys/class/leds/asus::kbd_backlight/brightness
|
||||
fi
|
@ -0,0 +1 @@
|
||||
w /sys/power/pm_freeze_timeout - - - - 500
|
Loading…
Reference in New Issue