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

Fix Ubuntu / Lubuntu ‘Hypernation Button Does Nothing’ Problem

# Step 0: find swap # Option A: root@kimlinux:/home/kim# cat /proc/swaps Filename Type Size Used…

File Searching in Linux

Step 1 Index your file system with updatedb. This makes a list of files so…

Manual Compile of NGINX on CentOS 7

Summary:Normal NGINX that has been installed from repositories does not forward raw TCP packets. Since…