diff options
author | Lars Uebernickel <lars.uebernickel@canonical.com> | 2013-10-01 14:11:04 +0200 |
---|---|---|
committer | Lars Uebernickel <lars.uebernickel@canonical.com> | 2013-10-01 14:11:04 +0200 |
commit | d31be181a2c69c167bb61dbb9f1007f346920ac8 (patch) | |
tree | 09f9e431b65cce5cae145151b7c2dc6d38e7f0a6 /src/main.vala | |
parent | 4600123677c7897e76eb8b666c2b3211ebcd19d4 (diff) | |
download | ayatana-indicator-sound-d31be181a2c69c167bb61dbb9f1007f346920ac8.tar.gz ayatana-indicator-sound-d31be181a2c69c167bb61dbb9f1007f346920ac8.tar.bz2 ayatana-indicator-sound-d31be181a2c69c167bb61dbb9f1007f346920ac8.zip |
Show synchronous notification when changing the volume by scrolling over the indicator
Diffstat (limited to 'src/main.vala')
-rw-r--r-- | src/main.vala | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/main.vala b/src/main.vala index 97f311f..4da9e58 100644 --- a/src/main.vala +++ b/src/main.vala @@ -7,6 +7,8 @@ static int main (string[] args) { Intl.setlocale (LocaleCategory.ALL, ""); Intl.bindtextdomain (Config.GETTEXT_PACKAGE, Config.GNOMELOCALEDIR); + Notify.init ("indicator-sound"); + var service = new IndicatorSound.Service (); return service.run (); } |