migration

This commit is contained in:
kokopi-dev
2025-10-28 16:23:11 +09:00
commit 2f27c335cf
116 changed files with 8221 additions and 0 deletions

8
X11/acpi/handlers/bl Executable file
View File

@@ -0,0 +1,8 @@
#!/bin/sh
bl_dev=/sys/class/backlight/intel_backlight
step=1900
case $1 in
-) echo $(($(< $bl_dev/brightness) - $step)) >$bl_dev/brightness;;
+) echo $(($(< $bl_dev/brightness) + $step)) >$bl_dev/brightness;;
esac

5
X11/acpi/handlers/volume Executable file
View File

@@ -0,0 +1,5 @@
#!/bin/sh
case $1 in
-) runuser - kokopi -c "pamixer -d 5";;
+) runuser - kokopi -c "pamixer -i 5";;
esac