mirror of
https://github.com/Nickiel12/nicks-nix-config.git
synced 2024-11-22 20:59:32 -08:00
17 lines
268 B
Lua
17 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 () {
|
|
|
|
}
|