Skip to content

Commit 8f3d9a4

Browse files
committed
Merge branch 'dev-stable' into stable
2 parents 3081f0b + 8c3470c commit 8f3d9a4

File tree

133 files changed

+6485
-591
lines changed

Some content is hidden

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

133 files changed

+6485
-591
lines changed

build.sh

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1295,7 +1295,7 @@ if [[ -d "${script_path}/.git" ]]; then
12951295
fi
12961296

12971297
# Show config message
1298-
[[ -f "${defaultconfig}" ]] && _msg_debug "The settings have been overwritten by the ${defaultconfig}"
1298+
[[ -f "${defaultconfig}" ]] && _msg_debug "Use the default configuration file (${defaultconfig})."
12991299

13001300
# Debug mode
13011301
mkalteriso_option="-a ${arch} -v"
@@ -1369,7 +1369,7 @@ if [[ -n "${1}" ]]; then
13691369
fi
13701370
fi
13711371

1372-
if [[ ! "${channel_name}" == "rebuild" ]]; then
1372+
if [[ ! "${channel_name}" == "rebuild" ]] && [[ ! "${channel_name}" == "clean" ]]; then
13731373
_msg_debug "channel path is ${script_path}/channels/${channel_name}"
13741374
fi
13751375
fi
@@ -1395,6 +1395,7 @@ if [[ "${channel_name}" = "clean" ]]; then
13951395
remove "${script_path}/menuconfig/build"
13961396
remove "${script_path}/system/cpp-src/mkalteriso/build"
13971397
remove "${script_path}/menuconfig-script/kernel_choice"
1398+
remove "${work_dir%/}"/*
13981399
remove "${work_dir}"
13991400
remove "${rebuildfile}"
14001401
remove "${script_path}/temp"

channels/README.md

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
# 日本語
2+
3+
## チャンネルについて
4+
チャンネルはビルドに必要なパッケージやファイル、設定などをひとまとめにしたものです。
5+
チャンネルを切り替えることによって様々なエディションをビルドできます。
6+
また、非公式なチャンネルを開発することで簡単にArch Linux派生ディストリビューションを開発することもできます。
7+
8+
チャンネルの詳細な仕様は[こちら](/docs/jp/CHANNEL.md)を参照して下さい。
9+
また、各チャンネルの概要はそれぞれのディレクトリのREADNEを参照して下さい。
10+
11+
# English
12+
13+
## About channels
14+
A channel is a collection of packages, files, settings, etc. required for building.
15+
You can build different editions by switching channels.
16+
You can also easily develop an Arch Linux derivative distribution by developing an unofficial channel.
17+
18+
See [here](/docs/en/CHANNEL.md) for detailed channel specifications.
19+
Please refer to READNE of each directory for the outline of each channel.

channels/cinnamon/README

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
Alter Linux Cinnamon
2+
===========
3+
4+
Japanese:
5+
中量級としてCinnamonエディションは開発されました。
6+
豪華なアニメーションと基本的なソフトウェアが入っています。
7+
x86_64をサポートしており、i686の中で最も重いエディションです。
8+
チャンネル名は cinnamon です
9+
10+
English:
11+
Cinnamon Edition was developed as a middleweight class system.
12+
Gorgeous animation & standard software included.
13+
Supported x86_64 & i686.This is a heaviest edition for i686.
14+
The channel-name is cinnamon.

channels/cinnamon/airootfs.any/etc/dconf/db/local.d/01-alter-screensaver

Lines changed: 0 additions & 2 deletions
This file was deleted.
Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
[org/cinnamon/desktop/lockdown]
2+
disable-lock-screen=true
3+
4+
[org/gnome/desktop/lockdown]
5+
disable-lock-screen=true
6+
7+
[org/cinnamon/desktop/screensaver]
8+
allow-keyboard-shortcuts=false
9+
default-message='Password: %PASSWORD%'
10+
layout-group=0
11+
lock-enabled=false
12+
13+
[org/gnome/desktop/screensaver]
14+
lock-enabled=false
15+
16+
[org/cinnamon/desktop/keybindings/media-keys]
17+
screensaver=@as []

channels/cinnamon/airootfs.any/etc/dconf/db/local.d/02-live-config

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

channels/cinnamon/airootfs.any/etc/skel/.bash_profile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
#
44

55
[[ -f ~/.bashrc ]] && . ~/.bashrc
6-
[[ -f /usr/local/bin/alterlinux-user-directory ]] && /usr/local/bin/alterlinux-user-directory
6+
77
if [[ $(systemctl is-active graphical.target) = "active" ]] && [[ ! $DISPLAY && $XDG_VTNR -eq 1 ]]; then
88
exec startx
99
fi

channels/cinnamon/airootfs.any/etc/skel/.xinitrc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,5 +29,5 @@ export UNZIPOPT=-OCP932
2929
# No beep
3030
xset -b
3131

32-
# Start xfce4
32+
# Start cinnamon
3333
exec cinnamon-session

channels/cinnamon/airootfs.any/etc/skel/.zprofile

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22
# ~/.zsh_profile
33
#
44

5-
[[ -f /usr/local/bin/alterlinux-user-directory ]] && /usr/local/bin/alterlinux-user-directory
65
if [[ $(systemctl is-active graphical.target) = "active" ]] && [[ ! $DISPLAY && $XDG_VTNR -eq 1 ]]; then
76
exec startx
87
fi
Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
[Desktop Entry]
2+
Encoding=UTF-8
3+
Version=1.0
4+
Icon=/usr/share/icons/hicolor/scalable/alter.svg
5+
Exec=/usr/bin/alterlinux-welcome-page
6+
Type=Application
7+
StartupNotify=false
8+
Terminal=false
9+
Hidden=false
10+
11+
Name=Welcome to Alter Linux
12+
Comment=Displays the Alter Linux welcome page.
13+
14+
Name[ja]=Alter Linuxへようこそ
15+
GenericName[ja]=Alter Linuxへようこそ
16+
Comment[ja]=Alter Linuxの利用に役立つページです。

0 commit comments

Comments
 (0)