Skip to content

Commit 2e8533d

Browse files
committed
Merge branch 'dev' into dev-stable
2 parents 73224d9 + 69f4aff commit 2e8533d

File tree

38 files changed

+781
-4
lines changed

38 files changed

+781
-4
lines changed

Makefile

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -85,3 +85,11 @@ wizard:
8585
check:
8686
@bash -c 'shopt -s globstar nullglob; shellcheck -s bash --exclude=SC2068 -S error **/*.{sh,ksh,bash}'
8787
@bash -c 'shopt -s globstar nullglob; shellcheck -s bash --exclude=SC2068 -S error tools/*.{sh,ksh,bash}'
88+
89+
90+
# デバッグ用
91+
ARCH := x86_64
92+
CHANNEL := xfce
93+
LOCALE := ja
94+
custom:
95+
sudo ${CURRENT_DIR}/${BUILD_SCRIPT} ${ARGS} ${SHARE_OPTION} --arch ${ARCH} -l ${LOCALE} ${CHANNEL}

build.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -389,7 +389,7 @@ prepare_build() {
389389
# Check modules
390390
module_check(){
391391
msg_debug -n "Checking ${1} module ... "
392-
bash "${tools_dir}/module.sh" check "${1}" || msg_error "Module ${1} is not available." "1" && echo "${module_dir}/${1}"
392+
bash "${tools_dir}/module.sh" check "${1}" || msg_error "Module ${1} is not available." "1" && msg_debug "Load ${module_dir}/${1}"
393393
}
394394
readarray -t modules < <(printf "%s\n" "${modules[@]}" | awk '!a[$0]++')
395395
for_module "module_check {}"

channels/i3/packages.i686/i3.i686

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ i3-gaps
1717
nitrogen
1818
picom
1919
conky
20+
polybar
2021

2122
# launcher
2223
rofi

channels/i3/packages.x86_64/i3.x86_64

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ i3-gaps
1717
nitrogen
1818
picom
1919
conky
20+
polybar
2021

2122
# launcher
2223
rofi

channels/i3/packages_aur.i686/i3.i686

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
# i3wm relation packages
1111

1212
# i3wm
13-
polybar
13+
#polybar
1414

1515
# terminal emulator
1616
sakura

channels/i3/packages_aur.x86_64/i3.x86_64

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
# i3wm relation packages
1111

1212
# i3wm
13-
polybar
13+
#polybar
1414

1515
# terminal emulator
1616
sakura
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
WebBrowser=chromium
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
degrees=false
2+
size=20
3+
hist_size=25
4+
output_base=10
5+
Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
[Desktop Entry]
2+
Version=1.0
3+
Name=Chromium
4+
GenericName=Web Browser
5+
GenericName[ja]=ウェブブラウザ
6+
Comment=Access the Internet
7+
Comment[ja]=インターネットにアクセス
8+
Exec=/usr/bin/chromium %U
9+
StartupNotify=true
10+
Terminal=false
11+
Icon=chromium
12+
Type=Application
13+
Categories=Network;WebBrowser;
14+
MimeType=text/html;text/xml;application/xhtml_xml;image/webp;x-scheme-handler/http;x-scheme-handler/https;x-scheme-handler/ftp;
15+
Actions=new-window;new-private-window;
16+
X-XFCE-Source=file:///usr/share/applications/chromium.desktop
17+
18+
[Desktop Action new-window]
19+
Name=New Window
20+
Name[ja]=新規ウインドウ
21+
Exec=/usr/bin/chromium
22+
23+
[Desktop Action new-private-window]
24+
Name=New Incognito Window
25+
Name[ja]=新しいシークレット ウィンドウ
26+
Exec=/usr/bin/chromium --incognito
Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
[Desktop Entry]
2+
Name=Thunar File Manager
3+
Name[ja]=Thunar ファイルマネージャー
4+
Comment=Browse the filesystem with the file manager
5+
Comment[ja]=ファイルマネージャーでファイルシステムを参照します
6+
GenericName=File Manager
7+
GenericName[ja]=ファイルマネージャー
8+
Exec=thunar %F
9+
Icon=Thunar
10+
Terminal=false
11+
StartupNotify=true
12+
Type=Application
13+
Categories=System;Utility;Core;GTK;FileTools;FileManager;
14+
MimeType=inode/directory;
15+
X-XFCE-Source=file:///usr/share/applications/thunar.desktop

0 commit comments

Comments
 (0)