Skip to content

klaasb/pavolume

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

17 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

pavolume is a simple python PulseAudio volume control for the command line. It is designed to be bound to your XF86Audio* keys so you can comfortably control PulseAudio volume.

pavolume notifications

Usage

pavolume -help		   # show complete usage explanation
pavolume show              # show volume and mute status as notification
pavolume sinks             # show sinks from pulse audio
pavolume volup             # increase volume
pavolume voldown           # increase volume
pavolume volset 50%        # set volume to 50%
pavolume volset 200%       # boost volume to 200%
pavolume muteon            # mute audio output
pavolume muteoff           # un-mute audio output
pavolume mutetoggle        # toggle mute

You can use the --quiet switch to not play a blip sound and the --noshow switch to not show libnotify notifications. If you want to allow volup to go over 100%, you can use the --nolimit switch:

pavolume volup --nolimit   # turn it to 11!

Installation

Clone the git repo somewhere and put pavolume on your $PATH. The pavolume.conf can go in one of these places:

  • The same directory as pavolume
  • $XDG_CONFIG_HOME/pavolume/pavolume.conf, i.e. $HOME/.config/pavolume/pavolume.conf
  • /etc/pavolume/pavolume.conf

Make sure to edit the config file so that it points to a valid blip sound file (it uses the Ubuntu message sound by default). Other than that, pavolume will use the first sink registered in your system.

Using pavolume with awesome

If you are using awesome, you can use the following key bindings to control pavolume:

awful.key({                   }, "XF86AudioRaiseVolume", function() awful.util.spawn("pavolume volup") end),
awful.key({                   }, "XF86AudioLowerVolume", function() awful.util.spawn("pavolume voldown") end),
awful.key({         "Shift"   }, "XF86AudioRaiseVolume", function() awful.util.spawn("pavolume volup --nolimit") end),
awful.key({         "Shift"   }, "XF86AudioLowerVolume", function() awful.util.spawn("pavolume voldown") end),
awful.key({                   }, "XF86AudioMute", function() awful.util.spawn("pavolume mutetoggle") end),

Pressing the volume up/down keys normally will increase/decrease volume, if you hold shift, you can increase the volume over 100%.

If these bindings don't work for some reason, try calling the commands from the command line directly. If this works, then check whether the pavolume script is also visible from awesome's $PATH.

Dependencies

  • pacmd
  • Python 3 with packages:
    • docopt
    • pygobject
    • appdirs
    • colorsysplus for the --color option

Questions, Comments, Code

If you have questions or comments, drop me a mail on GitHub! Code contributions are always welcome, too!

About

Simple command-line volume control for PulseAudio with libnotify messages

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors

Languages

  • Python 100.0%