2023-10-05 10:09:04 +00:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
|
2024-01-01 08:54:32 -01:00
|
|
|
## Copyright (C) 2020-2024 Aditya Shakya <adi1090x@gmail.com>
|
2023-10-05 10:09:04 +00:00
|
|
|
|
|
|
|
## Kill if already running
|
|
|
|
killall -9 xfsettingsd picom polybar mpd dunst ksuperkey xfce4-power-manager
|
|
|
|
|
|
|
|
## Restore Wallpaper
|
|
|
|
nitrogen --restore
|
|
|
|
|
|
|
|
## xfce4-settings daemon
|
|
|
|
xfsettingsd &
|
|
|
|
|
|
|
|
## polkit agent
|
|
|
|
if [[ ! `pidof xfce-polkit` ]]; then
|
|
|
|
/usr/lib/xfce-polkit/xfce-polkit &
|
|
|
|
fi
|
|
|
|
|
|
|
|
## Enable power management
|
|
|
|
xfce4-power-manager &
|
|
|
|
|
|
|
|
## Start Compositing Manager
|
|
|
|
exec picom &
|
|
|
|
|
|
|
|
## Launch Polybar or Tint2
|
|
|
|
bash ~/.config/openbox/themes/launch-bar.sh
|
|
|
|
|
|
|
|
## Notification Daemon
|
|
|
|
exec dunst &
|
|
|
|
|
|
|
|
## Start Music Player Daemon
|
|
|
|
exec mpd &
|
|
|
|
|
|
|
|
## Launch Plank
|
|
|
|
exec plank &
|
|
|
|
|
|
|
|
## Thunar Daemon
|
|
|
|
exec thunar --daemon &
|
|
|
|
|
|
|
|
## Enable Super Keys For Menu
|
|
|
|
ksuperkey -e 'Super_L=Alt_L|F1' &
|
|
|
|
ksuperkey -e 'Super_R=Alt_L|F1' &
|
|
|
|
|
|
|
|
## These applets are specifically for tint2 panel.
|
|
|
|
## If you're using tint2 as panel, Uncomment these applets.
|
|
|
|
|
|
|
|
## User Friendly Network Menu
|
|
|
|
#nm-applet --indicator &
|
|
|
|
|
|
|
|
## User Friendly Bluetooth Menu
|
|
|
|
#blueman-applet &
|
|
|
|
|
|
|
|
## Welcome-App-Run-Once
|
|
|
|
archcraft-welcome &
|
|
|
|
sed -i -e '/## Welcome-App-Run-Once/Q' "$HOME"/.config/openbox/autostart
|