2022-03-17 23:48:16 +01:00
|
|
|
#!/bin/sh
|
|
|
|
|
|
|
|
function run {
|
|
|
|
if ! pgrep $1 > /dev/null ;
|
|
|
|
then
|
|
|
|
$@&
|
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
|
|
|
#feh --bg-scale /usr/share/endeavouros/backgrounds/endeavouros-wallpaper.png
|
|
|
|
|
2022-03-25 17:10:57 +01:00
|
|
|
rm ~/.cache/workspaces
|
2022-03-17 23:48:16 +01:00
|
|
|
nitrogen --save --set-zoom-fill ~/Pictures/Wallpapers/default.jpg
|
2022-04-12 01:13:05 +02:00
|
|
|
run picom --experimental-backends -b # --vsync should prevent screen tearing on most setups if needed
|
2022-03-17 23:48:16 +01:00
|
|
|
|
2022-03-25 17:10:57 +01:00
|
|
|
eww -c ~/.config/eww/bar/ close-all
|
|
|
|
eww -c ~/.config/eww/bar/ open bar
|
|
|
|
|
2022-04-12 01:13:05 +02:00
|
|
|
keynav daemonize
|
|
|
|
|
2022-03-17 23:48:16 +01:00
|
|
|
/usr/lib/polkit-gnome/polkit-gnome-authentication-agent-1 & disown # start polkit agent from GNOME
|