ボリューム通知がポップアップするように、コマンドラインでボリュームを調整します


14

コマンドラインでシステムの音量を調整して、デフォルトの音量ポップアップ(ノートブックでメディアキーを押すとポップアップするポップアップ)が引き続き表示されるようにする方法はありますか。

これはリモコンに必要です。lircrcファイルとirexecを使用して実行されます。


回答:


15

xdotoolパッケージをインストールして、発行してみてください

xdotool key XF86AudioLowerVolume

そして

xdotool key XF86AudioRaiseVolume

1
DISPLAY=:0lircユーザーが適切な場所に送信できるように、先頭に(または表示が異なる場合は別の)を追加する必要があるかもしれません。そうではないかもしれません。
オリ

1
どうもありがとう!DISPLAY変数を設定する必要はありませんでした
リンカーン

1
--clearmodifiersUbuntuのキーボードショートカット設定で使用するには、キーの後にパラメーターを使用する必要がある場合があり ます。
パブロビアンキ

@Oliはい、SSH経由でボリュームを変更する場合などに必要になります。
wjandrea

@PabloBianchi私の経験では、Unityはキーを本当に簡単に再マップします--clearmodifiers
wjandrea

3

Archフォーラムで見つけこのスクリプトにショートカットをバインドできます(パッケージが必要ですlibnotify-bin):

#!/bin/sh

usage="usage: $0 -c {up|down|mute} [-i increment] [-m mixer]"
command=
increment=5%
mixer=Master

while getopts i:m:h o
do case "$o" in
    i) increment=$OPTARG;;
    m) mixer=$OPTARG;;
    h) echo "$usage"; exit 0;;
    ?) echo "$usage"; exit 0;;
esac
done

shift $(($OPTIND - 1))
command=$1

if [ "$command" = "" ]; then
    echo "usage: $0 {up|down|mute} [increment]"
    exit 0;
fi

display_volume=0

if [ "$command" = "up" ]; then
    display_volume=$(amixer set $mixer $increment+ unmute | grep -m 1 "%]" | cut -d "[" -f2|cut -d "%" -f1)
fi

if [ "$command" = "down" ]; then
    display_volume=$(amixer set $mixer $increment- unmute | grep -m 1 "%]" | cut -d "[" -f2|cut -d "%" -f1)
fi

icon_name=""

if [ "$command" = "mute" ]; then
    if amixer get Master | grep "\[on\]"; then
        display_volume=0
        icon_name="notification-audio-volume-muted"
        amixer set $mixer mute
    else
        display_volume=$(amixer set $mixer unmute | grep -m 1 "%]" | cut -d "[" -f2|cut -d "%" -f1)
    fi
fi

if [ "$icon_name" = "" ]; then
    if [ "$display_volume" = "0" ]; then
        icon_name="notification-audio-volume-off"
    elif [ "$display_volume" -lt "33" ]; then
        icon_name="notification-audio-volume-low"
    elif [ "$display_volume" -lt "67" ]; then
        icon_name="notification-audio-volume-medium"
    else
        icon_name="notification-audio-volume-high"
    fi
fi
notify-send " " -i $icon_name -h int:value:$display_volume -h string:synchronous:volume

Ubuntu 10.10で正常に動作するようです。


1

音量を制御する

amixer音量の制御に使用できます。たとえば

amixer set 'Master' 50%
amixer set 'Master' 10%+
amixer set 'Master' 2dB-

-c 12番目のサウンドカードなどを使用して、サウンドカードを設定する必要がある場合がありますman amixer。を参照してください。

音を出す

aplayまたはpaplayなどのプレーヤーを使用してサウンドを再生できます。

paplay /usr/share/sounds/freedesktop/stereo/audio-volume-change.oga

次の質問をご覧ください。システムサウンドはどこにありますか?

オンスクリーン通知を表示する

XオンスクリーンディスプレイライブラリXOSDを使用して、画面上の通知を再現できます。パッケージが呼び出さxosd-binれ、コマンドosd_catは画面上にテキスト、ステータスバーなどを表示するために使用されます。

osd_cat -b percentage -P 20 -T Status: -f "-adobe-helvetica-bold-*-*--34-*-*-*-*"

ディスプレイ

ここに画像の説明を入力してください

オプションと例などについては、このドイツ語のWikiページを参照してくださいman osd_cat


0

xmacroをインストールし、次の行を.lircrcに追加しました

begin
        prog = irexec
        button = KEY_VOLUMEUP
        repeat = 1
        delay = 2
        config = echo KeyStrPress XF86AudioRaiseVolume KeyStrRelease XF86AudioRaiseVolume | xmacroplay $DISPLAY
end
begin
        prog = irexec
        button = KEY_VOLUMEDOWN
        repeat = 1
        delay = 2
        config = echo KeyStrPress XF86AudioLowerVolume KeyStrRelease XF86AudioLowerVolume | xmacroplay $DISPLAY
end
begin
        prog = irexec
        button = KEY_MUTE
        config = echo KeyStrPress XF86AudioMute KeyStrRelease XF86AudioMute | xmacroplay $DISPLAY
end

0

これは、投稿されたスクリプトhtorqueの改良版です。

14.04で動作します。16.04以降で動作するかどうかを教えてください。

libnotify-binインストールが必要です。

#!/bin/sh
# Adjust the volume, play a sound, and show a notification.
#
# Replacement for default Ubuntu volume adjustment behaviour.
#
# Based on /ubuntu//a/12769/301745

command=""
device="pulse"
display_volume=0
icon_name="error"
increment=5
mixer="Master"
usage="usage: $0 [-d device] [-i increment] [-m mixer] (up|down|mute)"

# For compatibility with SSH sessions.
export DISPLAY=:0

_amixer(){
    # amixer alias
    local set_get="$1"
    shift
    amixer -D "$device" "$set_get" "$mixer" "$@"
}

_get_display_volume(){
    # grep alias
    grep -Pom 1 '(?<=\[)[0-9]+(?=%\])'
}

while getopts d:hi:m: opt; do
    case "$opt" in
        d)
            device="$OPTARG"
            ;;
        h)
            echo "$usage"
            exit 0
            ;;
        i)
            increment="$OPTARG"
            ;;
        m)
            mixer="$OPTARG"
            ;;
        ?)
            echo "$usage"
            exit 1
            ;;
    esac
done

shift "$(($OPTIND - 1))"
command="$1"

case "$command" in
    down)
        display_volume="$(
            _amixer set "$increment%-" unmute |
                _get_display_volume
            )"
        ;;
    mute)
        if _amixer get | grep -q "\[on\]"; then
            display_volume=0
            icon_name="notification-audio-volume-muted"
            _amixer set mute > /dev/null
        else
            display_volume="$(
                _amixer set unmute |
                    _get_display_volume
                )"
        fi
        ;;
    up)
        display_volume="$(
            _amixer set "$increment%+" unmute |
                _get_display_volume
            )"
        ;;
    *)
        echo "$usage"
        exit 1
        ;;
esac

if [ "$icon_name" = "error" ]; then
    if [ "$display_volume" = "0" ]; then
        icon_name="notification-audio-volume-off"
    elif [ "$display_volume" -lt "33" ]; then
        icon_name="notification-audio-volume-low"
    elif [ "$display_volume" -lt "67" ]; then
        icon_name="notification-audio-volume-medium"
    else
        icon_name="notification-audio-volume-high"
    fi

    # In a subshell in the background to minimize latency.
    ( canberra-gtk-play --id=audio-volume-change & )
fi

notify-send "Volume: $display_volume%" -i "$icon_name" -h "string:synchronous:volume" -h "int:value:$display_volume"
弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.