forked from ahurac/dotfiles
16 lines
331 B
Bash
Executable file
16 lines
331 B
Bash
Executable file
#!/bin/sh -x
|
|
|
|
# Directory for SSH control sockets
|
|
mkdir -p "${XDG_RUNTIME_DIR}/ssh" &
|
|
|
|
# Update DBus environment variables
|
|
dbus-update-activation-environment WAYLAND_DISPLAY XDG_CURRENT_DESKTOP
|
|
|
|
# Start the XDG desktop portal
|
|
/usr/lib/xdg-desktop-portal-hyprland &
|
|
|
|
# Start PipeWire
|
|
sleep 1
|
|
artix-pipewire-launcher restart &
|
|
|
|
wait
|