summaryrefslogtreecommitdiff
path: root/pkgs/astal/src/launcher.lua
blob: 75d9d72548cc78e6545c96cd1e457ca39f70950c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
local App = require("astal.gtk3.app")
local lib = require("lib")

App:start({
	css = lib.src("main.css"),
	main = function()
		error("must start astal-shell first")
	end,
	client = function(req)
		req("launcher")
	end,
})