Skip to content

Commit 2ee7f6d

Browse files
committed
Merge branch 'dev-stable'
2 parents b8d5e0d + 50fcdaf commit 2ee7f6d

58 files changed

Lines changed: 1007 additions & 193 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,4 +11,5 @@
1111

1212
pkg/
1313
src/
14-
out/
14+
out/
15+
work/

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,5 @@ RUN pacman -Syyu --noconfirm
44
RUN pacman -S git archiso arch-install-scripts --noconfirm
55
RUN git clone https://github.com/SereneTeam/alterlinux.git alterlinux/
66
WORKDIR /alterlinux
7-
RUN git checkout dev
7+
RUN git checkout dev-stable
88
CMD ["./build.sh", "-c", "zstd"]

README.md

Lines changed: 38 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@
33

44
![AlterLogo](images/logo.png)
55

6-
![License](https://img.shields.io/badge/LICENSE-GPL--3.0-blue?style=for-the-badge&logo=gnu)
7-
![Base](https://img.shields.io/badge/BASE-ArchLinux-blue?style=for-the-badge&logo=arch-linux)
8-
![archiso](https://img.shields.io/badge/archiso--version-43--1-blue?style=for-the-badge&logo=appveyor)
6+
[![License](https://img.shields.io/badge/LICENSE-GPL--3.0-blue?style=for-the-badge&logo=gnu)](LICENSE)
7+
[![Base](https://img.shields.io/badge/BASE-ArchLinux-blue?style=for-the-badge&logo=arch-linux)](https://https://www.archlinux.org/)
8+
[![archiso](https://img.shields.io/badge/archiso--version-43--1-blue?style=for-the-badge&logo=appveyor)](https://git.archlinux.org/archiso.git/tag/?h=v43)
99

1010
| [日本語](README_jp.md) | [English](README.md) |
1111
|:-----:|:-----:|
@@ -71,18 +71,37 @@ Default compression type is `zstd`.
7171

7272

7373
#### Options
74-
- Enable Plymouth : `-b`
75-
- Enable LTS kernel : `-l`
76-
- Change the password : `-p <password>`
74+
- Enable Plymouth : `-b`
7775
- Change compression type : `-c <comp type>`
76+
- Change kernel : `-k <kernel>`
77+
- Change the password : `-p <password>`
7878
- Set compression options : `-t <options>`
7979

80-
Example: Enable Plymouth and change the password to `ilovearch` and change compression type to `gzip` and enable linux-lts.
80+
##### Example
81+
82+
To build under the following conditions:
83+
84+
- Enable Plymouth
85+
- The compression method is `gzip`
86+
- The kernel is `linux-lqx`
87+
- The password is `ilovearch`
8188

8289
```bash
83-
./build.sh -l -b -p 'ilovearch' -c 'gzip'
90+
./build.sh -b -c "gzip" -k "lqx" -p 'ilovearch'
8491
```
8592

93+
##### About the kernel
94+
The following types of kernels are currently supported: If unspecified, the normal `linux` kernel will be used.
95+
Make sure to include the `foo` part of` linux-foo` in the `-k` option. For example, `linux-lts` contains` lts`.
96+
  
97+
Below are the supported values and kernels.The description of the kernel is from [ArchWiki](https://wiki.archlinux.jp/index.php/%E3%82%AB%E3%83%BC%E3%83%8D%E3%83%AB).
98+
99+
- ck : linux-ck contains patches to improve system response.
100+
- lts : Long term support (LTS) Linux kernel and modules from the `core` repository.
101+
- lqx : Distro kernel alternative built using Debian configuration and ZEN kernel source for desktop multimedia games.
102+
- rt : With this patch, almost all of the kernel can be run in real time.
103+
- zen : `linux-zen` is the wisdom of kernel hackers. It is the best Linux kernel for everyday use.
104+
86105
##### About compression type
87106
See the `mksquashfs` help for compression options and more options.
88107
As of February 12, 2019, `mksquashfs` supports the following methods and options.
@@ -137,14 +156,22 @@ SereneTeam is a development team for a Linux distribution composed primarily of
137156
[SereneLinux](https://serenelinux.com) based on Ubuntu has been developed and released.
138157
Utilizing our know-how, we are working on the development of Alter Linux, which is the first OS in Arch Linux to be developed in Japan.
139158

140-
### Member Twitter
159+
### Twitter account
160+
161+
#### Official
162+
The following accounts are official.
163+
- [Alter Linux](https://twitter.com/AlterLinux)
164+
- [SereneLinux Global](https://twitter.com/SereneLinux)
165+
- [SereneLinux JP](https://twitter.com/SereneDevJP)
166+
167+
#### Developer
141168
Link to Twitter of main development members.
142169
All comments made on this account are not official SereneTeam statements and are solely for the developer.
143170

144-
#### Development
171+
##### Development
145172
- [Hayao0819](https://twitter.com/Hayao0819)
146173
- [lap1sid](https://twitter.com/Pixel_3a)
147174
- [yamad](https://twitter.com/yamad_linuxer)
148175

149-
#### Design charge
176+
##### Design charge
150177
- [tukutun](https://twitter.com/tukutuN_27)

README_jp.md

Lines changed: 43 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@
33

44
![AlterLogo](images/logo.png)
55

6-
![License](https://img.shields.io/badge/LICENSE-GPL--3.0-blue?style=for-the-badge&logo=gnu)
7-
![Base](https://img.shields.io/badge/BASE-ArchLinux-blue?style=for-the-badge&logo=arch-linux)
8-
![archiso](https://img.shields.io/badge/archiso--version-43--1-blue?style=for-the-badge&logo=appveyor)
6+
[![License](https://img.shields.io/badge/LICENSE-GPL--3.0-blue?style=for-the-badge&logo=gnu)](LICENSE)
7+
[![Base](https://img.shields.io/badge/BASE-ArchLinux-blue?style=for-the-badge&logo=arch-linux)](https://https://www.archlinux.org/)
8+
[![archiso](https://img.shields.io/badge/archiso--version-43--1-blue?style=for-the-badge&logo=appveyor)](https://git.archlinux.org/archiso.git/tag/?h=v43)
99

1010
| [日本語](README_jp.md) | [English](README.md) |
1111
|:-----:|:-----:|
@@ -69,25 +69,46 @@ wizard.shを使用して簡単に思い通りの設定でビルドできます
6969
### build.shのオプション
7070

7171
#### 基本
72-
通常はウィザードを使用してください。ウィザードを使用しない場合、デフォルトパスワードは`alter`です。Plymouthは無効化されています。デフォルトの圧縮方式は`zstd`です。
72+
通常はウィザードを使用してください。
73+
デフォルトパスワードは`alter`です。
74+
lymouthは無効化されています。
75+
デフォルトの圧縮方式は`zstd`です。
7376

7477
```bash
7578
./build.sh <options>
7679
```
7780

7881
#### オプション
7982
- Plymouthを有効化する : `-b`
80-
- LTSカーネルを有効化 : `-l`
81-
- パスワードを変更する : `-p <password>`
8283
- 圧縮方式を変える : `-c <comp type>`
84+
- カーネルを変更する : `-k <kernel>`
85+
- パスワードを変更する : `-p <password>`
8386
- 圧縮のオプション : `-t <options>`
8487

85-
例 : PlymouthとLTSカーネルを有効化し、パスワードを`ilovearch`に変更し、圧縮方式を`gzip`にする。
88+
#####
89+
以下の条件でビルドするにはこのようにします。
90+
91+
- Plymouthを有効化
92+
- 圧縮方式は`gzip`
93+
- カーネルは`linux-lqx`
94+
- パスワードは`ilovearch`
8695

8796
```bash
88-
./build.sh -l -b -p 'ilovearch' -c "gzip"
97+
./build.sh -b -c "gzip" -k "lqx" -p 'ilovearch'
8998
```
9099

100+
##### カーネルについて
101+
カーネルは現在、以下の種類がサポートされています。未指定の場合は通常の`linux`カーネルが使用されます。
102+
`-k`のオプションは必ず`linux-foo``foo`の部分を入れてください。例えば`linux-lts`の場合は`lts`が入ります。
103+
104+
以下はサポートされている値とカーネルです。カーネルの説明は[ArchWiki](https://wiki.archlinux.jp/index.php/%E3%82%AB%E3%83%BC%E3%83%8D%E3%83%AB)を引用しています。
105+
106+
- ck : linux-ck にはシステムのレスポンスを良くするためのパッチが含まれています。
107+
- lts : `core`リポジトリにある長期サポート版 (Long term support, LTS) の Linux カーネルとモジュール。
108+
- lqx : デスクトップ・マルチメディア・ゲーム用途に Debian 用の設定と ZEN カーネルソースを使ってビルドされたディストロカーネル代替
109+
- rt : このパッチを使うことでカーネルのほとんど全てをリアルタイム実行できるようになります。
110+
- zen : `linux-zen`はカーネルハッカーたちの知恵の結晶です。日常的な利用にうってつけの最高の Linux カーネルになります。
111+
91112
##### 圧縮方式について
92113
圧縮方式と詳細のオプションは`mksquashfs`のヘルプを参照してください。
93114
2019年2月12日現在で、`mksquashfs`が対応している方式とオプションは以下の通りです。
@@ -142,14 +163,24 @@ SereneTeamは主に中高生で構成されたLinuxディストリビューシ
142163
Ubuntuをベースとした[SereneLinux](https://serenelinux.com)を開発、公開しています。
143164
私達はそのノウハウを活かし、Alter Linuxの開発に取り組んでいます。
144165

145-
### メンバーのTwitter
166+
### Twitter アカウント
146167
主要な開発メンバーのTwitterへのリンクです。
147168
このアカウントでの発言はすべてSereneTeam公式のものではなく、あくまでも開発者個人のものとします。
148169

149-
#### 開発担当
170+
#### 公式
171+
以下は公式のアカウントです。
172+
- [Alter Linux](https://twitter.com/AlterLinux)
173+
- [SereneLinux Global](https://twitter.com/SereneLinux)
174+
- [SereneLinux JP](https://twitter.com/SereneDevJP)
175+
176+
#### 開発者
177+
主な開発メンバーのTwitterへのリンクです。
178+
このアカウントで行われたすべての発言はSereneTeamの公式ではなく、開発者個人の見解です。
179+
180+
##### 開発担当
150181
- [Hayao0819](https://twitter.com/Hayao0819)
151182
- [lap1sid](https://twitter.com/Pixel_3a)
152-
- [yamad](https://twitter.com/_unix_like)
183+
- [yamad](https://twitter.com/yamad_linuxer)
153184

154-
#### デザイン担当
185+
##### デザイン担当
155186
- [tukutun](https://twitter.com/tukutuN_27)

airootfs/etc/lightdm/slick-greeter.conf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[Greeter]
2-
background=/usr/share/backgrounds/alter.png
2+
background=/usr/share/backgrounds/login.png
33
draw-user-backgrounds=false
44
draw-grid=false
55
theme-name=Materia-dark-compact
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
[user]
2-
pinned=/usr/share/applications/chromium.desktop;/usr/share/applications/thunar.desktop;/usr/share/applications/xfce4-terminal.desktop;/usr/share/applications/xfce-settings-manager.desktop;
2+
pinned=/usr/share/applications/chromium.desktop;/usr/share/applications/thunar.desktop;/usr/share/applications/thunderbird.desktop;/usr/share/applications/vlc.desktop;/usr/share/applications/leafpad.desktop;/usr/share/applications/code-oss.desktop;/usr/share/applications/xfce4-screenshooter.desktop;/usr/share/applications/xfce4-terminal.desktop;/usr/share/applications/pamac-manager.desktop;/usr/share/applications/xfce-settings-manager.desktop;

airootfs/etc/skel/.config/xfce4/panel/launcher-4/15804945041.desktop

Lines changed: 0 additions & 22 deletions
This file was deleted.

airootfs/etc/skel/.config/xfce4/panel/launcher-5/15804945192.desktop

Lines changed: 0 additions & 14 deletions
This file was deleted.

airootfs/etc/skel/.config/xfce4/panel/launcher-6/15804945513.desktop

Lines changed: 0 additions & 17 deletions
This file was deleted.

airootfs/etc/skel/.config/xfce4/panel/whiskermenu-3.rc

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -26,23 +26,23 @@ menu-width=424
2626
menu-height=506
2727
menu-opacity=100
2828
command-settings=xfce4-settings-manager
29-
show-command-settings=false
29+
show-command-settings=true
3030
command-lockscreen=xflock4
3131
show-command-lockscreen=false
3232
command-switchuser=gdmflexiserver
33-
show-command-switchuser=false
33+
show-command-switchuser=true
3434
command-logoutuser=xfce4-session-logout --logout --fast
35-
show-command-logoutuser=true
35+
show-command-logoutuser=false
3636
command-restart=xfce4-session-logout --reboot --fast
37-
show-command-restart=true
37+
show-command-restart=false
3838
command-shutdown=xfce4-session-logout --halt --fast
39-
show-command-shutdown=true
39+
show-command-shutdown=false
4040
command-suspend=xfce4-session-logout --suspend
41-
show-command-suspend=true
41+
show-command-suspend=false
4242
command-hibernate=xfce4-session-logout --hibernate
4343
show-command-hibernate=false
4444
command-logout=xfce4-session-logout
45-
show-command-logout=false
45+
show-command-logout=true
4646
command-menueditor=menulibre
4747
show-command-menueditor=false
4848
command-profile=mugshot

0 commit comments

Comments
 (0)