mirror of
https://github.imc.re/void-land/hyprland-void-dots
synced 2025-04-25 05:16:55 +02:00
fix: startup apps
This commit is contained in:
parent
bfc579c07e
commit
3a9f968e18
11 changed files with 12 additions and 19 deletions
|
@ -2,24 +2,17 @@
|
|||
# Autostart
|
||||
# -----------------------------------------------------
|
||||
|
||||
# background services :
|
||||
exec-once = dbus-update-activation-environment --all &
|
||||
exec-once = ~/.config/scripts/pipewire.sh &
|
||||
exec-once = ~/.config/hypr/scripts/keyring-launch.sh &
|
||||
exec-once = ~/.config/hypr/scripts/startup/pipewire.sh &
|
||||
exec-once = ~/.config/hypr/scripts/startup/keyring.sh &
|
||||
exec-once = wl-paste --watch cliphist store &
|
||||
exec-once = swayosd-server &
|
||||
|
||||
exec-once = ~/.config/hypr/scripts/startup/dunst.sh &
|
||||
exec-once = ~/.config/hypr/scripts/wallpaper/wallpaper-daemon.sh &
|
||||
exec-once = ~/.config/hypr/scripts/startup/waybar.sh &
|
||||
|
||||
# exec-once = avizo-service &
|
||||
|
||||
# wallpaper :
|
||||
exec-once = ~/.config/hypr/scripts/wallpaper-daemon.sh &
|
||||
|
||||
# status bar :
|
||||
exec-once = ~/.config/hypr/scripts/waybar-launch.sh &
|
||||
exec-once = ~/.config/hypr/scripts/dunst-launch.sh &
|
||||
# exec-once = eww daemon && eww open bar
|
||||
# exec-once = swayidle -w timeout 300 'gtklock' before-sleep 'gtklock' &
|
||||
# exec-once = swayidle -w timeout 450 'pidof java || systemctl suspend' & # dont sleep if playing minecraft, else nvidia will fuck up
|
||||
|
||||
# cursor :
|
||||
# exec-once = hyprctl setcursor Bibata-Modern-Ice
|
||||
# exec-once = swayidle -w timeout 450 'pidof java || systemctl suspend' & # dont sleep if playing minecraft, else nvidia will fuck up
|
|
@ -31,8 +31,8 @@ $screenshot = $SCRIPT_PATH/hyprshot.sh
|
|||
$pavucontrol = $SCRIPT_PATH/pavucontrol-launch.sh
|
||||
$nekoray = $SCRIPT_PATH/nekoray-launch.sh
|
||||
$network_manager = $SCRIPT_PATH/nmtui-launch.sh
|
||||
$random_wallpaper = $SCRIPT_PATH/wallpaper-daemon.sh
|
||||
$kill_wallpaper_daemon = $SCRIPT_PATH/kill-wallpaper-daemon.sh
|
||||
$random_wallpaper = $SCRIPT_PATH/wallpaper/wallpaper-daemon.sh
|
||||
$kill_wallpaper_daemon = $SCRIPT_PATH/wallpaper/kill-daemon.sh
|
||||
$waybar_toggle = $SCRIPT_PATH/waybar-toggle.sh
|
||||
$rofi_menu = $SCRIPT_PATH/rofi-launch.sh d
|
||||
$rofi_powermenu = $SCRIPT_PATH/rofi-launch.sh p
|
||||
|
|
|
@ -12,7 +12,7 @@ case $WALLPAPER_DAEMON in
|
|||
pkill -f swww-daemon
|
||||
pkill -f mpvpaper
|
||||
|
||||
exec $HOME/.config/hypr/scripts/swaybg-random.sh
|
||||
exec ~/.config/hypr/scripts/wallpaper/swaybg-random.sh
|
||||
;;
|
||||
"swww")
|
||||
pkill -f swaybg
|
||||
|
@ -22,13 +22,13 @@ case $WALLPAPER_DAEMON in
|
|||
swww init
|
||||
fi
|
||||
|
||||
exec $HOME/.config/hypr/scripts/swww-random.sh
|
||||
exec ~/.config/hypr/scripts/wallpaper/swww-random.sh
|
||||
;;
|
||||
"mpvpaper")
|
||||
pkill -f swaybg
|
||||
pkill -f swww-daemon
|
||||
|
||||
exec $HOME/.config/hypr/scripts/mpvpaper-random.sh
|
||||
exec ~/.config/hypr/scripts/wallpaper/mpvpaper-random.sh
|
||||
;;
|
||||
*)
|
||||
dunstify "Unknown value for WALLPAPER_DAEMON: $WALLPAPER_DAEMON"
|
Loading…
Add table
Reference in a new issue