eufon/rc.fnl

17 lines
543 B
Plaintext
Raw Normal View History

2022-04-26 20:14:46 +00:00
(kiwmi:on "output" #(doto $1 (: :set_mode 360 720 0)))
2022-04-26 21:13:51 +00:00
(kiwmi:on "view"
(fn [view]
(let [(w h) (: (kiwmi:active_output) :size)]
(view:resize w h)
(view:move 0 0))
(view:focus)
(view:show)
(view:on "request_move" #(view:imove))
(view:on "request_resize" (fn [ev] (view:iresize ev.edges)))))
2022-04-26 20:14:46 +00:00
2022-04-26 21:13:37 +00:00
;(kiwmi:spawn "swaybg -c '#ff00ff'")
(kiwmi:spawn "lua -l fennelrun modeline.fnl")
2022-04-26 22:01:30 +00:00
(kiwmi:spawn "lua -l fennelrun saturn/main.fnl")
2022-04-26 20:14:46 +00:00
(kiwmi:spawn "foot")