mirror of
https://github.com/sahinakkaya/dotfiles.git
synced 2024-12-23 15:49:40 +01:00
20 lines
521 B
Bash
Executable File
20 lines
521 B
Bash
Executable File
#!/bin/sh
|
|
|
|
function run {
|
|
if ! pgrep $1 > /dev/null ;
|
|
then
|
|
$@&
|
|
fi
|
|
}
|
|
|
|
#feh --bg-scale /usr/share/endeavouros/backgrounds/endeavouros-wallpaper.png
|
|
|
|
rm ~/.cache/workspaces
|
|
nitrogen --save --set-zoom-fill ~/Pictures/Wallpapers/default.jpg
|
|
run picom & disown # --experimental-backends --vsync should prevent screen tearing on most setups if needed
|
|
|
|
eww -c ~/.config/eww/bar/ close-all
|
|
eww -c ~/.config/eww/bar/ open bar
|
|
|
|
/usr/lib/polkit-gnome/polkit-gnome-authentication-agent-1 & disown # start polkit agent from GNOME
|