mirror of
https://github.com/olexsmir/dotfiles.git
synced 2026-01-15 16:51:34 +02:00
5 lines
117 B
Bash
Executable file
5 lines
117 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
|