mirror of
https://github.com/foo-dogsquared/dotfiles.git
synced 2025-01-31 10:57:58 +00:00
33f1588474
A big revision for sure. It's the result of tweaking during this outbreak.
26 lines
532 B
Bash
26 lines
532 B
Bash
#!/usr/bin/env sh
|
|
|
|
# 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.
|
|
/usr/bin/lxsession &
|
|
|
|
# Run the compositor and enable more advanced graphical effects.
|
|
picom &
|
|
|
|
# Activate the notification server.
|
|
dunst &
|
|
|
|
# Boot the mount filesystem helper.
|
|
udiskie &
|
|
|
|
# Run the hotkey daemon.
|
|
sxhkd &
|
|
|
|
# Launch the status bar.
|
|
$HOME/.config/polybar/launch.sh &
|
|
|
|
# Run wal with the recent theme.
|
|
wal -R &
|
|
|