mirror of
https://github.com/sahinakkaya/dotfiles.git
synced 2024-12-23 07:39:36 +01:00
16 lines
426 B
Bash
16 lines
426 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
function run {
|
||
|
if ! pgrep $1 > /dev/null ;
|
||
|
then
|
||
|
$@&
|
||
|
fi
|
||
|
}
|
||
|
|
||
|
#feh --bg-scale /usr/share/endeavouros/backgrounds/endeavouros-wallpaper.png
|
||
|
|
||
|
nitrogen --save --set-zoom-fill ~/Pictures/Wallpapers/default.jpg
|
||
|
run picom & disown # --experimental-backends --vsync should prevent screen tearing on most setups if needed
|
||
|
|
||
|
/usr/lib/polkit-gnome/polkit-gnome-authentication-agent-1 & disown # start polkit agent from GNOME
|