mirror of
https://github.com/danielepintore/dotfiles.git
synced 2026-06-15 20:25:13 +02:00
19 lines
572 B
Lua
19 lines
572 B
Lua
-------------------
|
|
---- AUTOSTART ----
|
|
-------------------
|
|
|
|
-- See https://wiki.hypr.land/Configuring/Basics/Autostart/
|
|
|
|
-- Autostart necessary processes (like notifications daemons, status bars, etc.)
|
|
-- Or execute your favorite apps at launch like this:
|
|
--
|
|
local utils = require("lua/utils")
|
|
|
|
hl.on("hyprland.start", function ()
|
|
hl.exec_cmd(utils.uwsm("nm-applet"))
|
|
hl.exec_cmd(utils.uwsm("noctalia"))
|
|
hl.exec_cmd(utils.uwsm("batsignal -b -e -w 30 -c 20 -d 10 -f 100"))
|
|
hl.exec_cmd(utils.uwsm("blueman-applet"))
|
|
hl.exec_cmd(utils.uwsm("udiskie --tray"))
|
|
end)
|