mirror of
https://github.com/olexsmir/dotfiles.git
synced 2026-01-15 08:41:34 +02:00
6 lines
118 B
Bash
Executable file
6 lines
118 B
Bash
Executable file
#!/bin/sh
|
|
case "$1" in
|
|
"on"|"-on"|"--on"|1) xset led on ;;
|
|
"of"|"off"|"-off"|"--off"|0) xset led off ;;
|
|
esac
|
|
|