blob: ba259eebf8868957505e5f5d877c11eaca1119b9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
#!/bin/bash
function run {
if ! pgrep $1 ;
then
$@&
fi
}
dunst &
#starting utility applications at boot time
picom --vsync &
/usr/libexec/polkit-gnome-autentication-agent-1 &
#/usr/lib/xfce4/notifyd/xfce4-notifyd &
feh --bg-scale ~/.config/qtile/assets/redcore.png &
|