├── .github └── workflows │ ├── 90bookworm-backports │ ├── building-deb-backport.yml │ ├── building-deb-base-arm64.yml │ ├── building-deb-base.yml │ ├── building-deb-cross.yml │ ├── building-deb-hetao-cross.yml │ ├── building-deb-hetao.yml │ ├── building-deb-meimei.yml │ ├── building-deb-newest.yml │ ├── building-deb-other-distro.yml │ ├── building-deb-sid.yml │ ├── building-deb-tianlu-backport.yml │ ├── building-deb-tianlu-cross.yml │ ├── building-deb-tianlu.yml │ ├── building-deb-with-shell-cross.yml │ ├── building-deb-with-shell.yml │ ├── building-deb-zhuangzhuang-cross.yml │ ├── building-deb-zhuangzhuang.yml │ ├── building-deb.yml │ ├── building.yml │ ├── configure-building-enviroment-base-system.sh │ ├── configure-building-enviroment-mac.sh │ ├── configure-building-enviroment.sh │ ├── configure-python3.sh │ ├── crimson │ ├── debian-backports.list │ ├── loongnix │ ├── pardus-chroot │ ├── run-command-in-chroot.sh │ └── sync.yml ├── .pc ├── .quilt_patches ├── .quilt_series └── .version ├── GXDE-grub.cfg ├── GXDE_Wallpaper.jpg ├── Icon └── QR │ ├── Wechat.png │ └── advertisement0.jpg ├── LICENSE ├── MAINTAINERS ├── Makefile ├── README.md ├── README.zh.md ├── dde-file-manager-gvfs.rules ├── dde.sh ├── debian-dde.gpg ├── debian-dde.list ├── debian ├── changelog ├── compat ├── control ├── copyright ├── debiandde.substvars ├── docs ├── rules └── source │ └── format ├── debiandde-config-after-desktop ├── debiandde-config-after-desktop.desktop ├── debiandde-first-config.service ├── distribution_logo.png ├── distribution_logo.svg ├── distribution_logo_light-910x210.png ├── distribution_logo_light-910x210.svg ├── distribution_logo_light.svg ├── distribution_logo_transparent.png ├── distribution_logo_transparent.svg ├── docs ├── faq │ ├── FAQ.md │ └── FAQ.zh.md └── install │ ├── Install.md │ └── Install.zh.md ├── gxde-64x64.ico ├── gxde.ico ├── gxde.svg ├── icon-512x512.png ├── icon-512x512.svg ├── icon-mini.png ├── icon-mini.svg ├── icon-text-light.svg ├── icon-text.svg ├── icon-with-dark.png ├── icon-with-dark.svg ├── icon-without-bkg-black.svg ├── icon-without-bkg-white.svg ├── icon.png ├── icon.svg ├── icon1.png ├── icon1.svg ├── logo.png ├── logo@2x.png ├── new-logo-long.png ├── postrm ├── profile ├── Icon │ └── QR │ │ ├── Alipay.jpg │ │ ├── QQ.png │ │ ├── Wechat.png │ │ └── advertisement0.jpg ├── README.md ├── README.zh.md ├── icon.svg ├── new-logo-long.png └── spark-store.svg ├── spark-store.svg ├── sync-gitee-to-github └── sync.py ├── text.svg ├── tools ├── build-arm-iso.sh └── build-x86-iso.sh ├── wallpaper-green-16.9-logo-top.svg ├── wallpaper-green-16.9-top-logo.png ├── wallpaper-green-16.9.png ├── wallpaper-green-16.9.svg ├── wallpaper-green-1920x1080.jpg ├── wallpaper-green-1920x1080.png ├── wallpaper-green-4.3.svg ├── wallpaper-green-600x480.jpg ├── wallpaper-green-600x480.png ├── wallpaper-green-800x600.jpg ├── wallpaper-green-800x600.png ├── wallpaper-green-installer-logo.png ├── wallpaper-green-installer-logo.svg ├── wallpaper-green.jpg ├── wallpaper.svg └── wayland.sh /.github/workflows/90bookworm-backports: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GXDE-OS/GXDE/HEAD/.github/workflows/90bookworm-backports -------------------------------------------------------------------------------- /.github/workflows/building-deb-backport.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GXDE-OS/GXDE/HEAD/.github/workflows/building-deb-backport.yml -------------------------------------------------------------------------------- /.github/workflows/building-deb-base-arm64.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GXDE-OS/GXDE/HEAD/.github/workflows/building-deb-base-arm64.yml -------------------------------------------------------------------------------- /.github/workflows/building-deb-base.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GXDE-OS/GXDE/HEAD/.github/workflows/building-deb-base.yml -------------------------------------------------------------------------------- /.github/workflows/building-deb-cross.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GXDE-OS/GXDE/HEAD/.github/workflows/building-deb-cross.yml -------------------------------------------------------------------------------- /.github/workflows/building-deb-hetao-cross.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GXDE-OS/GXDE/HEAD/.github/workflows/building-deb-hetao-cross.yml -------------------------------------------------------------------------------- /.github/workflows/building-deb-hetao.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GXDE-OS/GXDE/HEAD/.github/workflows/building-deb-hetao.yml -------------------------------------------------------------------------------- /.github/workflows/building-deb-meimei.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GXDE-OS/GXDE/HEAD/.github/workflows/building-deb-meimei.yml -------------------------------------------------------------------------------- /.github/workflows/building-deb-newest.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GXDE-OS/GXDE/HEAD/.github/workflows/building-deb-newest.yml -------------------------------------------------------------------------------- /.github/workflows/building-deb-other-distro.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GXDE-OS/GXDE/HEAD/.github/workflows/building-deb-other-distro.yml -------------------------------------------------------------------------------- /.github/workflows/building-deb-sid.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GXDE-OS/GXDE/HEAD/.github/workflows/building-deb-sid.yml -------------------------------------------------------------------------------- /.github/workflows/building-deb-tianlu-backport.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GXDE-OS/GXDE/HEAD/.github/workflows/building-deb-tianlu-backport.yml -------------------------------------------------------------------------------- /.github/workflows/building-deb-tianlu-cross.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GXDE-OS/GXDE/HEAD/.github/workflows/building-deb-tianlu-cross.yml -------------------------------------------------------------------------------- /.github/workflows/building-deb-tianlu.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GXDE-OS/GXDE/HEAD/.github/workflows/building-deb-tianlu.yml -------------------------------------------------------------------------------- /.github/workflows/building-deb-with-shell-cross.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GXDE-OS/GXDE/HEAD/.github/workflows/building-deb-with-shell-cross.yml -------------------------------------------------------------------------------- /.github/workflows/building-deb-with-shell.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GXDE-OS/GXDE/HEAD/.github/workflows/building-deb-with-shell.yml -------------------------------------------------------------------------------- /.github/workflows/building-deb-zhuangzhuang-cross.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GXDE-OS/GXDE/HEAD/.github/workflows/building-deb-zhuangzhuang-cross.yml -------------------------------------------------------------------------------- /.github/workflows/building-deb-zhuangzhuang.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GXDE-OS/GXDE/HEAD/.github/workflows/building-deb-zhuangzhuang.yml -------------------------------------------------------------------------------- /.github/workflows/building-deb.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GXDE-OS/GXDE/HEAD/.github/workflows/building-deb.yml -------------------------------------------------------------------------------- /.github/workflows/building.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GXDE-OS/GXDE/HEAD/.github/workflows/building.yml -------------------------------------------------------------------------------- /.github/workflows/configure-building-enviroment-base-system.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GXDE-OS/GXDE/HEAD/.github/workflows/configure-building-enviroment-base-system.sh -------------------------------------------------------------------------------- /.github/workflows/configure-building-enviroment-mac.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GXDE-OS/GXDE/HEAD/.github/workflows/configure-building-enviroment-mac.sh -------------------------------------------------------------------------------- /.github/workflows/configure-building-enviroment.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GXDE-OS/GXDE/HEAD/.github/workflows/configure-building-enviroment.sh -------------------------------------------------------------------------------- /.github/workflows/configure-python3.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GXDE-OS/GXDE/HEAD/.github/workflows/configure-python3.sh -------------------------------------------------------------------------------- /.github/workflows/crimson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GXDE-OS/GXDE/HEAD/.github/workflows/crimson -------------------------------------------------------------------------------- /.github/workflows/debian-backports.list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GXDE-OS/GXDE/HEAD/.github/workflows/debian-backports.list -------------------------------------------------------------------------------- /.github/workflows/loongnix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GXDE-OS/GXDE/HEAD/.github/workflows/loongnix -------------------------------------------------------------------------------- /.github/workflows/pardus-chroot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GXDE-OS/GXDE/HEAD/.github/workflows/pardus-chroot -------------------------------------------------------------------------------- /.github/workflows/run-command-in-chroot.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GXDE-OS/GXDE/HEAD/.github/workflows/run-command-in-chroot.sh -------------------------------------------------------------------------------- /.github/workflows/sync.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GXDE-OS/GXDE/HEAD/.github/workflows/sync.yml -------------------------------------------------------------------------------- /.pc/.quilt_patches: -------------------------------------------------------------------------------- 1 | debian/patches 2 | -------------------------------------------------------------------------------- /.pc/.quilt_series: -------------------------------------------------------------------------------- 1 | series 2 | -------------------------------------------------------------------------------- /.pc/.version: -------------------------------------------------------------------------------- 1 | 2 2 | -------------------------------------------------------------------------------- /GXDE-grub.cfg: -------------------------------------------------------------------------------- 1 | GRUB_DISABLE_OS_PROBER=false 2 | -------------------------------------------------------------------------------- /GXDE_Wallpaper.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GXDE-OS/GXDE/HEAD/GXDE_Wallpaper.jpg -------------------------------------------------------------------------------- /Icon/QR/Wechat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GXDE-OS/GXDE/HEAD/Icon/QR/Wechat.png -------------------------------------------------------------------------------- /Icon/QR/advertisement0.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GXDE-OS/GXDE/HEAD/Icon/QR/advertisement0.jpg -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GXDE-OS/GXDE/HEAD/LICENSE -------------------------------------------------------------------------------- /MAINTAINERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GXDE-OS/GXDE/HEAD/MAINTAINERS -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GXDE-OS/GXDE/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GXDE-OS/GXDE/HEAD/README.md -------------------------------------------------------------------------------- /README.zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GXDE-OS/GXDE/HEAD/README.zh.md -------------------------------------------------------------------------------- /dde-file-manager-gvfs.rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GXDE-OS/GXDE/HEAD/dde-file-manager-gvfs.rules -------------------------------------------------------------------------------- /dde.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GXDE-OS/GXDE/HEAD/dde.sh -------------------------------------------------------------------------------- /debian-dde.gpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GXDE-OS/GXDE/HEAD/debian-dde.gpg -------------------------------------------------------------------------------- /debian-dde.list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GXDE-OS/GXDE/HEAD/debian-dde.list -------------------------------------------------------------------------------- /debian/changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GXDE-OS/GXDE/HEAD/debian/changelog -------------------------------------------------------------------------------- /debian/compat: -------------------------------------------------------------------------------- 1 | 9 2 | -------------------------------------------------------------------------------- /debian/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GXDE-OS/GXDE/HEAD/debian/control -------------------------------------------------------------------------------- /debian/copyright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GXDE-OS/GXDE/HEAD/debian/copyright -------------------------------------------------------------------------------- /debian/debiandde.substvars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GXDE-OS/GXDE/HEAD/debian/debiandde.substvars -------------------------------------------------------------------------------- /debian/docs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /debian/rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GXDE-OS/GXDE/HEAD/debian/rules -------------------------------------------------------------------------------- /debian/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (native) 2 | -------------------------------------------------------------------------------- /debiandde-config-after-desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GXDE-OS/GXDE/HEAD/debiandde-config-after-desktop -------------------------------------------------------------------------------- /debiandde-config-after-desktop.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GXDE-OS/GXDE/HEAD/debiandde-config-after-desktop.desktop -------------------------------------------------------------------------------- /debiandde-first-config.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GXDE-OS/GXDE/HEAD/debiandde-first-config.service -------------------------------------------------------------------------------- /distribution_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GXDE-OS/GXDE/HEAD/distribution_logo.png -------------------------------------------------------------------------------- /distribution_logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GXDE-OS/GXDE/HEAD/distribution_logo.svg -------------------------------------------------------------------------------- /distribution_logo_light-910x210.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GXDE-OS/GXDE/HEAD/distribution_logo_light-910x210.png -------------------------------------------------------------------------------- /distribution_logo_light-910x210.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GXDE-OS/GXDE/HEAD/distribution_logo_light-910x210.svg -------------------------------------------------------------------------------- /distribution_logo_light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GXDE-OS/GXDE/HEAD/distribution_logo_light.svg -------------------------------------------------------------------------------- /distribution_logo_transparent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GXDE-OS/GXDE/HEAD/distribution_logo_transparent.png -------------------------------------------------------------------------------- /distribution_logo_transparent.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GXDE-OS/GXDE/HEAD/distribution_logo_transparent.svg -------------------------------------------------------------------------------- /docs/faq/FAQ.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GXDE-OS/GXDE/HEAD/docs/faq/FAQ.md -------------------------------------------------------------------------------- /docs/faq/FAQ.zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GXDE-OS/GXDE/HEAD/docs/faq/FAQ.zh.md -------------------------------------------------------------------------------- /docs/install/Install.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GXDE-OS/GXDE/HEAD/docs/install/Install.md -------------------------------------------------------------------------------- /docs/install/Install.zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GXDE-OS/GXDE/HEAD/docs/install/Install.zh.md -------------------------------------------------------------------------------- /gxde-64x64.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GXDE-OS/GXDE/HEAD/gxde-64x64.ico -------------------------------------------------------------------------------- /gxde.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GXDE-OS/GXDE/HEAD/gxde.ico -------------------------------------------------------------------------------- /gxde.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GXDE-OS/GXDE/HEAD/gxde.svg -------------------------------------------------------------------------------- /icon-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GXDE-OS/GXDE/HEAD/icon-512x512.png -------------------------------------------------------------------------------- /icon-512x512.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GXDE-OS/GXDE/HEAD/icon-512x512.svg -------------------------------------------------------------------------------- /icon-mini.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GXDE-OS/GXDE/HEAD/icon-mini.png -------------------------------------------------------------------------------- /icon-mini.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GXDE-OS/GXDE/HEAD/icon-mini.svg -------------------------------------------------------------------------------- /icon-text-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GXDE-OS/GXDE/HEAD/icon-text-light.svg -------------------------------------------------------------------------------- /icon-text.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GXDE-OS/GXDE/HEAD/icon-text.svg -------------------------------------------------------------------------------- /icon-with-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GXDE-OS/GXDE/HEAD/icon-with-dark.png -------------------------------------------------------------------------------- /icon-with-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GXDE-OS/GXDE/HEAD/icon-with-dark.svg -------------------------------------------------------------------------------- /icon-without-bkg-black.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GXDE-OS/GXDE/HEAD/icon-without-bkg-black.svg -------------------------------------------------------------------------------- /icon-without-bkg-white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GXDE-OS/GXDE/HEAD/icon-without-bkg-white.svg -------------------------------------------------------------------------------- /icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GXDE-OS/GXDE/HEAD/icon.png -------------------------------------------------------------------------------- /icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GXDE-OS/GXDE/HEAD/icon.svg -------------------------------------------------------------------------------- /icon1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GXDE-OS/GXDE/HEAD/icon1.png -------------------------------------------------------------------------------- /icon1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GXDE-OS/GXDE/HEAD/icon1.svg -------------------------------------------------------------------------------- /logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GXDE-OS/GXDE/HEAD/logo.png -------------------------------------------------------------------------------- /logo@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GXDE-OS/GXDE/HEAD/logo@2x.png -------------------------------------------------------------------------------- /new-logo-long.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GXDE-OS/GXDE/HEAD/new-logo-long.png -------------------------------------------------------------------------------- /postrm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GXDE-OS/GXDE/HEAD/postrm -------------------------------------------------------------------------------- /profile/Icon/QR/Alipay.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GXDE-OS/GXDE/HEAD/profile/Icon/QR/Alipay.jpg -------------------------------------------------------------------------------- /profile/Icon/QR/QQ.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GXDE-OS/GXDE/HEAD/profile/Icon/QR/QQ.png -------------------------------------------------------------------------------- /profile/Icon/QR/Wechat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GXDE-OS/GXDE/HEAD/profile/Icon/QR/Wechat.png -------------------------------------------------------------------------------- /profile/Icon/QR/advertisement0.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GXDE-OS/GXDE/HEAD/profile/Icon/QR/advertisement0.jpg -------------------------------------------------------------------------------- /profile/README.md: -------------------------------------------------------------------------------- 1 | ../README.md -------------------------------------------------------------------------------- /profile/README.zh.md: -------------------------------------------------------------------------------- 1 | ../README.zh.md -------------------------------------------------------------------------------- /profile/icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GXDE-OS/GXDE/HEAD/profile/icon.svg -------------------------------------------------------------------------------- /profile/new-logo-long.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GXDE-OS/GXDE/HEAD/profile/new-logo-long.png -------------------------------------------------------------------------------- /profile/spark-store.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GXDE-OS/GXDE/HEAD/profile/spark-store.svg -------------------------------------------------------------------------------- /spark-store.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GXDE-OS/GXDE/HEAD/spark-store.svg -------------------------------------------------------------------------------- /sync-gitee-to-github/sync.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GXDE-OS/GXDE/HEAD/sync-gitee-to-github/sync.py -------------------------------------------------------------------------------- /text.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GXDE-OS/GXDE/HEAD/text.svg -------------------------------------------------------------------------------- /tools/build-arm-iso.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GXDE-OS/GXDE/HEAD/tools/build-arm-iso.sh -------------------------------------------------------------------------------- /tools/build-x86-iso.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GXDE-OS/GXDE/HEAD/tools/build-x86-iso.sh -------------------------------------------------------------------------------- /wallpaper-green-16.9-logo-top.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GXDE-OS/GXDE/HEAD/wallpaper-green-16.9-logo-top.svg -------------------------------------------------------------------------------- /wallpaper-green-16.9-top-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GXDE-OS/GXDE/HEAD/wallpaper-green-16.9-top-logo.png -------------------------------------------------------------------------------- /wallpaper-green-16.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GXDE-OS/GXDE/HEAD/wallpaper-green-16.9.png -------------------------------------------------------------------------------- /wallpaper-green-16.9.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GXDE-OS/GXDE/HEAD/wallpaper-green-16.9.svg -------------------------------------------------------------------------------- /wallpaper-green-1920x1080.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GXDE-OS/GXDE/HEAD/wallpaper-green-1920x1080.jpg -------------------------------------------------------------------------------- /wallpaper-green-1920x1080.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GXDE-OS/GXDE/HEAD/wallpaper-green-1920x1080.png -------------------------------------------------------------------------------- /wallpaper-green-4.3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GXDE-OS/GXDE/HEAD/wallpaper-green-4.3.svg -------------------------------------------------------------------------------- /wallpaper-green-600x480.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GXDE-OS/GXDE/HEAD/wallpaper-green-600x480.jpg -------------------------------------------------------------------------------- /wallpaper-green-600x480.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GXDE-OS/GXDE/HEAD/wallpaper-green-600x480.png -------------------------------------------------------------------------------- /wallpaper-green-800x600.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GXDE-OS/GXDE/HEAD/wallpaper-green-800x600.jpg -------------------------------------------------------------------------------- /wallpaper-green-800x600.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GXDE-OS/GXDE/HEAD/wallpaper-green-800x600.png -------------------------------------------------------------------------------- /wallpaper-green-installer-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GXDE-OS/GXDE/HEAD/wallpaper-green-installer-logo.png -------------------------------------------------------------------------------- /wallpaper-green-installer-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GXDE-OS/GXDE/HEAD/wallpaper-green-installer-logo.svg -------------------------------------------------------------------------------- /wallpaper-green.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GXDE-OS/GXDE/HEAD/wallpaper-green.jpg -------------------------------------------------------------------------------- /wallpaper.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GXDE-OS/GXDE/HEAD/wallpaper.svg -------------------------------------------------------------------------------- /wayland.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GXDE-OS/GXDE/HEAD/wayland.sh --------------------------------------------------------------------------------