dotfiles/.config/qtile/autostart.sh
Guilherme Rugai Freire 7fb79ca781
qtile/picom: fix bar rounded corner issue
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
2021-08-22 01:54:51 -03:00

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 &