mirror of
https://gitgud.io/Melon__Bread/gnu-plus-dotfiles.git
synced 2025-02-17 18:03:08 -05:00
28 lines
557 B
Bash
Executable File
28 lines
557 B
Bash
Executable File
#!/bin/bash
|
|
|
|
function run {
|
|
if ! pgrep $1 ;
|
|
then
|
|
$@&
|
|
fi
|
|
}
|
|
|
|
|
|
|
|
#starting utility applications at boot time
|
|
lxsession &
|
|
run nm-applet &
|
|
#run pamac-tray &
|
|
numlockx on &
|
|
blueman-applet &
|
|
#flameshot &
|
|
#picom --config $HOME/.config/picom/picom.conf &
|
|
picom --config .config/picom/picom-blur.conf --experimental-backends &
|
|
#/usr/lib/polkit-gnome/polkit-gnome-authentication-agent-1 &
|
|
dunst &
|
|
feh --randomize --bg-fill ~/Pictures/Wallpapers/*
|
|
#starting user applications at boot time
|
|
run volumeicon &
|
|
#nitrogen --random --set-zoom-fill &
|
|
run caffeine -a &
|