- Merge archiso profiles - Merge package lists - Merge full/minimal sections in build_linux - Remove minimal boot entries - Remove minimal from build-ufd config and scripts - Update Linux README.md Addresses #207
22 lines
458 B
Bash
Executable file
22 lines
458 B
Bash
Executable file
#!/bin/env bash
|
|
#
|
|
## Start desktop apps based on WM
|
|
|
|
# Numlock
|
|
if ! compgen -G "/sys/class/power_supply/BAT*" >/dev/null; then
|
|
numlockx &
|
|
fi
|
|
|
|
# Start common apps
|
|
#picom --backend xrender --xrender-sync --xrender-sync-fence &
|
|
picom --daemon || picom --daemon --no-vsync
|
|
sleep 1s
|
|
x0vncserver -display :0 -passwordfile $HOME/.vnc/passwd -AlwaysShared &
|
|
conky &
|
|
volumeicon &
|
|
|
|
# Start WM specific apps
|
|
openbox --restart
|
|
tint2 &
|
|
cbatticon --hide-notification &
|
|
|