Archived
0
0
Fork 0
This repository has been archived on 2024-02-06. You can view files and clone it, but cannot push or open issues or pull requests.
dotfiles/.xinitrc

17 lines
319 B
Text
Raw Normal View History

2022-07-09 20:30:21 +00:00
#!/bin/sh
2022-01-10 02:08:00 +00:00
if [ -n "$DESKTOP_SESSION" ];then
eval $(gnome-keyring-daemon --start)
export SSH_AUTH_SOCK
fi
2022-01-09 05:28:34 +00:00
if which dbus-launch >/dev/null && test -z "$DBUS_SESSION_BUS_ADDRESS"; then
eval "$(dbus-launch --sh-syntax --exit-with-session)"
fi
2022-01-13 23:08:04 +00:00
pipewire &
pipewire-pulse &
2022-07-09 18:46:03 +00:00
pipewire-media-session &
2022-01-13 23:04:16 +00:00
2022-07-09 20:30:21 +00:00
exec dbus-launch $@