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

Administering CentOS 8 with Cockpit

CentOS 8 default installation already has this utility installed. To render it active, one only…

Linux: Copy File Contents Into Clipboard

Install XCLIP (if not already installed) sudo apt install xclip -y Reading package lists... Done…

How To Automate Youtube Full Screen on Ubuntu Using Python & Selenium

#sudo apt install python3 python3-pip #sudo pip3 install selenium #pip install webdriver-manager # Variables YoutubeUrl="https://www.youtube.com/watch?v=7nT5YawZt-s"…