Merge branch 'main' of github.com:telent/slab
This commit is contained in:
commit
c0abf7f2e5
@ -3,6 +3,14 @@
|
|||||||
(local dbus (require :dbus_proxy))
|
(local dbus (require :dbus_proxy))
|
||||||
(local inspect (require :inspect))
|
(local inspect (require :inspect))
|
||||||
|
|
||||||
|
(local dbus-service-attrs
|
||||||
|
{
|
||||||
|
:bus dbus.Bus.SESSION
|
||||||
|
:name "net.telent.saturn"
|
||||||
|
:interface "net.telent.saturn"
|
||||||
|
:path "/net/telent/saturn"
|
||||||
|
})
|
||||||
|
|
||||||
(local bus (dbus.Proxy:new
|
(local bus (dbus.Proxy:new
|
||||||
{
|
{
|
||||||
:bus dbus.Bus.SESSION
|
:bus dbus.Bus.SESSION
|
||||||
@ -25,14 +33,24 @@
|
|||||||
|
|
||||||
|
|
||||||
(local DBUS_NAME_FLAG_DO_NOT_QUEUE 4)
|
(local DBUS_NAME_FLAG_DO_NOT_QUEUE 4)
|
||||||
(let [ret (bus:RequestName "net.telent.saturn" DBUS_NAME_FLAG_DO_NOT_QUEUE)]
|
(local DBUS_REQUEST_NAME_REPLY_PRIMARY_OWNER 1)
|
||||||
(if (or (= ret 1) (= ret 4))
|
(local DBUS_REQUEST_NAME_REPLY_IN_QUEUE 2)
|
||||||
|
(local DBUS_REQUEST_NAME_REPLY_EXISTS 3)
|
||||||
|
(local DBUS_REQUEST_NAME_REPLY_ALREADY_OWNER 4)
|
||||||
|
|
||||||
|
(let [ret (bus:RequestName dbus-service-attrs.name
|
||||||
|
DBUS_NAME_FLAG_DO_NOT_QUEUE)]
|
||||||
|
(match ret
|
||||||
|
DBUS_REQUEST_NAME_REPLY_PRIMARY_OWNER
|
||||||
true
|
true
|
||||||
(= ret 2)
|
DBUS_REQUEST_NAME_REPLY_ALREADY_OWNER
|
||||||
|
true
|
||||||
|
DBUS_REQUEST_NAME_REPLY_IN_QUEUE
|
||||||
(error "unexpected DBUS_REQUEST_NAME_REPLY_IN_QUEUE")
|
(error "unexpected DBUS_REQUEST_NAME_REPLY_IN_QUEUE")
|
||||||
(= ret 3)
|
DBUS_REQUEST_NAME_REPLY_EXISTS
|
||||||
(do
|
;; Show the currently running instance
|
||||||
(print "already running")
|
(let [saturn (dbus.Proxy:new dbus-service-attrs)]
|
||||||
|
(saturn:SetVisible true)
|
||||||
(os.exit 0))))
|
(os.exit 0))))
|
||||||
|
|
||||||
|
|
||||||
@ -67,12 +85,12 @@
|
|||||||
(fn read-desktop-file [f]
|
(fn read-desktop-file [f]
|
||||||
(let [parsed (inifile.parse f)
|
(let [parsed (inifile.parse f)
|
||||||
vals (. parsed "Desktop Entry")]
|
vals (. parsed "Desktop Entry")]
|
||||||
(when vals.Icon (tset vals "IconImage" (find-icon vals.Icon)))
|
(when vals.Icon
|
||||||
|
(tset vals "IconImage" (find-icon vals.Icon)))
|
||||||
vals))
|
vals))
|
||||||
|
|
||||||
(fn all-apps []
|
(fn all-apps []
|
||||||
(var apps-table {})
|
(var apps-table {})
|
||||||
;; for i in ${XDG_DATA_DIRS//:/ /} ; do ls $i/applications/*.desktop ;done
|
|
||||||
(each [path (string.gmatch (os.getenv "XDG_DATA_DIRS") "[^:]*")]
|
(each [path (string.gmatch (os.getenv "XDG_DATA_DIRS") "[^:]*")]
|
||||||
(let [apps (.. path "/applications/")]
|
(let [apps (.. path "/applications/")]
|
||||||
(when (lfs.attributes apps)
|
(when (lfs.attributes apps)
|
||||||
@ -85,7 +103,8 @@
|
|||||||
|
|
||||||
;; Exec entries in desktop files may contain %u %f and other characters
|
;; Exec entries in desktop files may contain %u %f and other characters
|
||||||
;; in which the launcher is supposed to interpolate filenames/urls etc.
|
;; in which the launcher is supposed to interpolate filenames/urls etc.
|
||||||
;; We don't
|
;; We don't afford the user any way to pick filenames, but we do need
|
||||||
|
;; to remove the placeholders.
|
||||||
(fn parse-percents [str]
|
(fn parse-percents [str]
|
||||||
(str:gsub "%%(.)" (fn [c] (if (= c "%") "%" ""))))
|
(str:gsub "%%(.)" (fn [c] (if (= c "%") "%" ""))))
|
||||||
|
|
||||||
@ -98,7 +117,7 @@
|
|||||||
(posix.execp "/usr/bin/env" vec)))))
|
(posix.execp "/usr/bin/env" vec)))))
|
||||||
|
|
||||||
(fn launch [app]
|
(fn launch [app]
|
||||||
; (print (if app.DBusActivatable "dbus" "not dbus"))
|
;; FIXME check app.DBusActivatable and do DBus launch if true
|
||||||
(let [cmd (parse-percents app.Exec)]
|
(let [cmd (parse-percents app.Exec)]
|
||||||
(if app.Terminal
|
(if app.Terminal
|
||||||
(spawn-async ["kitty" cmd])
|
(spawn-async ["kitty" cmd])
|
||||||
@ -116,8 +135,8 @@
|
|||||||
|
|
||||||
|
|
||||||
(fn handle-dbus-method-call [conn sender path interface method params invocation]
|
(fn handle-dbus-method-call [conn sender path interface method params invocation]
|
||||||
(when (and (= path "/net/telent/saturn")
|
(when (and (= path dbus-service-attrs.path)
|
||||||
(= interface "net.telent.saturn")
|
(= interface dbus-service-attrs.interface)
|
||||||
(= method "SetVisible"))
|
(= method "SetVisible"))
|
||||||
(let [[value] (dbus.variant.strip params)]
|
(let [[value] (dbus.variant.strip params)]
|
||||||
(if value (window:show_all) (window:hide))
|
(if value (window:show_all) (window:hide))
|
||||||
@ -125,15 +144,15 @@
|
|||||||
|
|
||||||
(Gio.DBusConnection.register_object
|
(Gio.DBusConnection.register_object
|
||||||
bus.connection
|
bus.connection
|
||||||
"/net/telent/saturn"
|
dbus-service-attrs.path
|
||||||
interface-info
|
interface-info
|
||||||
(lgi.GObject.Closure handle-dbus-method-call)
|
(lgi.GObject.Closure handle-dbus-method-call)
|
||||||
(lgi.GObject.Closure (fn [a] (print "get")))
|
(lgi.GObject.Closure (fn [a] (print "get")))
|
||||||
(lgi.GObject.Closure (fn [a] (print "set"))))
|
(lgi.GObject.Closure (fn [a] (print "set"))))
|
||||||
|
|
||||||
(local grid-columns 4)
|
|
||||||
|
|
||||||
(let [grid (Gtk.FlowBox {
|
(let [grid (Gtk.FlowBox {
|
||||||
|
:orientation Gtk.Orientation.HORIZONTAL
|
||||||
|
:valign Gtk.Align.START
|
||||||
:column_spacing 2
|
:column_spacing 2
|
||||||
:row_spacing 5
|
:row_spacing 5
|
||||||
})
|
})
|
||||||
|
Loading…
Reference in New Issue
Block a user