#!/bin/sh # # Make sure xdg-desktop-portal-hyprland has access to what it needs # dbus-update-activation-environment --systemd WAYLAND_DISPLAY XDG_CURRENT_DESKTOP & # # Start waybar. # waybar & # # Start xwaylandvideobridge # xwaylandvideobridge & # ## Start wallpaper daemon and set one. # OUTPUT_1="DP-2" IMAGE_1="/mnt/internal/personal/wallpapers/wallhaven-vqlvm8.jpg" OUTPUT_2="DP-3" IMAGE_2="/mnt/internal/personal/wallpapers/wallhaven-2yl6px.jpg" function load_wallpapers() { swww img -t any --transition-bezier 0.0,0.0,1.0,1.0 --transition-duration .8 --transition-step 255 --transition-fps 60 -o $OUTPUT_1 $IMAGE_1; swww img -t any --transition-bezier 0.0,0.0,1.0,1.0 --transition-duration .8 --transition-step 255 --transition-fps 60 -o $OUTPUT_2 $IMAGE_2 } if ! swww query; then swww-daemon & fi load_wallpapers & # # Start notification daemon. # mako & # # Refresh kdeconnect connections # kdeconnect-cli --refresh & # # Clipboard manager # wl-paste --type text --watch cliphist store & wl-paste --type image --watch cliphist store & # # Start Fcitx5 # fcitx5 & # # Start the blueman applet for managing bluetooth devices # blueman-applet &