7 lines
92 B
Bash
Executable File
7 lines
92 B
Bash
Executable File
#!/bin/bash
|
|
if [ "$1" = "up" ]; then
|
|
asusctl -n
|
|
elif [ "$1" = "down" ];then
|
|
asusctl -p
|
|
fi
|