OSDN Git Service

3e7ae9875c7e86b5fba15994632038beda4b5e79
[alterlinux/alterlinux-channels.git] / sunset.add / config.any
1 #!/usr/bin/env bash
2 #
3 # Yamada Hayao
4 # Twitter: @Hayao0819
5 # Email  : hayao@fascode.net
6 #
7 # (c) 2019-2020 Fascode Network.
8 #
9 # config
10 #
11 # Overwrites the first to read and set the build script
12 # This configuration file follows the bash syntax.
13 #
14
15 # OS name used for startup screen, etc.
16 os_name="Sunset OS"
17
18 # OS name used for the name of the image file.
19 iso_name=archlinux
20
21 # Image file label
22 iso_label="SUN_$(date +%Y%m)"
23
24 # Image file creator information
25 iso_publisher="Sunset OS <https://fascode.net>"
26
27 # Image file name (not file name)
28 iso_application="Sunset OS Live/Rescue CD"
29
30 # Image file version
31 iso_version=$(date +%Y.%m.%d)
32
33 # Directory name used for installation
34 install_dir=sunset
35
36 # Set to true to enable plymouth.(-b)
37 boot_splash=false
38
39 # See the `mksquashfs` help for details on these items.
40 sfs_comp="xz"
41 sfs_comp_opt=""
42
43 # Set the kernel that live session use.
44 # Please don't set anything if you want to use normal kernel.
45 # As of February 23, 2020, the available kernels are lts, zen, ck, , rt and lqx.
46 kernel=
47
48 # Set the Japanese mode.
49 # When this is enabled, the packages in the japanese package list will be installed.
50 # A file for Japanese input is added.
51 japanese=false
52
53 # Set the user's default shell.
54 usershell="/bin/zsh"