Posted On January 12, 2021

Linux: Creating Volume Shortcuts

kimconnect 0 comments
blog.KimConnect.com >> Linux >> Linux: Creating Volume Shortcuts

Run xfce4-keyboard-settings > select the ‘Application Shortcuts’ tab > Add > input one of the three commands below > OK

# command to increase volume
amixer set Master playback 5dB+
pactl set-sink-volume @DEFAULT_SINK@ +5%
# Command to reduce volume
amixer set Master playback 5dB-
pactl set-sink-volume @DEFAULT_SINK@ -5%
# command to toggle mute/unmute volume
amixer -D pulse set Master toggle

Press a key combination on the keyboard > repeat process for the next commands until completion

Leave a Reply

Your email address will not be published. Required fields are marked *

Related Post

Long Boot Time Caused by “Scanning for BTRFS file system”

More info about swap files: here Step 1: turn off quiet boot to observe the…

How to Install Visual Studio Code on Linux Mint 20.04

Linux Mint versions earlier than 20.04 would allow a user to install snapd, prior to…

Useful Linux Commands

# Check SSH connection activities by reading its log (Redhat / Centos) tail -f -n…