luca-awesome-dotfiles/home/.config/awesome/configurations/autostart
2023-03-10 23:53:57 +01:00

42 lines
812 B
Bash

#!/bin/sh
autostart="nm-applet xfce4-power-manager"
for program in $autostart; do
pidof -s "$program" || setsid -f "$program"
done >/dev/null 2>&1
# Applets :
#nm-applet &
#blueman-applet &
#volumeicon &
#xfce4-power-manager &
# Polkit :
/usr/lib/polkit-gnome/polkit-gnome-authentication-agent-1 &
# Keybord auto-repeat :
xset r rate 300 50 &
# Clipordmanager :
clipmenud &
# Wallpaper :
nitrogen --restore &
# conky
#killall conky &
#conky -c ~/.config/conky/Gotham/Gotham.conf &
#conky -c ~/.config/conky/Gotham/Gotham2.conf &
# Sevices info :
#echo "false" > /tmp/blue_light_state
# Compositor :
#autostart="picom"
#for program in $autostart; do
# pidof -s "$program" || setsid -f "$program"
#done >/dev/null 2>&1
# Updates :
#notify-send -t 8000 "You have $(checkupdates | wc -l) update 📦" &