Advertisement
Guest User

Untitled

a guest
Mar 4th, 2018
142
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
QML 0.34 KB | None | 0 0
  1. DBusInterface {
  2.     id: dbusList
  3.     service: 'org.freedesktop.DBus'
  4.     path: '/org/freedesktop/DBus'
  5.     iface: 'org.freedesktop.DBus'
  6.     bus: DBus.SessionBus
  7. }
  8.  
  9. dbusList.typedCall('ListNames', undefined,function(result) {
  10.     sessionServices = result.filter(function(value) {
  11.         return value[0] !== ':'}
  12.     ).sort();
  13. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement