BossBey File Manager
PHP:
8.2.28
OS:
Linux
User:
www-data
Root
/
usr
/
share
/
cinnamon
/
js
/
misc
📤 Upload
📝 New File
📁 New Folder
Close
Editing: gnomeSession.js
// -*- mode: js; js-indent-level: 4; indent-tabs-mode: nil -*- const Gio = imports.gi.Gio; var PresenceIface = '\ <node> \ <interface name="org.gnome.SessionManager.Presence"> \ <method name="SetStatus"> \ <arg type="u" direction="in"/> \ </method> \ <property name="status" type="u" access="readwrite"/> \ <signal name="StatusChanged"> \ <arg type="u" direction="out"/> \ </signal> \ </interface> \ </node>'; var PresenceStatus = { AVAILABLE: 0, INVISIBLE: 1, BUSY: 2, IDLE: 3 }; var PresenceProxy = Gio.DBusProxy.makeProxyWrapper(PresenceIface); function Presence(initCallback, cancellable) { return new PresenceProxy(Gio.DBus.session, 'org.gnome.SessionManager', '/org/gnome/SessionManager/Presence', initCallback, cancellable); } var InhibitorIface = ' \ <node> \ <interface name="org.gnome.SessionManager.Inhibitor"> \ <method name="GetFlags"> \ <arg name="flags" type="u" direction="out"/> \ </method> \ <method name="GetReason"> \ <arg name="reason" type="s" direction="out"/> \ </method> \ <method name="GetAppId"> \ <arg name="app_id" type="s" direction="out"/> \ </method> \ </interface> \ </node>'; var InhibitorProxy = Gio.DBusProxy.makeProxyWrapper(InhibitorIface); function Inhibitor(objectPath, initCallback, cancellable) { return new InhibitorProxy(Gio.DBus.session, 'org.gnome.SessionManager', objectPath, initCallback, cancellable); } var SessionManagerIface = '\ <node> \ <interface name="org.gnome.SessionManager"> \ <method name="Logout"> \ <arg type="u" direction="in" /> \ </method> \ <method name="Shutdown" /> \ <method name="CanShutdown"> \ <arg type="b" direction="out" /> \ </method> \ <method name="Inhibit"> \ <arg type="s" direction="in" /> \ <arg type="u" direction="in" /> \ <arg type="s" direction="in" /> \ <arg type="u" direction="in" /> \ <arg type="u" direction="out" /> \ </method> \ <method name="Uninhibit"> \ <arg type="u" direction="in" /> \ </method> \ <method name="IsInhibited"> \ <arg type="u" name="flags" direction="in"/> \ <arg type="b" name="is_inhibited" direction="out"/> \ </method> \ <method name="GetInhibitors"> \ <arg type="ao" name="inhibitors" direction="out"/> \ </method> \ <signal name="InhibitorAdded"> \ <arg type="o" name="id" direction="out"/> \ </signal> \ <signal name="InhibitorRemoved"> \ <arg type="o" name="id" direction="out"/> \ </signal> \ <property name="InhibitedActions" type="u" access="read"/> \ </interface> \ </node>'; var SessionManagerProxy = Gio.DBusProxy.makeProxyWrapper(SessionManagerIface); function SessionManager(initCallback, cancellable) { return new SessionManagerProxy(Gio.DBus.session, 'org.gnome.SessionManager', '/org/gnome/SessionManager', initCallback, cancellable); }
Save
Cancel