44 lines
671 B
Bash
Executable file
44 lines
671 B
Bash
Executable file
#!/bin/bash
|
|
|
|
# Variables
|
|
config=$HOME/.config/hypr
|
|
scripts=$config/scripts
|
|
|
|
# Plugins
|
|
pypr &
|
|
|
|
# Notification Daemon
|
|
swaync &
|
|
|
|
# Wallpaper Backend
|
|
swww init
|
|
"$scripts"/wallpaper random &
|
|
|
|
# Bar
|
|
waybar &
|
|
|
|
# OSD Window
|
|
swayosd-server &
|
|
|
|
# Automounter for removable media
|
|
udiskie &
|
|
|
|
# Notify about devices connecting and disconnecting
|
|
devify &
|
|
|
|
# Idle daemon to screen lock
|
|
swayidle &
|
|
|
|
# Clipboard
|
|
wl-clip-persist --clipboard regular &
|
|
wl-paste --watch cliphist store &
|
|
|
|
# Polkit authentication
|
|
/usr/lib/polkit-gnome/polkit-gnome-authentication-agent-1 &
|
|
|
|
# Screen sharing and portals
|
|
"$scripts"/portal &
|
|
# xwaylandvideobridge &
|
|
|
|
# Audio
|
|
easyeffects --gapplication-service &
|