diff options
author | Lars Uebernickel <lars.uebernickel@canonical.com> | 2013-03-22 16:24:06 -0400 |
---|---|---|
committer | Lars Uebernickel <lars.uebernickel@canonical.com> | 2013-03-22 16:24:06 -0400 |
commit | 92c98f341c6b5600d4b5fae8753326c866e40860 (patch) | |
tree | 6335f180e06be2f1b4c7dc7f1a6ac907e35d46cc /src/main.vala | |
parent | ea30986e03e54ee650a1cca610904de9f4d0f745 (diff) | |
download | ayatana-indicator-sound-92c98f341c6b5600d4b5fae8753326c866e40860.tar.gz ayatana-indicator-sound-92c98f341c6b5600d4b5fae8753326c866e40860.tar.bz2 ayatana-indicator-sound-92c98f341c6b5600d4b5fae8753326c866e40860.zip |
Add service that adheres to the new indicator protocol
This is the one that gets built now. It doesn't do anything interesting yet,
though.
Diffstat (limited to 'src/main.vala')
-rw-r--r-- | src/main.vala | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/main.vala b/src/main.vala new file mode 100644 index 0000000..1ec7d2c --- /dev/null +++ b/src/main.vala @@ -0,0 +1,5 @@ + +static int main (string[] args) { + var service = new IndicatorSound.Service (); + return service.run (); +} |