28 lines
692 B
Bash
Executable File
28 lines
692 B
Bash
Executable File
#!/bin/sh
|
|
|
|
# Place things in here that I would usually start from within xmonad, things
|
|
# that aren't in .xprofile
|
|
|
|
###############################################################################
|
|
# System Applications
|
|
###############################################################################
|
|
|
|
# Dunst - notifications
|
|
dunst &
|
|
|
|
# Network Manager Applet
|
|
nm-applet &
|
|
|
|
# Compostitor with special stuff
|
|
picom --experimental-backend &
|
|
|
|
# wallpaper
|
|
nitrogen --restore &
|
|
|
|
###############################################################################
|
|
# Startup Applications
|
|
###############################################################################
|
|
|
|
nextcloud &
|
|
element-desktop --hidden &
|