% amixer set Master 60%ubuntu11.10のunityだとthinkpad x1のキーボードの右側にある音量調節ボタンで調節できた。けど、stumpwmだとmute、unmuteしかできなかったので調べた。
コマンドにしとく。ソースはこちら。
% volume 70
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
if [ $# -eq 0 ]; then | |
echo 'Usage: volume <num 0 - 100>' 1>&2 | |
exit 1 | |
fi | |
amixer set Master on "$1"% |
0 件のコメント:
コメントを投稿