Ignore:
Timestamp:
Jun 7, 2010, 3:57:04 PM (14 years ago)
Author:
josx@…
Message:

hack para poner icono de audio en lucid

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/puppet/modules/puppet-escritorio/manifests/classes/gnome.pp

    r743 r745  
    169169
    170170                habilita_servicios { "/etc/xdg/autostart": archivos => ["nm-applet.desktop","gnome-volume-control-applet.desktop"] }
     171
     172                line { "ponerloparagnome":
     173                        file => "/etc/xdg/autostart/gnome-volume-control-applet.desktop",
     174                        line => "OnlyShowIn=GNOME;",
     175                        ensure => present       
     176                }
     177                line { "quitarparaxfce":
     178                        file => "/etc/xdg/autostart/gnome-volume-control-applet.desktop",
     179                        line => "OnlyShowIn=XFCE;",
     180                        ensure => absent
     181                }
     182                line { "quitarnodisplay":
     183                        file => "/etc/xdg/autostart/gnome-volume-control-applet.desktop",
     184                        line => "NoDisplay=true",
     185                        ensure => absent
     186                }
     187
    171188            }
    172189            default: {
Note: See TracChangeset for help on using the changeset viewer.