mirror of
https://github.com/Nickiel12/nicks-nix-config.git
synced 2024-11-23 05:09:32 -08:00
18 lines
268 B
Lua
18 lines
268 B
Lua
|
local p = require 'dbus_proxy'
|
||
|
|
||
|
local dbus = {}
|
||
|
|
||
|
dbus.proxy = p.Proxy:new(
|
||
|
{
|
||
|
bus = p.Bus.SESSION,
|
||
|
name = "org.awesome.galaxymenu",
|
||
|
interface = "org.awsome.galaxymenu",
|
||
|
path = "/org/awsome/galaxymenu/Main"
|
||
|
}
|
||
|
)
|
||
|
|
||
|
|
||
|
dbus.callback = function () {
|
||
|
|
||
|
}
|