mirror of
https://github.com/GRFreire/dotfiles.git
synced 2026-01-10 04:19:38 +00:00
20 lines
318 B
Bash
Executable File
20 lines
318 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
|
|
picom --experimental-backends &
|
|
|
|
# Start notification server
|
|
dunst &
|
|
|
|
# Display background image
|
|
nitrogen --restore
|
|
|
|
# Start network manager applet (systray)
|
|
nm-applet &
|