You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
437 B
25 lines
437 B
#!/bin/bash
|
|
|
|
CWD=$(dirname $(readlink -f $0))
|
|
|
|
NAME=fluxbox
|
|
VERSION=1.3.5
|
|
|
|
# first install stock version
|
|
|
|
apt-get update
|
|
apt-get install --no-install-recommends --yes \
|
|
$NAME \
|
|
feh \
|
|
compton \
|
|
volumeicon-alsa \
|
|
murrine-themes \
|
|
libnotify4 \
|
|
scrot
|
|
|
|
. ./cleanup
|
|
|
|
(cd /rootcopy && cp --parents -afr * /)
|
|
chown live.users /home/live
|
|
chown -R live.users /home/live/.gtkrc-2.0
|
|
chown -R live.users /home/live/.config
|