Fixs
This commit is contained in:
parent
6f8acf2168
commit
bf06134e52
6 changed files with 196 additions and 0 deletions
42
home/.config/awesome/configurations/autostart
Normal file
42
home/.config/awesome/configurations/autostart
Normal file
|
@ -0,0 +1,42 @@
|
|||
#!/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 📦" &
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue