~cszikszoy/do-plugins/gsession-fix

« back to all changes in this revision

Viewing changes to VolumeControl/src/VolumeUnmuteItem.cs

  • Committer: Alex Launi
  • Date: 2009-05-15 22:19:35 UTC
  • mfrom: (600.1.3 maximize-volume)
  • Revision ID: alex.launi@temple.edu-20090515221935-3spdx6mqdxul9x36
Merge Maximize volume action

Show diffs side-by-side

added added

removed removed

Lines of Context:
26
26
 
27
27
namespace VolumeControl
28
28
{
29
 
        public class VolumeUnmuteItem : Item, IRunnableItem
 
29
        public class VolumeUnmuteItem : AbstractVolumeItem
30
30
        {
31
31
                public override string Name {
32
32
                        get { return Catalog.GetString ("Unmute Volume"); }
39
39
                public override string Icon {
40
40
                        get { return "audio-volume-medium"; }
41
41
                }
42
 
                
43
 
                public void Run ()
44
 
                {
45
 
                        System.Diagnostics.Process.Start ("amixer set Master 50% > /dev/null");
 
42
 
 
43
                protected override string VolumeArgument {
 
44
                        get { return "50%"; }
46
45
                }
47
46
        }
48
47
}
 
 
b'\\ No newline at end of file'