Skip to content

Latest commit

 

History

History
49 lines (40 loc) · 1.45 KB

README.md

File metadata and controls

49 lines (40 loc) · 1.45 KB

Volume Icon

A lightweight volume control applet with support for global keybindings

Compilation

  $ ./autogen.sh
  $ ./configure
  $ make
  $ sudo make install

Compilation Flags

--enable-oss: By default Volume Icon will be built with ALSA as its
              backend. Note that it is not possible to build with both ALSA
              and OSS support at the moment, so using this flag will
              disable ALSA support.

--enable-notify: Enables notifications, this adds a dependency for
                 libnotify >= 0.5.0.

--with-oss-include-path: Location of soundcard.h, defaults first to the value
                         specified in /etc/oss.conf. If that does not exist it
                         defaults to /usr/lib/oss/include/sys.

--with-default-mixerapp: Set the default mixer application, defaults to
                         alsamixer.

Build Dependencies

To run ./autogen.sh, intltool must be installed.

The following packages must be installed for compilation (Debian names given):

  • libasound2-dev
  • libglib2.0-dev
  • libgtk-3-dev
  • perl (uses pod2man to generate man pages)

Contributing

In order to keep coding style consistent (barring third-party code) we use the clang-format command-line tool with the settings specified in .clang-format. To that end, please make sure to run the format-source.sh script before submitting pull requests.