File tree 7 files changed +30
-2
lines changed
7 files changed +30
-2
lines changed Original file line number Diff line number Diff line change @@ -7,5 +7,3 @@ cd "$ScriptDir"
7
7
cp -vfasT " $ScriptDir /config/" " $HOME /"
8
8
9
9
mkdir -p " $HOME /temporary/" {downloads,other/desktop}
10
-
11
- ./other/x11_input_daemon/build.sh
Original file line number Diff line number Diff line change
1
+ #! /usr/bin/env bash
2
+ set -euo pipefail; shopt -s nullglob
3
+ cd " $( dirname " ${BASH_SOURCE[0]} " ) " > /dev/null 2>&1
4
+
5
+ Folders=(container locale mime tmpfiles tty x11_input_daemon)
6
+ for Folder in " ${Folders[@]} "
7
+ do
8
+ " $Folder /install.sh" || true
9
+ done
Original file line number Diff line number Diff line change 1
1
#! /usr/bin/env bash
2
2
set -euo pipefail; shopt -s nullglob
3
+ [ " $( whoami) " = root ] || exec sudo -p " $( printf " This command needs to run as root.\nPassword: " ) " $0 " $@ "
4
+
3
5
cd " $( dirname " ${BASH_SOURCE[0]} " ) " > /dev/null 2>&1
4
6
5
7
cp " en_SE" " /usr/share/i18n/locales"
Original file line number Diff line number Diff line change
1
+ #! /usr/bin/env bash
2
+ set -euo pipefail; shopt -s nullglob
3
+ [ " $( whoami) " = root ] || exec sudo -p " $( printf " This command needs to run as root.\nPassword: " ) " $0 " $@ "
4
+
5
+ cd " $( dirname " ${BASH_SOURCE[0]} " ) " > /dev/null 2>&1
6
+
7
+ systemctl mask tmp.mount
8
+
9
+ mkdir -p /etc/tmpfiles.d
10
+ cp tmp.conf /etc/tmpfiles.d
Original file line number Diff line number Diff line change
1
+ D! /tmp 1777 root root 2d
2
+ D /var/tmp 1777 root root 10d
Original file line number Diff line number Diff line change 1
1
#! /usr/bin/env bash
2
2
set -euo pipefail; shopt -s nullglob
3
+ [ " $( whoami) " = root ] || exec sudo -p " $( printf " This command needs to run as root.\nPassword: " ) " $0 " $@ "
4
+
3
5
cd " $( dirname " ${BASH_SOURCE[0]} " ) " > /dev/null 2>&1
4
6
5
7
mkdir -p /usr/local/share/kbd/keymaps
Original file line number Diff line number Diff line change
1
+ #! /usr/bin/env bash
2
+ set -euo pipefail; shopt -s nullglob
3
+ cd " $( dirname " ${BASH_SOURCE[0]} " ) " > /dev/null 2>&1
4
+
5
+ ./build.sh
You can’t perform that action at this time.
0 commit comments