mirror of
https://github.com/ItsDrike/dotfiles.git
synced 2024-11-10 02:39:40 +00:00
Run dunst and swayidle as systemd user services on wm-ready
This commit is contained in:
parent
7ae0ced2c0
commit
9e042a78a7
|
@ -20,8 +20,6 @@ exec-once = /usr/lib/polkit-gnome/polkit-gnome-authentication-agent-1
|
||||||
exec-once = setbg
|
exec-once = setbg
|
||||||
exec-once = sleep 2 && eww open bar0
|
exec-once = sleep 2 && eww open bar0
|
||||||
#exec-once = eww open bar1
|
#exec-once = eww open bar1
|
||||||
exec-once = dunst
|
|
||||||
exec-once = swayidle
|
|
||||||
|
|
||||||
exec-once = aa-notify -p
|
exec-once = aa-notify -p
|
||||||
exec-once = udiskie -A -T
|
exec-once = udiskie -A -T
|
||||||
|
|
10
home/.config/systemd/user/dunst.service
Normal file
10
home/.config/systemd/user/dunst.service
Normal file
|
@ -0,0 +1,10 @@
|
||||||
|
[Unit]
|
||||||
|
Description="Dunst daemon"
|
||||||
|
PartOf=graphical-session.target
|
||||||
|
|
||||||
|
[Service]
|
||||||
|
ExecStart=/usr/bin/dunst
|
||||||
|
Restart=on-failure
|
||||||
|
|
||||||
|
[Install]
|
||||||
|
WantedBy=wm-ready.target
|
10
home/.config/systemd/user/swayidle.service
Normal file
10
home/.config/systemd/user/swayidle.service
Normal file
|
@ -0,0 +1,10 @@
|
||||||
|
[Unit]
|
||||||
|
Description="Idle management daemon"
|
||||||
|
PartOf=graphical-session.target
|
||||||
|
|
||||||
|
[Service]
|
||||||
|
ExecStart=/usr/bin/swayidle
|
||||||
|
Restart=on-failure
|
||||||
|
|
||||||
|
[Install]
|
||||||
|
WantedBy=wm-ready.target
|
1
home/.config/systemd/user/wm-ready.target.wants/dunst.service
Symbolic link
1
home/.config/systemd/user/wm-ready.target.wants/dunst.service
Symbolic link
|
@ -0,0 +1 @@
|
||||||
|
/home/itsdrike/.config/systemd/user/dunst.service
|
1
home/.config/systemd/user/wm-ready.target.wants/swayidle.service
Symbolic link
1
home/.config/systemd/user/wm-ready.target.wants/swayidle.service
Symbolic link
|
@ -0,0 +1 @@
|
||||||
|
/home/itsdrike/.config/systemd/user/swayidle.service
|
Loading…
Reference in a new issue