Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
X
ximper-builder
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Ximper Linux
ximper-builder
Commits
01aa6473
Verified
Commit
01aa6473
authored
Nov 08, 2025
by
Kirill Unitsaev
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
build-distro: add kde
parent
307ec7f5
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
4 deletions
+7
-4
build-distro
bin/build-distro
+7
-4
No files found.
bin/build-distro
View file @
01aa6473
...
@@ -6,7 +6,7 @@ BUILDERDIR=$(realpath "$(dirname "$0")"/..)
...
@@ -6,7 +6,7 @@ BUILDERDIR=$(realpath "$(dirname "$0")"/..)
ALLDISTROS
=
false
ALLDISTROS
=
false
NVIDIA
=
false
NVIDIA
=
false
CLEAN
=
false
CLEAN
=
false
DESKTOP_ENVS
=()
# Список выбранных рабочих окружений (например, gnome, hyprland)
DESKTOP_ENVS
=()
# Список выбранных рабочих окружений (например, gnome,
kde,
hyprland)
NETWORK
=
false
NETWORK
=
false
# базовые функции
# базовые функции
...
@@ -139,7 +139,7 @@ deploy() {
...
@@ -139,7 +139,7 @@ deploy() {
mv
-vf
"
$TMP
"
/out/ximper-
*
.iso
"
$VMDIR
"
/
"
$DFILENAME
"
mv
-vf
"
$TMP
"
/out/ximper-
*
.iso
"
$VMDIR
"
/
"
$DFILENAME
"
}
}
OPTS
=
$(
getopt
-o
h
--long
help
,nvidia,debug,clean,all,gnome,hyprland,net,network,repos:
--
"
$@
"
)
||
{
OPTS
=
$(
getopt
-o
h
--long
help
,nvidia,debug,clean,all,gnome,
kde,
hyprland,net,network,repos:
--
"
$@
"
)
||
{
print_error
"Ошибка обработки опций."
print_error
"Ошибка обработки опций."
}
}
...
@@ -156,6 +156,7 @@ while true; do
...
@@ -156,6 +156,7 @@ while true; do
printf
" -h | --help Вывод этой справки
\n
"
printf
" -h | --help Вывод этой справки
\n
"
printf
" Окружения:
\n
"
printf
" Окружения:
\n
"
printf
" --gnome Собрать дистрибутив с GNOME (по умолчанию)
\n
"
printf
" --gnome Собрать дистрибутив с GNOME (по умолчанию)
\n
"
printf
" --kde Собрать дистрибутив с KDE
\n
"
printf
" --hyprland Собрать дистрибутив с Hyprland
\n
"
printf
" --hyprland Собрать дистрибутив с Hyprland
\n
"
printf
"
\n
"
printf
"
\n
"
printf
" Настройки образа:
\n
"
printf
" Настройки образа:
\n
"
...
@@ -197,6 +198,10 @@ while true; do
...
@@ -197,6 +198,10 @@ while true; do
DESKTOP_ENVS+
=(
"gnome"
)
DESKTOP_ENVS+
=(
"gnome"
)
shift
shift
;;
;;
--kde
)
DESKTOP_ENVS+
=(
"kde"
)
shift
;;
--hyprland
)
--hyprland
)
DESKTOP_ENVS+
=(
"hyprland"
)
DESKTOP_ENVS+
=(
"hyprland"
)
shift
shift
...
@@ -248,8 +253,6 @@ else
...
@@ -248,8 +253,6 @@ else
print_error
"Не указана версия дистрибутива."
print_error
"Не указана версия дистрибутива."
fi
fi
check
print_build_info
print_build_info
# Генерация списка задач на сборку
# Генерация списка задач на сборку
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment