Help for this page

Select Code to Download


  1. or download this
    #!/usr/bin/python
    import dbus
    ...
    cookie = dev.Inhibit('Nautilus', 'Copying files')
    #do something 
    dev.UnInhibit(cookie)
    
  2. or download this
    use Net::DBus;
    
    ...
    $dev->UnInhibit($cookie);
    
    1;