mirror of
https://github.com/brain-hackers/buildbrain
synced 2024-11-14 22:38:01 +09:00
24 lines
1.1 KiB
Bash
Executable File
24 lines
1.1 KiB
Bash
Executable File
#!/bin/bash
|
|
|
|
set -uex -o pipefail
|
|
|
|
SRC=$1
|
|
DST=$2
|
|
|
|
install -g root -o root -m 0644 $SRC/usr/lib/os-release $DST/usr/lib/os-release
|
|
install -g root -o root -m 0644 $SRC/etc/issue $DST/etc/issue
|
|
install -g root -o root -m 0644 $SRC/etc/issue.net $DST/etc/issue.net
|
|
install -g root -o root -m 0644 $SRC/etc/motd $DST/etc/motd
|
|
|
|
install -g root -o root -m 0644 $SRC/etc/X11/xorg.conf $DST/etc/X11/xorg.conf
|
|
install -g root -o root -m 0644 $SRC/etc/X11/Xsession.d/96calibrate $DST/etc/X11/Xsession.d/96calibrate
|
|
|
|
install -g root -o root -m 0644 -D $SRC/etc/xdg/weston/weston.ini $DST/etc/xdg/weston/weston.ini
|
|
|
|
install -g 1000 -o 1000 -m 0644 $SRC/home/user/.xprofile $DST/home/user/.xprofile
|
|
sudo -u#1000 -g#1000 mkdir -p $DST/home/user/.config/fcitx
|
|
install -g 1000 -o 1000 -m 0644 $SRC/home/user/.config/fcitx/profile $DST/home/user/.config/fcitx/profile
|
|
sudo -u#1000 -g#1000 mkdir -p $DST/home/user/lxterminal
|
|
install -g 1000 -o 1000 -m 0644 $SRC/home/user/lxterminal/lxterminal.conf $DST/home/user/lxterminal/lxterminal.conf
|
|
install -g root -o root -m 0644 -D $SRC/etc/jwm/system.jwmrc $DST/etc/jwm/system.jwmrc
|