summaryrefslogtreecommitdiff
path: root/services
blob: ce1866a76cb632b4980ae092703e67a6667a31b3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/bin/sh
distro="$(sed '/NAME/q' /etc/os-release | cut -d'"' -f2)"

if command -v rc-service >/dev/null 2>&1; then
	# run openrc user services
	openrc -U gui
else
	# run user services manually
	pipewire&
	pipewire-pulse&
	wireplumber&
	mako&
	wlsunset -l 51.5 -L -0.1 -t 2800 -T 6000&
	waybar&
fi