mirror of
https://github.com/GRFreire/dotfiles.git
synced 2026-01-11 21:09:38 +00:00
for some reason, the picom needs to start after the bar is already there, so added a bit of a delay on startup and restart picom (also delayed) along with qtile
27 lines
424 B
Bash
Executable File
27 lines
424 B
Bash
Executable File
#!/bin/sh
|
|
|
|
# Start polkit agent
|
|
/usr/lib/polkit-gnome/polkit-gnome-authentication-agent-1 &
|
|
|
|
# Enable numlock
|
|
/usr/bin/numlockx
|
|
|
|
# Start compositor
|
|
(sleep 1 && picom --experimental-backends) &
|
|
|
|
# Start notification server
|
|
dunst &
|
|
|
|
# Start clipboard manager
|
|
greenclip daemon &
|
|
|
|
# Display background image
|
|
nitrogen --restore
|
|
|
|
# Start network manager applet (systray)
|
|
nm-applet &
|
|
|
|
# Start volume bar
|
|
~/.config/xob/volume.sh &
|
|
|