mirror of
https://github.com/GXDE-OS/GXDE.git
synced 2026-08-08 01:23:56 +08:00
Compare commits
45
Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
c73a29a971 | ||
|
|
7ecd7bca3e | ||
|
|
c52ebfdc0e | ||
|
|
9a11fcb164 | ||
|
|
0fdf681581 | ||
|
|
db5bb36bb8 | ||
|
|
b38880a5ee | ||
|
|
a5acfae455 | ||
|
|
86ef8680ff | ||
|
|
4b22cae265 | ||
|
|
5661f27d1f | ||
|
|
d30d5c3d94 | ||
|
|
a7c4454bbe | ||
|
|
b03f45b904 | ||
|
|
d618d56312 | ||
|
|
ab22b376b6 | ||
|
|
92dab943d5 | ||
|
|
da202ec80b | ||
|
|
060c93511f | ||
|
|
7bb6b497f6 | ||
|
|
041520a003 | ||
|
|
a0b1e96888 | ||
|
|
5a2e0ca3e0 | ||
|
|
17300ff510 | ||
|
|
d0b88cd451 | ||
|
|
f6edd4e141 | ||
|
|
70189c24dd | ||
|
|
a23abe9df7 | ||
|
|
9436e0311a | ||
|
|
8e33673d02 | ||
|
|
2180a04d29 | ||
|
|
f06089d83f | ||
|
|
e84224970c | ||
|
|
8368ed168a | ||
|
|
eed4e0d776 | ||
|
|
d16adc50e4 | ||
|
|
4efabb2023 | ||
|
|
c7e3f6ed0d | ||
|
|
01bae0a5e6 | ||
|
|
0d261f4f57 | ||
|
|
fcb98c9b83 | ||
|
|
7c79626344 | ||
|
|
73b6d58a42 | ||
|
|
f44cf966ae | ||
|
|
b62bb30caa |
@@ -208,7 +208,8 @@ jobs:
|
|||||||
|
|
||||||
- name: Configure Base System
|
- name: Configure Base System
|
||||||
run: |
|
run: |
|
||||||
bash .github/workflows/configure-building-enviroment-base-system.sh loong64 unstable $REPOSITORY https://github.com/$GITHUB_REPOSITORY https://deb.debian.org/debian-ports/
|
bash .github/workflows/configure-building-enviroment-base-system.sh loong64 unstable $REPOSITORY https://deb.debian.org/debian-ports/
|
||||||
|
#bash .github/workflows/configure-building-enviroment-base-system.sh loong64 unstable $REPOSITORY https://github.com/$GITHUB_REPOSITORY https://deb.debian.org/debian-ports/
|
||||||
|
|
||||||
- name: Building ${{ GITHUB.repository }}
|
- name: Building ${{ GITHUB.repository }}
|
||||||
run: |
|
run: |
|
||||||
|
|||||||
@@ -0,0 +1,123 @@
|
|||||||
|
name: Building GXDE Testing SID Package
|
||||||
|
run-name: Building SID ${{ GITHUB.REPOSITORY }}
|
||||||
|
|
||||||
|
on:
|
||||||
|
workflow_call:
|
||||||
|
secrets:
|
||||||
|
PASSWD:
|
||||||
|
required: true
|
||||||
|
USERS:
|
||||||
|
required: true
|
||||||
|
HOST:
|
||||||
|
required: true
|
||||||
|
UPATH:
|
||||||
|
required: true
|
||||||
|
UPROGRAM:
|
||||||
|
required: true
|
||||||
|
UPORT:
|
||||||
|
required: true
|
||||||
|
|
||||||
|
env:
|
||||||
|
REPOSITORY: https://github.com/GXDE-OS/GXDE
|
||||||
|
BOTTLEPATH: system-bottle
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
loong64:
|
||||||
|
runs-on: ubuntu-24.04
|
||||||
|
steps:
|
||||||
|
- name: Clone Repository To Get Script
|
||||||
|
run: |
|
||||||
|
#apt update
|
||||||
|
#apt install sudo git -y
|
||||||
|
git clone $REPOSITORY --depth=1
|
||||||
|
mv $(basename $REPOSITORY)/* . -v
|
||||||
|
mv $(basename $REPOSITORY)/.* . -v | true
|
||||||
|
|
||||||
|
- name: Configure Base System
|
||||||
|
run: |
|
||||||
|
bash .github/workflows/configure-building-enviroment-base-system.sh loong64 sid $REPOSITORY https://github.com/$GITHUB_REPOSITORY https://deb.debian.org/debian-ports/
|
||||||
|
#bash .github/workflows/configure-building-enviroment-base-system.sh loong64 sid $REPOSITORY https://github.com/$GITHUB_REPOSITORY https://deb.debian.org/debian-ports/
|
||||||
|
|
||||||
|
- name: Building ${{ GITHUB.repository }}
|
||||||
|
run: |
|
||||||
|
env gitPath=$(basename $GITHUB_REPOSITORY) bash .github/workflows/run-command-in-chroot.sh env GO111MODULE=off dpkg-buildpackage -b
|
||||||
|
|
||||||
|
- name: Remove Debug Package
|
||||||
|
run: |
|
||||||
|
env env gitPath=$(basename $GITHUB_REPOSITORY) bash .github/workflows/run-command-in-chroot.sh rm -rfv ../*dbg*.deb
|
||||||
|
|
||||||
|
- name: Pack tar
|
||||||
|
run: |
|
||||||
|
cd $BOTTLEPATH
|
||||||
|
sudo tar -cvf ../deb-$(date +%s).tar *.deb
|
||||||
|
|
||||||
|
- name: Push
|
||||||
|
env:
|
||||||
|
UPASSWD: ${{ secrets.PASSWD }}
|
||||||
|
UUSERS: ${{ secrets.USERS }}
|
||||||
|
UHOST: ${{ secrets.HOST }}
|
||||||
|
UPATH: ${{ secrets.UPATH }}
|
||||||
|
UPROGRAM: ${{ secrets.UPROGRAM }}
|
||||||
|
UPORT: ${{ secrets.UPORT }}
|
||||||
|
run: |
|
||||||
|
sudo apt update
|
||||||
|
sudo apt install sshpass -y
|
||||||
|
mkdir -p ~/.ssh/
|
||||||
|
ssh-keyscan -p $UPORT -H $UHOST >> ~/.ssh/known_hosts
|
||||||
|
tarName=$(ls | grep .tar | head -n 1)
|
||||||
|
sshpass -p "$UPASSWD" rsync -e "ssh -p $UPORT" $tarName $UUSERS@$UHOST:$UPATH
|
||||||
|
sshpass -p "$UPASSWD" ssh $UUSERS@$UHOST -p $UPORT $UPROGRAM tianlu $UPATH/$tarName > /dev/null
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
riscv64:
|
||||||
|
runs-on: ubuntu-24.04
|
||||||
|
steps:
|
||||||
|
- name: Clone Repository To Get Script
|
||||||
|
run: |
|
||||||
|
#apt update
|
||||||
|
#apt install sudo git -y
|
||||||
|
git clone $REPOSITORY --depth=1
|
||||||
|
mv $(basename $REPOSITORY)/* . -v
|
||||||
|
mv $(basename $REPOSITORY)/.* . -v | true
|
||||||
|
|
||||||
|
- name: Configure Base System
|
||||||
|
run: |
|
||||||
|
bash .github/workflows/configure-building-enviroment-base-system.sh riscv64 sid $REPOSITORY https://github.com/$GITHUB_REPOSITORY
|
||||||
|
|
||||||
|
- name: Building ${{ GITHUB.repository }}
|
||||||
|
run: |
|
||||||
|
set +e
|
||||||
|
env gitPath=$(basename $GITHUB_REPOSITORY) bash .github/workflows/run-command-in-chroot.sh env GO111MODULE=off dpkg-buildpackage -b
|
||||||
|
|
||||||
|
- name: Remove Debug Package
|
||||||
|
run: |
|
||||||
|
set +e
|
||||||
|
env env gitPath=$(basename $GITHUB_REPOSITORY) bash .github/workflows/run-command-in-chroot.sh rm -rfv ../*dbg*.deb
|
||||||
|
|
||||||
|
- name: Pack tar
|
||||||
|
run: |
|
||||||
|
set +e
|
||||||
|
cd $BOTTLEPATH
|
||||||
|
sudo tar -cvf ../deb-$(date +%s).tar *.deb
|
||||||
|
|
||||||
|
- name: Push
|
||||||
|
env:
|
||||||
|
UPASSWD: ${{ secrets.PASSWD }}
|
||||||
|
UUSERS: ${{ secrets.USERS }}
|
||||||
|
UHOST: ${{ secrets.HOST }}
|
||||||
|
UPATH: ${{ secrets.UPATH }}
|
||||||
|
UPROGRAM: ${{ secrets.UPROGRAM }}
|
||||||
|
UPORT: ${{ secrets.UPORT }}
|
||||||
|
run: |
|
||||||
|
set +e
|
||||||
|
sudo apt update
|
||||||
|
sudo apt install sshpass -y
|
||||||
|
mkdir -p ~/.ssh/
|
||||||
|
ssh-keyscan -p $UPORT -H $UHOST >> ~/.ssh/known_hosts
|
||||||
|
tarName=$(ls | grep .tar | head -n 1)
|
||||||
|
if [[ $tarName != "" ]]; then
|
||||||
|
sshpass -p "$UPASSWD" rsync -e "ssh -p $UPORT" $tarName $UUSERS@$UHOST:$UPATH > /dev/null
|
||||||
|
sshpass -p "$UPASSWD" ssh $UUSERS@$UHOST -p $UPORT $UPROGRAM tianlu $UPATH/$tarName > /dev/null
|
||||||
|
fi
|
||||||
|
|
||||||
@@ -209,7 +209,8 @@ jobs:
|
|||||||
|
|
||||||
- name: Configure Base System
|
- name: Configure Base System
|
||||||
run: |
|
run: |
|
||||||
bash .github/workflows/configure-building-enviroment-base-system.sh loong64 unstable $REPOSITORY https://github.com/$GITHUB_REPOSITORY https://deb.debian.org/debian-ports/
|
bash .github/workflows/configure-building-enviroment-base-system.sh loong64 sid $REPOSITORY https://github.com/$GITHUB_REPOSITORY https://deb.debian.org/debian-ports/
|
||||||
|
#bash .github/workflows/configure-building-enviroment-base-system.sh loong64 sid $REPOSITORY https://github.com/$GITHUB_REPOSITORY https://deb.debian.org/debian-ports/
|
||||||
|
|
||||||
- name: Building ${{ GITHUB.repository }}
|
- name: Building ${{ GITHUB.repository }}
|
||||||
run: |
|
run: |
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
name: Building Testing
|
name: Building Program
|
||||||
run-name: Building ${{ GITHUB.REPOSITORY }}
|
run-name: Building ${{ GITHUB.REPOSITORY }}
|
||||||
|
|
||||||
on:
|
on:
|
||||||
|
|||||||
@@ -27,7 +27,10 @@ else
|
|||||||
useDebianPort
|
useDebianPort
|
||||||
fi
|
fi
|
||||||
fi
|
fi
|
||||||
sudo debootstrap --arch=$1 $2 $bottlePath $5
|
sudo debootstrap --include=git,gcc,make,debian-ports-archive-keyring,debian-archive-keyring,g++,dpkg-dev,qtbase5-dev,ca-certificates --arch=$1 $2 $bottlePath $5
|
||||||
|
#if [[ $? != 0 ]]; then
|
||||||
|
# sudo debootstrap --foreign --include=git,gcc,make,debian-ports-archive-keyring,debian-archive-keyring,g++,dpkg-dev,qtbase5-dev,ca-certificates --arch=$1 $2 $bottlePath $5
|
||||||
|
#fi
|
||||||
if [[ $? != 0 ]] && [[ $1 == loong64 ]]; then
|
if [[ $? != 0 ]] && [[ $1 == loong64 ]]; then
|
||||||
sudo apt install squashfs-tools git -y
|
sudo apt install squashfs-tools git -y
|
||||||
wget https://github.com/GXDE-OS/GXDE/releases/download/resources/debian-base-loong64.squashfs
|
wget https://github.com/GXDE-OS/GXDE/releases/download/resources/debian-base-loong64.squashfs
|
||||||
@@ -42,6 +45,7 @@ if [[ $6 == "backport" ]]; then
|
|||||||
sudo cp -rv .github/workflows/90bookworm-backports $bottlePath/etc/apt/preferences.d/
|
sudo cp -rv .github/workflows/90bookworm-backports $bottlePath/etc/apt/preferences.d/
|
||||||
fi
|
fi
|
||||||
# 配置 git
|
# 配置 git
|
||||||
|
#echo "deb [trusted=true] https://deb.debian.org/debian-ports/ unreleased main" | sudo tee $bottlePath/etc/apt/sources.list.d/debian-unreleased.list
|
||||||
sudo chroot $bottlePath apt update
|
sudo chroot $bottlePath apt update
|
||||||
sudo chroot $bottlePath apt full-upgrade -y
|
sudo chroot $bottlePath apt full-upgrade -y
|
||||||
sudo chroot $bottlePath apt install git -y
|
sudo chroot $bottlePath apt install git -y
|
||||||
|
|||||||
@@ -18,24 +18,26 @@ export DEBIAN_FRONTEND=noninteractive # 防止卡 tzdate
|
|||||||
# 判断是否是 Ubuntu
|
# 判断是否是 Ubuntu
|
||||||
isUbuntu=$(cat /etc/os-release | grep Ubuntu | wc -l)
|
isUbuntu=$(cat /etc/os-release | grep Ubuntu | wc -l)
|
||||||
if [[ $isUbuntu -gt 1 ]]; then
|
if [[ $isUbuntu -gt 1 ]]; then
|
||||||
echo "deb [trusted=true] https://repo1.gxde.top/gxde-os/hetao ./" >> /etc/apt/sources.list.d/gxde-os.list
|
echo "deb [trusted=true] https://repo.gxde.org/gxde-os/hetao ./" >> /etc/apt/sources.list.d/gxde-os.list
|
||||||
else
|
else
|
||||||
echo "deb [trusted=true] https://repo1.gxde.top/gxde-os/tianlu ./" >> /etc/apt/sources.list.d/gxde-os.list
|
echo "deb [trusted=true] https://repo.gxde.org/gxde-os/tianlu ./" >> /etc/apt/sources.list.d/gxde-os.list
|
||||||
echo "deb [trusted=true] https://repo1.gxde.top/gxde-os/bixie ./" >> /etc/apt/sources.list.d/gxde-os.list
|
echo "deb [trusted=true] https://repo.gxde.org/gxde-os/bixie ./" >> /etc/apt/sources.list.d/gxde-os.list
|
||||||
fi
|
|
||||||
if [[ $(dpkg --print-architecture) == "loong64" ]]; then
|
|
||||||
echo "deb [trusted=true] http://deb.debian.org/debian-ports unreleased main" > /etc/apt/sources.list.d/debian-unreleased.list
|
|
||||||
fi
|
fi
|
||||||
|
#if [[ $(dpkg --print-architecture) == "loong64" ]]; then
|
||||||
|
# echo "deb [trusted=true] https://deb.debian.org/debian-ports/ unreleased main" > /etc/apt/sources.list.d/debian-unreleased.list
|
||||||
|
#fi
|
||||||
|
apt install -f -y
|
||||||
|
apt install debian-ports-archive-keyring debian-archive-keyring -y
|
||||||
for i in {1..8};
|
for i in {1..8};
|
||||||
do
|
do
|
||||||
apt update -y
|
apt update -o Acquire::Check-Valid-Until=false -y
|
||||||
if [[ $? == 0 ]]; then
|
if [[ $? == 0 ]]; then
|
||||||
break
|
break
|
||||||
fi
|
fi
|
||||||
sleep 1
|
sleep 1
|
||||||
done
|
done
|
||||||
apt install dpkg-dev sudo neofetch debian-ports-archive-keyring debian-archive-keyring -y
|
apt install dpkg-dev sudo debian-ports-archive-keyring debian-archive-keyring -y
|
||||||
neofetch
|
#neofetch
|
||||||
#if [[ `arch` != "x86_64" ]]; then
|
#if [[ `arch` != "x86_64" ]]; then
|
||||||
# apt source qemu
|
# apt source qemu
|
||||||
# cd qemu-*/
|
# cd qemu-*/
|
||||||
|
|||||||
@@ -0,0 +1,7 @@
|
|||||||
|
This file contains honored contributers of GXDE and GXDE OS. The list is in alphabetical order.
|
||||||
|
|
||||||
|
elysia <c.elysia@foxmail.com>
|
||||||
|
gfdgd xi <3025613752@qq.com>
|
||||||
|
qingyu <qingyuqingyu123@proton.me>
|
||||||
|
shenmo <shenmo@spark-app.store>
|
||||||
|
yoyo <chowhound_xb@163.com>
|
||||||
@@ -31,6 +31,7 @@ Please Click the Star in the Upper Right Corner, Your Support is Our Greatest Mo
|
|||||||
<center><img src=new-logo-long.png width=300/></center>
|
<center><img src=new-logo-long.png width=300/></center>
|
||||||
|
|
||||||
QQ Group: 881201853
|
QQ Group: 881201853
|
||||||
|
Discord: https://discord.gg/t5Uf2xYpvA
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@@ -29,6 +29,7 @@ GXDE OS 内置 [星火应用商店](https://gitee.com/spark-store-project/),
|
|||||||
### 沟通渠道
|
### 沟通渠道
|
||||||
|
|
||||||
QQ 群:881201853
|
QQ 群:881201853
|
||||||
|
Discord:https://discord.gg/t5Uf2xYpvA
|
||||||
|
|
||||||
请点击右上角的Star,您的支持是我们最大的动力。
|
请点击右上角的Star,您的支持是我们最大的动力。
|
||||||
|
|
||||||
|
|||||||
Vendored
+14
-8
@@ -1,20 +1,26 @@
|
|||||||
gxde (2024.10.19) UNRELEASED; urgency=medium
|
gxde (2024.12.13) UNRELEASED; urgency=medium
|
||||||
|
|
||||||
|
* Change package: dde-calendar --> gxde-calendar
|
||||||
|
* Add package: gparted
|
||||||
|
* Change gxde-desktop depends, gxde-desktop-extra, gxde-desktop-android depends and conflicts
|
||||||
|
* Replace file-roller by gxde-compressor
|
||||||
|
* Recommend deepin-camera
|
||||||
|
* Replace gxde-calculator with deepin-calc
|
||||||
|
* Prefer dde-kwin
|
||||||
|
|
||||||
|
-- gfdgd_xi <3025613752@qq.com> Thu, 14 Nov 2024 22:23:21 +0800
|
||||||
|
|
||||||
|
gxde (2024.10.20) UNRELEASED; urgency=medium
|
||||||
|
|
||||||
* Add package: gxde-boot-maker
|
* Add package: gxde-boot-maker
|
||||||
* Add package : system-config-printer
|
* Add package : system-config-printer
|
||||||
* Add package : deepin-clone
|
* Add package : deepin-clone
|
||||||
* Add package: deepin-system-monitor
|
* Add package: deepin-system-monitor
|
||||||
* Change package: deepin-movie --> gxde-movie
|
* Change package: deepin-movie --> gxde-movie
|
||||||
|
* Change package: gxde-download --> gxde-downloader
|
||||||
|
|
||||||
-- shenmo <shenmo@spark-app.store> Fri, 04 Oct 2024 09:22:50 +0800
|
-- shenmo <shenmo@spark-app.store> Fri, 04 Oct 2024 09:22:50 +0800
|
||||||
|
|
||||||
gxde (2024.10.01) UNRELEASED; urgency=medium
|
|
||||||
|
|
||||||
* fix 15.14 conponents dependencies
|
|
||||||
*
|
|
||||||
|
|
||||||
-- gfdgd_xi <3025613752@qq.com> Sat, 05 Oct 2024 13:39:12 +0800
|
|
||||||
|
|
||||||
gxde (2024.09.01) UNRELEASED; urgency=medium
|
gxde (2024.09.01) UNRELEASED; urgency=medium
|
||||||
|
|
||||||
* Non-maintainer upload.
|
* Non-maintainer upload.
|
||||||
|
|||||||
Vendored
+33
-12
@@ -8,16 +8,15 @@ Homepage: http://www.gfdgdxi.top
|
|||||||
|
|
||||||
Package: gxde-desktop-extra
|
Package: gxde-desktop-extra
|
||||||
Architecture: all
|
Architecture: all
|
||||||
Depends: ${misc:Depends},
|
Recommends: ${misc:Depends},
|
||||||
gxde-voice-recorder,
|
gxde-voice-recorder,
|
||||||
gxde-calculator,
|
deepin-calculator,
|
||||||
gxde-terminal,
|
gxde-terminal,
|
||||||
gxde-deb-installer,
|
gxde-deb-installer,
|
||||||
gxde-editor,
|
gxde-editor,
|
||||||
gxde-image-viewer,
|
gxde-image-viewer,
|
||||||
gxde-icon-theme,
|
gxde-icon-theme,
|
||||||
gxde-sea-icon-theme,
|
gxde-sea-icon-theme,
|
||||||
gxde-download,
|
|
||||||
gxde-ocr,
|
gxde-ocr,
|
||||||
gxde-music,
|
gxde-music,
|
||||||
gxde-picker,
|
gxde-picker,
|
||||||
@@ -31,7 +30,11 @@ Depends: ${misc:Depends},
|
|||||||
gxde-boot-maker,
|
gxde-boot-maker,
|
||||||
deepin-clone,
|
deepin-clone,
|
||||||
system-config-printer,
|
system-config-printer,
|
||||||
deepin-system-monitor
|
deepin-system-monitor,
|
||||||
|
gxde-downloader,
|
||||||
|
gparted,
|
||||||
|
fantascene-dynamic-wallpaper,
|
||||||
|
x11vnc,
|
||||||
Description: GXDE New Desktop Environment Extra - Next
|
Description: GXDE New Desktop Environment Extra - Next
|
||||||
This is a meta package depends GXDE New Desktop Envrionment Extra.
|
This is a meta package depends GXDE New Desktop Envrionment Extra.
|
||||||
.
|
.
|
||||||
@@ -43,8 +46,20 @@ Depends:
|
|||||||
${misc:Depends},
|
${misc:Depends},
|
||||||
gxde-daemon,
|
gxde-daemon,
|
||||||
gxde-desktop,
|
gxde-desktop,
|
||||||
Recommends:
|
gxde-calculator,
|
||||||
gxde-desktop-extra
|
gxde-terminal,
|
||||||
|
gxde-deb-installer,
|
||||||
|
gxde-editor,
|
||||||
|
gxde-image-viewer,
|
||||||
|
gxde-ocr,
|
||||||
|
gxde-music,
|
||||||
|
gxde-font-installer,
|
||||||
|
gxde-movie,
|
||||||
|
gxde-quick-hash,
|
||||||
|
spark-store | aptss,
|
||||||
|
deepin-system-monitor,
|
||||||
|
dde-control-center,
|
||||||
|
dde-file-manager,
|
||||||
Conflicts:
|
Conflicts:
|
||||||
plymouth-theme-gxde-logo,
|
plymouth-theme-gxde-logo,
|
||||||
linux-kernel-gxde-i386,
|
linux-kernel-gxde-i386,
|
||||||
@@ -57,6 +72,9 @@ Conflicts:
|
|||||||
linux-kernel-oldstable-gxde-mips64el,
|
linux-kernel-oldstable-gxde-mips64el,
|
||||||
linux-kernel-gxde-loong64,
|
linux-kernel-gxde-loong64,
|
||||||
linux-kernel-oldstable-gxde-loong64,
|
linux-kernel-oldstable-gxde-loong64,
|
||||||
|
plymouth,
|
||||||
|
tela-grub2-themes,
|
||||||
|
plymouth-theme-gxde-logo,
|
||||||
Description: GXDE New Desktop Environment For PRoot - Next
|
Description: GXDE New Desktop Environment For PRoot - Next
|
||||||
This is a meta package depends GXDE New Desktop Envrionment in Android PRoot.
|
This is a meta package depends GXDE New Desktop Envrionment in Android PRoot.
|
||||||
.
|
.
|
||||||
@@ -77,13 +95,14 @@ Depends: ${misc:Depends},
|
|||||||
eject,
|
eject,
|
||||||
gxde-wallpapers,
|
gxde-wallpapers,
|
||||||
fonts-noto,
|
fonts-noto,
|
||||||
gxde-kwin | dde-kwin,
|
dde-kwin | gxde-kwin,
|
||||||
deepin-screensaver,
|
deepin-screensaver,
|
||||||
gxde-default-settings,
|
gxde-default-settings,
|
||||||
gxde-shell-tools
|
gxde-shell-tools,
|
||||||
|
gxde-compressor,
|
||||||
|
gxde-introduction,
|
||||||
Recommends:
|
Recommends:
|
||||||
gxde-desktop-extra,
|
gxde-desktop-extra,
|
||||||
file-roller,
|
|
||||||
gxde-editor,
|
gxde-editor,
|
||||||
pppoe,
|
pppoe,
|
||||||
gvfs-fuse,
|
gvfs-fuse,
|
||||||
@@ -119,19 +138,21 @@ Recommends:
|
|||||||
miraclecast,
|
miraclecast,
|
||||||
x-display-manager,
|
x-display-manager,
|
||||||
gxde-image-viewer,
|
gxde-image-viewer,
|
||||||
dde-calendar,
|
gxde-calendar,
|
||||||
gxde-calculator,
|
gxde-calculator,
|
||||||
gxde-voice-recorder,
|
gxde-voice-recorder,
|
||||||
deepin-screen-recorder,
|
deepin-screen-recorder,
|
||||||
warm-sched,
|
warm-sched,
|
||||||
cheese,
|
deepin-camera,
|
||||||
gxde-top-panel,
|
gxde-top-panel,
|
||||||
plank,
|
plank,
|
||||||
fcitx5-material-color,
|
fcitx5-material-color,
|
||||||
tela-grub2-themes,
|
tela-grub2-themes,
|
||||||
plymouth-theme-gxde-logo,
|
plymouth-theme-gxde-logo,
|
||||||
fcitx5,
|
fcitx5,
|
||||||
fcitx5-table
|
fcitx5-table,
|
||||||
|
fantascene-dynamic-wallpaper,
|
||||||
|
x11vnc,
|
||||||
Conflicts:
|
Conflicts:
|
||||||
dde-control-center(<< 2.90.5),
|
dde-control-center(<< 2.90.5),
|
||||||
deepin-desktop-environment-desktop,
|
deepin-desktop-environment-desktop,
|
||||||
|
|||||||
Reference in New Issue
Block a user