2019-12-23 03:45:41 +00:00
|
|
|
#!/usr/bin/env sh
|
|
|
|
|
2020-04-29 15:58:14 +00:00
|
|
|
# Activate the LXSessions for mounting external filesystems.
|
|
|
|
# This is pretty much only used for accessing external filesystems
|
|
|
|
# from Thunar as far as practical application is concerned.
|
2019-12-23 03:45:41 +00:00
|
|
|
/usr/bin/lxsession &
|
|
|
|
|
2020-04-29 15:58:14 +00:00
|
|
|
# Run the compositor and enable more advanced graphical effects.
|
2019-12-23 03:45:41 +00:00
|
|
|
picom &
|
|
|
|
|
2020-04-29 15:58:14 +00:00
|
|
|
# Activate the notification server.
|
2019-12-23 03:45:41 +00:00
|
|
|
dunst &
|
|
|
|
|
2020-04-29 15:58:14 +00:00
|
|
|
# Boot the mount filesystem helper.
|
2019-12-23 03:45:41 +00:00
|
|
|
udiskie &
|
|
|
|
|
2020-04-29 15:58:14 +00:00
|
|
|
# Run the hotkey daemon.
|
|
|
|
sxhkd &
|
|
|
|
|
|
|
|
# Launch the status bar.
|
|
|
|
$HOME/.config/polybar/launch.sh &
|
|
|
|
|
2020-05-01 13:32:25 +00:00
|
|
|
# Reload the color scheme.
|
2020-04-29 15:58:14 +00:00
|
|
|
wal -R &
|
|
|
|
|
2020-05-01 13:32:25 +00:00
|
|
|
# Displaying the wallpaper in case the Pywal theme does not have a wallpaper.
|
|
|
|
$HOME/.fehbg &
|
|
|
|
|