├── .gitignore ├── .gitlab-ci.yml ├── LICENSE ├── OSS.md ├── README.md ├── clean_all.sh ├── config ├── all.json └── fast.json ├── makefile ├── screenshot.png └── src ├── args.sh ├── build.sh ├── mods ├── 00-check-host-mod │ └── install.sh ├── 01-apt-source-mod │ └── install.sh ├── 02-set-hostname-mod │ └── install.sh ├── 03-systemd-mod │ └── install.sh ├── 04-machine-id-mod │ └── install.sh ├── 05-initctl-mod │ └── install.sh ├── 06-apt-upgrade-mod │ └── install.sh ├── 07-system-tools-install-mod │ └── install.sh ├── 08-casper-and-kernel-install-mod │ └── install.sh ├── 10-no-snap-mod │ └── install.sh ├── 12-no-motd-mod │ └── install.sh ├── 14-gnome-apps-mod │ └── install.sh ├── 15-fonts-mod │ ├── fonts.zip │ ├── install.sh │ └── local.conf ├── 16-localization-patch │ └── install.sh ├── 17-appstore-app │ └── install.sh ├── 18-firefox-mod │ └── install.sh ├── 19-plymouth-patch │ ├── anduinos_text.png │ ├── install.sh │ └── logo_128.png ├── 20-deskmon-mod │ ├── deskmon │ ├── deskmon.c │ ├── deskmon.service │ └── install.sh ├── 21-ubiquity-mod │ └── install.sh ├── 22-ubiquity-patch │ ├── install.sh │ └── slides │ │ ├── apps.html │ │ ├── build.html │ │ ├── directory.jsonp │ │ ├── gaming.html │ │ ├── index.html │ │ ├── l10n │ │ ├── ar │ │ │ ├── apps.html │ │ │ ├── build.html │ │ │ ├── gaming.html │ │ │ ├── privacy.html │ │ │ ├── root.html │ │ │ ├── support.html │ │ │ └── welcome.html │ │ ├── de │ │ │ ├── apps.html │ │ │ ├── build.html │ │ │ ├── gaming.html │ │ │ ├── privacy.html │ │ │ ├── root.html │ │ │ ├── support.html │ │ │ └── welcome.html │ │ ├── es │ │ │ ├── apps.html │ │ │ ├── build.html │ │ │ ├── gaming.html │ │ │ ├── privacy.html │ │ │ ├── root.html │ │ │ ├── support.html │ │ │ └── welcome.html │ │ ├── fr │ │ │ ├── apps.html │ │ │ ├── build.html │ │ │ ├── gaming.html │ │ │ ├── privacy.html │ │ │ ├── root.html │ │ │ ├── support.html │ │ │ └── welcome.html │ │ ├── it │ │ │ ├── apps.html │ │ │ ├── build.html │ │ │ ├── gaming.html │ │ │ ├── privacy.html │ │ │ ├── root.html │ │ │ ├── support.html │ │ │ └── welcome.html │ │ ├── ja │ │ │ ├── apps.html │ │ │ ├── build.html │ │ │ ├── gaming.html │ │ │ ├── privacy.html │ │ │ ├── root.html │ │ │ ├── support.html │ │ │ └── welcome.html │ │ ├── ko │ │ │ ├── apps.html │ │ │ ├── build.html │ │ │ ├── gaming.html │ │ │ ├── privacy.html │ │ │ ├── root.html │ │ │ ├── support.html │ │ │ └── welcome.html │ │ ├── nl │ │ │ ├── apps.html │ │ │ ├── build.html │ │ │ ├── gaming.html │ │ │ ├── privacy.html │ │ │ ├── root.html │ │ │ ├── support.html │ │ │ └── welcome.html │ │ ├── pl │ │ │ ├── apps.html │ │ │ ├── build.html │ │ │ ├── gaming.html │ │ │ ├── privacy.html │ │ │ ├── root.html │ │ │ ├── support.html │ │ │ └── welcome.html │ │ ├── pt │ │ │ ├── apps.html │ │ │ ├── build.html │ │ │ ├── gaming.html │ │ │ ├── privacy.html │ │ │ ├── root.html │ │ │ ├── support.html │ │ │ └── welcome.html │ │ ├── pt_BR │ │ │ ├── apps.html │ │ │ ├── build.html │ │ │ ├── gaming.html │ │ │ ├── privacy.html │ │ │ ├── root.html │ │ │ ├── support.html │ │ │ └── welcome.html │ │ ├── ro │ │ │ ├── apps.html │ │ │ ├── build.html │ │ │ ├── gaming.html │ │ │ ├── privacy.html │ │ │ ├── root.html │ │ │ ├── support.html │ │ │ └── welcome.html │ │ ├── ru │ │ │ ├── apps.html │ │ │ ├── build.html │ │ │ ├── gaming.html │ │ │ ├── privacy.html │ │ │ ├── root.html │ │ │ ├── support.html │ │ │ └── welcome.html │ │ ├── sv │ │ │ ├── apps.html │ │ │ ├── build.html │ │ │ ├── gaming.html │ │ │ ├── privacy.html │ │ │ ├── root.html │ │ │ ├── support.html │ │ │ └── welcome.html │ │ ├── th │ │ │ ├── apps.html │ │ │ ├── build.html │ │ │ ├── gaming.html │ │ │ ├── privacy.html │ │ │ ├── root.html │ │ │ ├── support.html │ │ │ └── welcome.html │ │ ├── tr │ │ │ ├── apps.html │ │ │ ├── build.html │ │ │ ├── gaming.html │ │ │ ├── privacy.html │ │ │ ├── root.html │ │ │ ├── support.html │ │ │ └── welcome.html │ │ ├── vi │ │ │ ├── apps.html │ │ │ ├── build.html │ │ │ ├── gaming.html │ │ │ ├── privacy.html │ │ │ ├── root.html │ │ │ ├── support.html │ │ │ └── welcome.html │ │ ├── zh_CN │ │ │ ├── apps.html │ │ │ ├── build.html │ │ │ ├── gaming.html │ │ │ ├── privacy.html │ │ │ ├── root.html │ │ │ ├── support.html │ │ │ └── welcome.html │ │ ├── zh_HK │ │ │ ├── apps.html │ │ │ ├── build.html │ │ │ ├── gaming.html │ │ │ ├── privacy.html │ │ │ ├── root.html │ │ │ ├── support.html │ │ │ └── welcome.html │ │ └── zh_TW │ │ │ ├── apps.html │ │ │ ├── build.html │ │ │ ├── gaming.html │ │ │ ├── privacy.html │ │ │ ├── root.html │ │ │ ├── support.html │ │ │ └── welcome.html │ │ ├── link-core │ │ ├── base.js │ │ ├── jquery.cycle.all.js │ │ ├── jquery.js │ │ └── slideshow.js │ │ ├── link │ │ ├── arrow-back.png │ │ ├── arrow-next.png │ │ ├── background.png │ │ ├── base.css │ │ └── bullet-point.png │ │ ├── privacy.html │ │ ├── root.html │ │ ├── screenshots │ │ ├── gaming.png │ │ ├── jb.png │ │ ├── pv.png │ │ ├── sc.png │ │ ├── st.png │ │ └── welcome.png │ │ ├── support.html │ │ └── welcome.html ├── 23-software-properties-common-patch │ └── install.sh ├── 23-software-properties-gtk │ └── install.sh ├── 23-wallpaper-mod │ ├── Fluent-building-light.png │ ├── Fluent-building-night.png │ └── install.sh ├── 24-fluent-icon-theme │ └── install.sh ├── 25-fluent-gtk-theme │ └── install.sh ├── 26-gnome-extensions-installer │ └── install.sh ├── 27-dash-to-panel-patch-mod │ └── install.sh ├── 27-gnome-extensions-remover │ └── install.sh ├── 28-gnome-extensions-system-archiver │ └── install.sh ├── 29-gnome-extension-anduinos-loc │ ├── install.sh │ └── loc@anduinos.com │ │ ├── extension.js │ │ ├── locale │ │ ├── ar_SA │ │ │ └── LC_MESSAGES │ │ │ │ └── loc@anduinos.com.mo │ │ ├── de_DE │ │ │ └── LC_MESSAGES │ │ │ │ └── loc@anduinos.com.mo │ │ ├── en_US │ │ │ └── LC_MESSAGES │ │ │ │ └── loc@anduinos.com.mo │ │ ├── es_ES │ │ │ └── LC_MESSAGES │ │ │ │ └── loc@anduinos.com.mo │ │ ├── fr_FR │ │ │ └── LC_MESSAGES │ │ │ │ └── loc@anduinos.com.mo │ │ ├── it_IT │ │ │ └── LC_MESSAGES │ │ │ │ └── loc@anduinos.com.mo │ │ ├── ja_JP │ │ │ └── LC_MESSAGES │ │ │ │ └── loc@anduinos.com.mo │ │ ├── ko_KR │ │ │ └── LC_MESSAGES │ │ │ │ └── loc@anduinos.com.mo │ │ ├── nl_NL │ │ │ └── LC_MESSAGES │ │ │ │ └── loc@anduinos.com.mo │ │ ├── pl_PL │ │ │ └── LC_MESSAGES │ │ │ │ └── loc@anduinos.com.mo │ │ ├── pt_BR │ │ │ └── LC_MESSAGES │ │ │ │ └── loc@anduinos.com.mo │ │ ├── pt_PT │ │ │ └── LC_MESSAGES │ │ │ │ └── loc@anduinos.com.mo │ │ ├── ro_RO │ │ │ └── LC_MESSAGES │ │ │ │ └── loc@anduinos.com.mo │ │ ├── ru_RU │ │ │ └── LC_MESSAGES │ │ │ │ └── loc@anduinos.com.mo │ │ ├── sv_SE │ │ │ └── LC_MESSAGES │ │ │ │ └── loc@anduinos.com.mo │ │ ├── th_TH │ │ │ └── LC_MESSAGES │ │ │ │ └── loc@anduinos.com.mo │ │ ├── tr_TR │ │ │ └── LC_MESSAGES │ │ │ │ └── loc@anduinos.com.mo │ │ ├── vi_VN │ │ │ └── LC_MESSAGES │ │ │ │ └── loc@anduinos.com.mo │ │ ├── zh_CN │ │ │ └── LC_MESSAGES │ │ │ │ └── loc@anduinos.com.mo │ │ ├── zh_HK │ │ │ └── LC_MESSAGES │ │ │ │ └── loc@anduinos.com.mo │ │ └── zh_TW │ │ │ └── LC_MESSAGES │ │ │ └── loc@anduinos.com.mo │ │ └── metadata.json ├── 29-gnome-extension-anduinos-switcher │ ├── install.sh │ └── switcher@anduinos │ │ ├── extension.js │ │ └── metadata.json ├── 29-gnome-extension-noti-bottom-right │ ├── install.sh │ └── noti-bottom-right@anduinos │ │ ├── extension.js │ │ └── metadata.json ├── 30-gnome-extension-arcmenu-patch │ ├── install.sh │ └── logo.svg ├── 31-gnome-extension-dashtopanel-patch │ └── install.sh ├── 32-gnome-shell-localization-patch │ └── install.sh ├── 33-gnome-extensions-enabler │ └── install.sh ├── 34-input-method-mod │ ├── install.sh │ └── pkg_depends_patch ├── 35-dconf-patch │ ├── anduinos_text_smaller.png │ ├── dconf.ini │ ├── greeter.dconf-defaults.ini │ └── install.sh ├── 36-ubuntu-logo-text │ ├── install.sh │ ├── ubuntu-logo-text-dark.png │ └── ubuntu-logo-text.png ├── 37-xdg-mime-mod │ └── install.sh ├── 38-root-conf-cleanup │ └── install.sh ├── 39-templates-mod │ └── install.sh ├── 40-do-anduinos-autorepair-mod │ ├── do-anduinos-autorepair.sh │ └── install.sh ├── 40-do-anduinos-upgrade-mod │ └── install.sh ├── 41-target-apt-mirror-mod │ └── install.sh ├── 42-gnome-sessions-patch │ └── install.sh ├── 42-intel-thesof-mod │ └── install.sh ├── 43-etc-branding-mod │ └── install.sh ├── 44-casper-patch │ └── install.sh ├── 45-etc-issue-patch │ └── install.sh ├── 78-no-advertisements-mod │ └── install.sh ├── 79-useless-package-remover │ └── install.sh ├── 80-initramfs-update │ └── install.sh ├── 82-locales-config │ └── install.sh ├── 83-network-manager-patch │ └── install.sh ├── 84-apt-cache-cleaner │ └── install.sh ├── 85-machine-id-wiper │ └── install.sh ├── 86-diversion-remover │ └── install.sh ├── 87-history-cleaner │ └── install.sh ├── 88-useless-folders-cleaner │ └── install.sh └── install_all_mods.sh ├── repair.sh ├── shared.sh ├── styles ├── bottom_center.ini ├── bottom_left.ini ├── left_center.ini ├── left_top.ini ├── right_center.ini ├── right_top.ini ├── top_center.ini └── top_left.ini └── upgrade.sh /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anduin2017/AnduinOS/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitlab-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anduin2017/AnduinOS/HEAD/.gitlab-ci.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anduin2017/AnduinOS/HEAD/LICENSE -------------------------------------------------------------------------------- /OSS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anduin2017/AnduinOS/HEAD/OSS.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anduin2017/AnduinOS/HEAD/README.md -------------------------------------------------------------------------------- /clean_all.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anduin2017/AnduinOS/HEAD/clean_all.sh -------------------------------------------------------------------------------- /config/all.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anduin2017/AnduinOS/HEAD/config/all.json -------------------------------------------------------------------------------- /config/fast.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anduin2017/AnduinOS/HEAD/config/fast.json -------------------------------------------------------------------------------- /makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anduin2017/AnduinOS/HEAD/makefile -------------------------------------------------------------------------------- /screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anduin2017/AnduinOS/HEAD/screenshot.png -------------------------------------------------------------------------------- /src/args.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anduin2017/AnduinOS/HEAD/src/args.sh -------------------------------------------------------------------------------- /src/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anduin2017/AnduinOS/HEAD/src/build.sh -------------------------------------------------------------------------------- /src/mods/00-check-host-mod/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anduin2017/AnduinOS/HEAD/src/mods/00-check-host-mod/install.sh -------------------------------------------------------------------------------- /src/mods/01-apt-source-mod/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anduin2017/AnduinOS/HEAD/src/mods/01-apt-source-mod/install.sh -------------------------------------------------------------------------------- /src/mods/02-set-hostname-mod/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anduin2017/AnduinOS/HEAD/src/mods/02-set-hostname-mod/install.sh -------------------------------------------------------------------------------- /src/mods/03-systemd-mod/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anduin2017/AnduinOS/HEAD/src/mods/03-systemd-mod/install.sh -------------------------------------------------------------------------------- /src/mods/04-machine-id-mod/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anduin2017/AnduinOS/HEAD/src/mods/04-machine-id-mod/install.sh -------------------------------------------------------------------------------- /src/mods/05-initctl-mod/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anduin2017/AnduinOS/HEAD/src/mods/05-initctl-mod/install.sh -------------------------------------------------------------------------------- /src/mods/06-apt-upgrade-mod/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anduin2017/AnduinOS/HEAD/src/mods/06-apt-upgrade-mod/install.sh -------------------------------------------------------------------------------- /src/mods/07-system-tools-install-mod/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anduin2017/AnduinOS/HEAD/src/mods/07-system-tools-install-mod/install.sh -------------------------------------------------------------------------------- /src/mods/08-casper-and-kernel-install-mod/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anduin2017/AnduinOS/HEAD/src/mods/08-casper-and-kernel-install-mod/install.sh -------------------------------------------------------------------------------- /src/mods/10-no-snap-mod/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anduin2017/AnduinOS/HEAD/src/mods/10-no-snap-mod/install.sh -------------------------------------------------------------------------------- /src/mods/12-no-motd-mod/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anduin2017/AnduinOS/HEAD/src/mods/12-no-motd-mod/install.sh -------------------------------------------------------------------------------- /src/mods/14-gnome-apps-mod/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anduin2017/AnduinOS/HEAD/src/mods/14-gnome-apps-mod/install.sh -------------------------------------------------------------------------------- /src/mods/15-fonts-mod/fonts.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anduin2017/AnduinOS/HEAD/src/mods/15-fonts-mod/fonts.zip -------------------------------------------------------------------------------- /src/mods/15-fonts-mod/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anduin2017/AnduinOS/HEAD/src/mods/15-fonts-mod/install.sh -------------------------------------------------------------------------------- /src/mods/15-fonts-mod/local.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anduin2017/AnduinOS/HEAD/src/mods/15-fonts-mod/local.conf -------------------------------------------------------------------------------- /src/mods/16-localization-patch/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anduin2017/AnduinOS/HEAD/src/mods/16-localization-patch/install.sh -------------------------------------------------------------------------------- /src/mods/17-appstore-app/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anduin2017/AnduinOS/HEAD/src/mods/17-appstore-app/install.sh -------------------------------------------------------------------------------- /src/mods/18-firefox-mod/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anduin2017/AnduinOS/HEAD/src/mods/18-firefox-mod/install.sh -------------------------------------------------------------------------------- /src/mods/19-plymouth-patch/anduinos_text.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anduin2017/AnduinOS/HEAD/src/mods/19-plymouth-patch/anduinos_text.png -------------------------------------------------------------------------------- /src/mods/19-plymouth-patch/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anduin2017/AnduinOS/HEAD/src/mods/19-plymouth-patch/install.sh -------------------------------------------------------------------------------- /src/mods/19-plymouth-patch/logo_128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anduin2017/AnduinOS/HEAD/src/mods/19-plymouth-patch/logo_128.png -------------------------------------------------------------------------------- /src/mods/20-deskmon-mod/deskmon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anduin2017/AnduinOS/HEAD/src/mods/20-deskmon-mod/deskmon -------------------------------------------------------------------------------- /src/mods/20-deskmon-mod/deskmon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anduin2017/AnduinOS/HEAD/src/mods/20-deskmon-mod/deskmon.c -------------------------------------------------------------------------------- /src/mods/20-deskmon-mod/deskmon.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anduin2017/AnduinOS/HEAD/src/mods/20-deskmon-mod/deskmon.service -------------------------------------------------------------------------------- /src/mods/20-deskmon-mod/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anduin2017/AnduinOS/HEAD/src/mods/20-deskmon-mod/install.sh -------------------------------------------------------------------------------- /src/mods/21-ubiquity-mod/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anduin2017/AnduinOS/HEAD/src/mods/21-ubiquity-mod/install.sh -------------------------------------------------------------------------------- /src/mods/22-ubiquity-patch/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anduin2017/AnduinOS/HEAD/src/mods/22-ubiquity-patch/install.sh -------------------------------------------------------------------------------- /src/mods/22-ubiquity-patch/slides/apps.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anduin2017/AnduinOS/HEAD/src/mods/22-ubiquity-patch/slides/apps.html -------------------------------------------------------------------------------- /src/mods/22-ubiquity-patch/slides/build.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anduin2017/AnduinOS/HEAD/src/mods/22-ubiquity-patch/slides/build.html -------------------------------------------------------------------------------- /src/mods/22-ubiquity-patch/slides/directory.jsonp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anduin2017/AnduinOS/HEAD/src/mods/22-ubiquity-patch/slides/directory.jsonp -------------------------------------------------------------------------------- /src/mods/22-ubiquity-patch/slides/gaming.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anduin2017/AnduinOS/HEAD/src/mods/22-ubiquity-patch/slides/gaming.html -------------------------------------------------------------------------------- /src/mods/22-ubiquity-patch/slides/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anduin2017/AnduinOS/HEAD/src/mods/22-ubiquity-patch/slides/index.html -------------------------------------------------------------------------------- /src/mods/22-ubiquity-patch/slides/l10n/ar/apps.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anduin2017/AnduinOS/HEAD/src/mods/22-ubiquity-patch/slides/l10n/ar/apps.html -------------------------------------------------------------------------------- /src/mods/22-ubiquity-patch/slides/l10n/ar/build.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anduin2017/AnduinOS/HEAD/src/mods/22-ubiquity-patch/slides/l10n/ar/build.html -------------------------------------------------------------------------------- /src/mods/22-ubiquity-patch/slides/l10n/ar/gaming.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anduin2017/AnduinOS/HEAD/src/mods/22-ubiquity-patch/slides/l10n/ar/gaming.html -------------------------------------------------------------------------------- /src/mods/22-ubiquity-patch/slides/l10n/ar/privacy.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anduin2017/AnduinOS/HEAD/src/mods/22-ubiquity-patch/slides/l10n/ar/privacy.html -------------------------------------------------------------------------------- /src/mods/22-ubiquity-patch/slides/l10n/ar/root.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anduin2017/AnduinOS/HEAD/src/mods/22-ubiquity-patch/slides/l10n/ar/root.html -------------------------------------------------------------------------------- /src/mods/22-ubiquity-patch/slides/l10n/ar/support.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anduin2017/AnduinOS/HEAD/src/mods/22-ubiquity-patch/slides/l10n/ar/support.html -------------------------------------------------------------------------------- /src/mods/22-ubiquity-patch/slides/l10n/ar/welcome.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anduin2017/AnduinOS/HEAD/src/mods/22-ubiquity-patch/slides/l10n/ar/welcome.html -------------------------------------------------------------------------------- /src/mods/22-ubiquity-patch/slides/l10n/de/apps.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anduin2017/AnduinOS/HEAD/src/mods/22-ubiquity-patch/slides/l10n/de/apps.html -------------------------------------------------------------------------------- /src/mods/22-ubiquity-patch/slides/l10n/de/build.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anduin2017/AnduinOS/HEAD/src/mods/22-ubiquity-patch/slides/l10n/de/build.html -------------------------------------------------------------------------------- /src/mods/22-ubiquity-patch/slides/l10n/de/gaming.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anduin2017/AnduinOS/HEAD/src/mods/22-ubiquity-patch/slides/l10n/de/gaming.html -------------------------------------------------------------------------------- /src/mods/22-ubiquity-patch/slides/l10n/de/privacy.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anduin2017/AnduinOS/HEAD/src/mods/22-ubiquity-patch/slides/l10n/de/privacy.html -------------------------------------------------------------------------------- /src/mods/22-ubiquity-patch/slides/l10n/de/root.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anduin2017/AnduinOS/HEAD/src/mods/22-ubiquity-patch/slides/l10n/de/root.html -------------------------------------------------------------------------------- /src/mods/22-ubiquity-patch/slides/l10n/de/support.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anduin2017/AnduinOS/HEAD/src/mods/22-ubiquity-patch/slides/l10n/de/support.html -------------------------------------------------------------------------------- /src/mods/22-ubiquity-patch/slides/l10n/de/welcome.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anduin2017/AnduinOS/HEAD/src/mods/22-ubiquity-patch/slides/l10n/de/welcome.html -------------------------------------------------------------------------------- /src/mods/22-ubiquity-patch/slides/l10n/es/apps.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anduin2017/AnduinOS/HEAD/src/mods/22-ubiquity-patch/slides/l10n/es/apps.html -------------------------------------------------------------------------------- /src/mods/22-ubiquity-patch/slides/l10n/es/build.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anduin2017/AnduinOS/HEAD/src/mods/22-ubiquity-patch/slides/l10n/es/build.html -------------------------------------------------------------------------------- /src/mods/22-ubiquity-patch/slides/l10n/es/gaming.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anduin2017/AnduinOS/HEAD/src/mods/22-ubiquity-patch/slides/l10n/es/gaming.html -------------------------------------------------------------------------------- /src/mods/22-ubiquity-patch/slides/l10n/es/privacy.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anduin2017/AnduinOS/HEAD/src/mods/22-ubiquity-patch/slides/l10n/es/privacy.html -------------------------------------------------------------------------------- /src/mods/22-ubiquity-patch/slides/l10n/es/root.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anduin2017/AnduinOS/HEAD/src/mods/22-ubiquity-patch/slides/l10n/es/root.html -------------------------------------------------------------------------------- /src/mods/22-ubiquity-patch/slides/l10n/es/support.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anduin2017/AnduinOS/HEAD/src/mods/22-ubiquity-patch/slides/l10n/es/support.html -------------------------------------------------------------------------------- /src/mods/22-ubiquity-patch/slides/l10n/es/welcome.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anduin2017/AnduinOS/HEAD/src/mods/22-ubiquity-patch/slides/l10n/es/welcome.html -------------------------------------------------------------------------------- /src/mods/22-ubiquity-patch/slides/l10n/fr/apps.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anduin2017/AnduinOS/HEAD/src/mods/22-ubiquity-patch/slides/l10n/fr/apps.html -------------------------------------------------------------------------------- /src/mods/22-ubiquity-patch/slides/l10n/fr/build.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anduin2017/AnduinOS/HEAD/src/mods/22-ubiquity-patch/slides/l10n/fr/build.html -------------------------------------------------------------------------------- /src/mods/22-ubiquity-patch/slides/l10n/fr/gaming.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anduin2017/AnduinOS/HEAD/src/mods/22-ubiquity-patch/slides/l10n/fr/gaming.html -------------------------------------------------------------------------------- /src/mods/22-ubiquity-patch/slides/l10n/fr/privacy.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anduin2017/AnduinOS/HEAD/src/mods/22-ubiquity-patch/slides/l10n/fr/privacy.html -------------------------------------------------------------------------------- /src/mods/22-ubiquity-patch/slides/l10n/fr/root.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anduin2017/AnduinOS/HEAD/src/mods/22-ubiquity-patch/slides/l10n/fr/root.html -------------------------------------------------------------------------------- /src/mods/22-ubiquity-patch/slides/l10n/fr/support.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anduin2017/AnduinOS/HEAD/src/mods/22-ubiquity-patch/slides/l10n/fr/support.html -------------------------------------------------------------------------------- /src/mods/22-ubiquity-patch/slides/l10n/fr/welcome.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anduin2017/AnduinOS/HEAD/src/mods/22-ubiquity-patch/slides/l10n/fr/welcome.html -------------------------------------------------------------------------------- /src/mods/22-ubiquity-patch/slides/l10n/it/apps.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anduin2017/AnduinOS/HEAD/src/mods/22-ubiquity-patch/slides/l10n/it/apps.html -------------------------------------------------------------------------------- /src/mods/22-ubiquity-patch/slides/l10n/it/build.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anduin2017/AnduinOS/HEAD/src/mods/22-ubiquity-patch/slides/l10n/it/build.html -------------------------------------------------------------------------------- /src/mods/22-ubiquity-patch/slides/l10n/it/gaming.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anduin2017/AnduinOS/HEAD/src/mods/22-ubiquity-patch/slides/l10n/it/gaming.html -------------------------------------------------------------------------------- /src/mods/22-ubiquity-patch/slides/l10n/it/privacy.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anduin2017/AnduinOS/HEAD/src/mods/22-ubiquity-patch/slides/l10n/it/privacy.html -------------------------------------------------------------------------------- /src/mods/22-ubiquity-patch/slides/l10n/it/root.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anduin2017/AnduinOS/HEAD/src/mods/22-ubiquity-patch/slides/l10n/it/root.html -------------------------------------------------------------------------------- /src/mods/22-ubiquity-patch/slides/l10n/it/support.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anduin2017/AnduinOS/HEAD/src/mods/22-ubiquity-patch/slides/l10n/it/support.html -------------------------------------------------------------------------------- /src/mods/22-ubiquity-patch/slides/l10n/it/welcome.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anduin2017/AnduinOS/HEAD/src/mods/22-ubiquity-patch/slides/l10n/it/welcome.html -------------------------------------------------------------------------------- /src/mods/22-ubiquity-patch/slides/l10n/ja/apps.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anduin2017/AnduinOS/HEAD/src/mods/22-ubiquity-patch/slides/l10n/ja/apps.html -------------------------------------------------------------------------------- /src/mods/22-ubiquity-patch/slides/l10n/ja/build.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anduin2017/AnduinOS/HEAD/src/mods/22-ubiquity-patch/slides/l10n/ja/build.html -------------------------------------------------------------------------------- /src/mods/22-ubiquity-patch/slides/l10n/ja/gaming.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anduin2017/AnduinOS/HEAD/src/mods/22-ubiquity-patch/slides/l10n/ja/gaming.html -------------------------------------------------------------------------------- /src/mods/22-ubiquity-patch/slides/l10n/ja/privacy.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anduin2017/AnduinOS/HEAD/src/mods/22-ubiquity-patch/slides/l10n/ja/privacy.html -------------------------------------------------------------------------------- /src/mods/22-ubiquity-patch/slides/l10n/ja/root.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anduin2017/AnduinOS/HEAD/src/mods/22-ubiquity-patch/slides/l10n/ja/root.html -------------------------------------------------------------------------------- /src/mods/22-ubiquity-patch/slides/l10n/ja/support.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anduin2017/AnduinOS/HEAD/src/mods/22-ubiquity-patch/slides/l10n/ja/support.html -------------------------------------------------------------------------------- /src/mods/22-ubiquity-patch/slides/l10n/ja/welcome.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anduin2017/AnduinOS/HEAD/src/mods/22-ubiquity-patch/slides/l10n/ja/welcome.html -------------------------------------------------------------------------------- /src/mods/22-ubiquity-patch/slides/l10n/ko/apps.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anduin2017/AnduinOS/HEAD/src/mods/22-ubiquity-patch/slides/l10n/ko/apps.html -------------------------------------------------------------------------------- /src/mods/22-ubiquity-patch/slides/l10n/ko/build.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anduin2017/AnduinOS/HEAD/src/mods/22-ubiquity-patch/slides/l10n/ko/build.html -------------------------------------------------------------------------------- /src/mods/22-ubiquity-patch/slides/l10n/ko/gaming.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anduin2017/AnduinOS/HEAD/src/mods/22-ubiquity-patch/slides/l10n/ko/gaming.html -------------------------------------------------------------------------------- /src/mods/22-ubiquity-patch/slides/l10n/ko/privacy.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anduin2017/AnduinOS/HEAD/src/mods/22-ubiquity-patch/slides/l10n/ko/privacy.html -------------------------------------------------------------------------------- /src/mods/22-ubiquity-patch/slides/l10n/ko/root.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anduin2017/AnduinOS/HEAD/src/mods/22-ubiquity-patch/slides/l10n/ko/root.html -------------------------------------------------------------------------------- /src/mods/22-ubiquity-patch/slides/l10n/ko/support.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anduin2017/AnduinOS/HEAD/src/mods/22-ubiquity-patch/slides/l10n/ko/support.html -------------------------------------------------------------------------------- /src/mods/22-ubiquity-patch/slides/l10n/ko/welcome.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anduin2017/AnduinOS/HEAD/src/mods/22-ubiquity-patch/slides/l10n/ko/welcome.html -------------------------------------------------------------------------------- /src/mods/22-ubiquity-patch/slides/l10n/nl/apps.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anduin2017/AnduinOS/HEAD/src/mods/22-ubiquity-patch/slides/l10n/nl/apps.html -------------------------------------------------------------------------------- /src/mods/22-ubiquity-patch/slides/l10n/nl/build.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anduin2017/AnduinOS/HEAD/src/mods/22-ubiquity-patch/slides/l10n/nl/build.html -------------------------------------------------------------------------------- /src/mods/22-ubiquity-patch/slides/l10n/nl/gaming.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anduin2017/AnduinOS/HEAD/src/mods/22-ubiquity-patch/slides/l10n/nl/gaming.html -------------------------------------------------------------------------------- /src/mods/22-ubiquity-patch/slides/l10n/nl/privacy.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anduin2017/AnduinOS/HEAD/src/mods/22-ubiquity-patch/slides/l10n/nl/privacy.html -------------------------------------------------------------------------------- /src/mods/22-ubiquity-patch/slides/l10n/nl/root.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anduin2017/AnduinOS/HEAD/src/mods/22-ubiquity-patch/slides/l10n/nl/root.html -------------------------------------------------------------------------------- /src/mods/22-ubiquity-patch/slides/l10n/nl/support.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anduin2017/AnduinOS/HEAD/src/mods/22-ubiquity-patch/slides/l10n/nl/support.html -------------------------------------------------------------------------------- /src/mods/22-ubiquity-patch/slides/l10n/nl/welcome.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anduin2017/AnduinOS/HEAD/src/mods/22-ubiquity-patch/slides/l10n/nl/welcome.html -------------------------------------------------------------------------------- /src/mods/22-ubiquity-patch/slides/l10n/pl/apps.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anduin2017/AnduinOS/HEAD/src/mods/22-ubiquity-patch/slides/l10n/pl/apps.html -------------------------------------------------------------------------------- /src/mods/22-ubiquity-patch/slides/l10n/pl/build.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anduin2017/AnduinOS/HEAD/src/mods/22-ubiquity-patch/slides/l10n/pl/build.html -------------------------------------------------------------------------------- /src/mods/22-ubiquity-patch/slides/l10n/pl/gaming.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anduin2017/AnduinOS/HEAD/src/mods/22-ubiquity-patch/slides/l10n/pl/gaming.html -------------------------------------------------------------------------------- /src/mods/22-ubiquity-patch/slides/l10n/pl/privacy.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anduin2017/AnduinOS/HEAD/src/mods/22-ubiquity-patch/slides/l10n/pl/privacy.html -------------------------------------------------------------------------------- /src/mods/22-ubiquity-patch/slides/l10n/pl/root.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anduin2017/AnduinOS/HEAD/src/mods/22-ubiquity-patch/slides/l10n/pl/root.html -------------------------------------------------------------------------------- /src/mods/22-ubiquity-patch/slides/l10n/pl/support.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anduin2017/AnduinOS/HEAD/src/mods/22-ubiquity-patch/slides/l10n/pl/support.html -------------------------------------------------------------------------------- /src/mods/22-ubiquity-patch/slides/l10n/pl/welcome.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anduin2017/AnduinOS/HEAD/src/mods/22-ubiquity-patch/slides/l10n/pl/welcome.html -------------------------------------------------------------------------------- /src/mods/22-ubiquity-patch/slides/l10n/pt/apps.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anduin2017/AnduinOS/HEAD/src/mods/22-ubiquity-patch/slides/l10n/pt/apps.html -------------------------------------------------------------------------------- /src/mods/22-ubiquity-patch/slides/l10n/pt/build.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anduin2017/AnduinOS/HEAD/src/mods/22-ubiquity-patch/slides/l10n/pt/build.html -------------------------------------------------------------------------------- /src/mods/22-ubiquity-patch/slides/l10n/pt/gaming.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anduin2017/AnduinOS/HEAD/src/mods/22-ubiquity-patch/slides/l10n/pt/gaming.html -------------------------------------------------------------------------------- /src/mods/22-ubiquity-patch/slides/l10n/pt/privacy.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anduin2017/AnduinOS/HEAD/src/mods/22-ubiquity-patch/slides/l10n/pt/privacy.html -------------------------------------------------------------------------------- /src/mods/22-ubiquity-patch/slides/l10n/pt/root.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anduin2017/AnduinOS/HEAD/src/mods/22-ubiquity-patch/slides/l10n/pt/root.html -------------------------------------------------------------------------------- /src/mods/22-ubiquity-patch/slides/l10n/pt/support.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anduin2017/AnduinOS/HEAD/src/mods/22-ubiquity-patch/slides/l10n/pt/support.html -------------------------------------------------------------------------------- /src/mods/22-ubiquity-patch/slides/l10n/pt/welcome.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anduin2017/AnduinOS/HEAD/src/mods/22-ubiquity-patch/slides/l10n/pt/welcome.html -------------------------------------------------------------------------------- /src/mods/22-ubiquity-patch/slides/l10n/pt_BR/apps.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anduin2017/AnduinOS/HEAD/src/mods/22-ubiquity-patch/slides/l10n/pt_BR/apps.html -------------------------------------------------------------------------------- /src/mods/22-ubiquity-patch/slides/l10n/pt_BR/build.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anduin2017/AnduinOS/HEAD/src/mods/22-ubiquity-patch/slides/l10n/pt_BR/build.html -------------------------------------------------------------------------------- /src/mods/22-ubiquity-patch/slides/l10n/pt_BR/gaming.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anduin2017/AnduinOS/HEAD/src/mods/22-ubiquity-patch/slides/l10n/pt_BR/gaming.html -------------------------------------------------------------------------------- /src/mods/22-ubiquity-patch/slides/l10n/pt_BR/privacy.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anduin2017/AnduinOS/HEAD/src/mods/22-ubiquity-patch/slides/l10n/pt_BR/privacy.html -------------------------------------------------------------------------------- /src/mods/22-ubiquity-patch/slides/l10n/pt_BR/root.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anduin2017/AnduinOS/HEAD/src/mods/22-ubiquity-patch/slides/l10n/pt_BR/root.html -------------------------------------------------------------------------------- /src/mods/22-ubiquity-patch/slides/l10n/pt_BR/support.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anduin2017/AnduinOS/HEAD/src/mods/22-ubiquity-patch/slides/l10n/pt_BR/support.html -------------------------------------------------------------------------------- /src/mods/22-ubiquity-patch/slides/l10n/pt_BR/welcome.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anduin2017/AnduinOS/HEAD/src/mods/22-ubiquity-patch/slides/l10n/pt_BR/welcome.html -------------------------------------------------------------------------------- /src/mods/22-ubiquity-patch/slides/l10n/ro/apps.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anduin2017/AnduinOS/HEAD/src/mods/22-ubiquity-patch/slides/l10n/ro/apps.html -------------------------------------------------------------------------------- /src/mods/22-ubiquity-patch/slides/l10n/ro/build.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anduin2017/AnduinOS/HEAD/src/mods/22-ubiquity-patch/slides/l10n/ro/build.html -------------------------------------------------------------------------------- /src/mods/22-ubiquity-patch/slides/l10n/ro/gaming.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anduin2017/AnduinOS/HEAD/src/mods/22-ubiquity-patch/slides/l10n/ro/gaming.html -------------------------------------------------------------------------------- /src/mods/22-ubiquity-patch/slides/l10n/ro/privacy.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anduin2017/AnduinOS/HEAD/src/mods/22-ubiquity-patch/slides/l10n/ro/privacy.html -------------------------------------------------------------------------------- /src/mods/22-ubiquity-patch/slides/l10n/ro/root.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anduin2017/AnduinOS/HEAD/src/mods/22-ubiquity-patch/slides/l10n/ro/root.html -------------------------------------------------------------------------------- /src/mods/22-ubiquity-patch/slides/l10n/ro/support.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anduin2017/AnduinOS/HEAD/src/mods/22-ubiquity-patch/slides/l10n/ro/support.html -------------------------------------------------------------------------------- /src/mods/22-ubiquity-patch/slides/l10n/ro/welcome.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anduin2017/AnduinOS/HEAD/src/mods/22-ubiquity-patch/slides/l10n/ro/welcome.html -------------------------------------------------------------------------------- /src/mods/22-ubiquity-patch/slides/l10n/ru/apps.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anduin2017/AnduinOS/HEAD/src/mods/22-ubiquity-patch/slides/l10n/ru/apps.html -------------------------------------------------------------------------------- /src/mods/22-ubiquity-patch/slides/l10n/ru/build.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anduin2017/AnduinOS/HEAD/src/mods/22-ubiquity-patch/slides/l10n/ru/build.html -------------------------------------------------------------------------------- /src/mods/22-ubiquity-patch/slides/l10n/ru/gaming.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anduin2017/AnduinOS/HEAD/src/mods/22-ubiquity-patch/slides/l10n/ru/gaming.html -------------------------------------------------------------------------------- /src/mods/22-ubiquity-patch/slides/l10n/ru/privacy.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anduin2017/AnduinOS/HEAD/src/mods/22-ubiquity-patch/slides/l10n/ru/privacy.html -------------------------------------------------------------------------------- /src/mods/22-ubiquity-patch/slides/l10n/ru/root.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anduin2017/AnduinOS/HEAD/src/mods/22-ubiquity-patch/slides/l10n/ru/root.html -------------------------------------------------------------------------------- /src/mods/22-ubiquity-patch/slides/l10n/ru/support.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anduin2017/AnduinOS/HEAD/src/mods/22-ubiquity-patch/slides/l10n/ru/support.html -------------------------------------------------------------------------------- /src/mods/22-ubiquity-patch/slides/l10n/ru/welcome.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anduin2017/AnduinOS/HEAD/src/mods/22-ubiquity-patch/slides/l10n/ru/welcome.html -------------------------------------------------------------------------------- /src/mods/22-ubiquity-patch/slides/l10n/sv/apps.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anduin2017/AnduinOS/HEAD/src/mods/22-ubiquity-patch/slides/l10n/sv/apps.html -------------------------------------------------------------------------------- /src/mods/22-ubiquity-patch/slides/l10n/sv/build.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anduin2017/AnduinOS/HEAD/src/mods/22-ubiquity-patch/slides/l10n/sv/build.html -------------------------------------------------------------------------------- /src/mods/22-ubiquity-patch/slides/l10n/sv/gaming.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anduin2017/AnduinOS/HEAD/src/mods/22-ubiquity-patch/slides/l10n/sv/gaming.html -------------------------------------------------------------------------------- /src/mods/22-ubiquity-patch/slides/l10n/sv/privacy.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anduin2017/AnduinOS/HEAD/src/mods/22-ubiquity-patch/slides/l10n/sv/privacy.html -------------------------------------------------------------------------------- /src/mods/22-ubiquity-patch/slides/l10n/sv/root.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anduin2017/AnduinOS/HEAD/src/mods/22-ubiquity-patch/slides/l10n/sv/root.html -------------------------------------------------------------------------------- /src/mods/22-ubiquity-patch/slides/l10n/sv/support.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anduin2017/AnduinOS/HEAD/src/mods/22-ubiquity-patch/slides/l10n/sv/support.html -------------------------------------------------------------------------------- /src/mods/22-ubiquity-patch/slides/l10n/sv/welcome.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anduin2017/AnduinOS/HEAD/src/mods/22-ubiquity-patch/slides/l10n/sv/welcome.html -------------------------------------------------------------------------------- /src/mods/22-ubiquity-patch/slides/l10n/th/apps.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anduin2017/AnduinOS/HEAD/src/mods/22-ubiquity-patch/slides/l10n/th/apps.html -------------------------------------------------------------------------------- /src/mods/22-ubiquity-patch/slides/l10n/th/build.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anduin2017/AnduinOS/HEAD/src/mods/22-ubiquity-patch/slides/l10n/th/build.html -------------------------------------------------------------------------------- /src/mods/22-ubiquity-patch/slides/l10n/th/gaming.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anduin2017/AnduinOS/HEAD/src/mods/22-ubiquity-patch/slides/l10n/th/gaming.html -------------------------------------------------------------------------------- /src/mods/22-ubiquity-patch/slides/l10n/th/privacy.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anduin2017/AnduinOS/HEAD/src/mods/22-ubiquity-patch/slides/l10n/th/privacy.html -------------------------------------------------------------------------------- /src/mods/22-ubiquity-patch/slides/l10n/th/root.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anduin2017/AnduinOS/HEAD/src/mods/22-ubiquity-patch/slides/l10n/th/root.html -------------------------------------------------------------------------------- /src/mods/22-ubiquity-patch/slides/l10n/th/support.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anduin2017/AnduinOS/HEAD/src/mods/22-ubiquity-patch/slides/l10n/th/support.html -------------------------------------------------------------------------------- /src/mods/22-ubiquity-patch/slides/l10n/th/welcome.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anduin2017/AnduinOS/HEAD/src/mods/22-ubiquity-patch/slides/l10n/th/welcome.html -------------------------------------------------------------------------------- /src/mods/22-ubiquity-patch/slides/l10n/tr/apps.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anduin2017/AnduinOS/HEAD/src/mods/22-ubiquity-patch/slides/l10n/tr/apps.html -------------------------------------------------------------------------------- /src/mods/22-ubiquity-patch/slides/l10n/tr/build.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anduin2017/AnduinOS/HEAD/src/mods/22-ubiquity-patch/slides/l10n/tr/build.html -------------------------------------------------------------------------------- /src/mods/22-ubiquity-patch/slides/l10n/tr/gaming.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anduin2017/AnduinOS/HEAD/src/mods/22-ubiquity-patch/slides/l10n/tr/gaming.html -------------------------------------------------------------------------------- /src/mods/22-ubiquity-patch/slides/l10n/tr/privacy.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anduin2017/AnduinOS/HEAD/src/mods/22-ubiquity-patch/slides/l10n/tr/privacy.html -------------------------------------------------------------------------------- /src/mods/22-ubiquity-patch/slides/l10n/tr/root.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anduin2017/AnduinOS/HEAD/src/mods/22-ubiquity-patch/slides/l10n/tr/root.html -------------------------------------------------------------------------------- /src/mods/22-ubiquity-patch/slides/l10n/tr/support.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anduin2017/AnduinOS/HEAD/src/mods/22-ubiquity-patch/slides/l10n/tr/support.html -------------------------------------------------------------------------------- /src/mods/22-ubiquity-patch/slides/l10n/tr/welcome.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anduin2017/AnduinOS/HEAD/src/mods/22-ubiquity-patch/slides/l10n/tr/welcome.html -------------------------------------------------------------------------------- /src/mods/22-ubiquity-patch/slides/l10n/vi/apps.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anduin2017/AnduinOS/HEAD/src/mods/22-ubiquity-patch/slides/l10n/vi/apps.html -------------------------------------------------------------------------------- /src/mods/22-ubiquity-patch/slides/l10n/vi/build.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anduin2017/AnduinOS/HEAD/src/mods/22-ubiquity-patch/slides/l10n/vi/build.html -------------------------------------------------------------------------------- /src/mods/22-ubiquity-patch/slides/l10n/vi/gaming.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anduin2017/AnduinOS/HEAD/src/mods/22-ubiquity-patch/slides/l10n/vi/gaming.html -------------------------------------------------------------------------------- /src/mods/22-ubiquity-patch/slides/l10n/vi/privacy.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anduin2017/AnduinOS/HEAD/src/mods/22-ubiquity-patch/slides/l10n/vi/privacy.html -------------------------------------------------------------------------------- /src/mods/22-ubiquity-patch/slides/l10n/vi/root.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anduin2017/AnduinOS/HEAD/src/mods/22-ubiquity-patch/slides/l10n/vi/root.html -------------------------------------------------------------------------------- /src/mods/22-ubiquity-patch/slides/l10n/vi/support.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anduin2017/AnduinOS/HEAD/src/mods/22-ubiquity-patch/slides/l10n/vi/support.html -------------------------------------------------------------------------------- /src/mods/22-ubiquity-patch/slides/l10n/vi/welcome.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anduin2017/AnduinOS/HEAD/src/mods/22-ubiquity-patch/slides/l10n/vi/welcome.html -------------------------------------------------------------------------------- /src/mods/22-ubiquity-patch/slides/l10n/zh_CN/apps.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anduin2017/AnduinOS/HEAD/src/mods/22-ubiquity-patch/slides/l10n/zh_CN/apps.html -------------------------------------------------------------------------------- /src/mods/22-ubiquity-patch/slides/l10n/zh_CN/build.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anduin2017/AnduinOS/HEAD/src/mods/22-ubiquity-patch/slides/l10n/zh_CN/build.html -------------------------------------------------------------------------------- /src/mods/22-ubiquity-patch/slides/l10n/zh_CN/gaming.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anduin2017/AnduinOS/HEAD/src/mods/22-ubiquity-patch/slides/l10n/zh_CN/gaming.html -------------------------------------------------------------------------------- /src/mods/22-ubiquity-patch/slides/l10n/zh_CN/privacy.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anduin2017/AnduinOS/HEAD/src/mods/22-ubiquity-patch/slides/l10n/zh_CN/privacy.html -------------------------------------------------------------------------------- /src/mods/22-ubiquity-patch/slides/l10n/zh_CN/root.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anduin2017/AnduinOS/HEAD/src/mods/22-ubiquity-patch/slides/l10n/zh_CN/root.html -------------------------------------------------------------------------------- /src/mods/22-ubiquity-patch/slides/l10n/zh_CN/support.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anduin2017/AnduinOS/HEAD/src/mods/22-ubiquity-patch/slides/l10n/zh_CN/support.html -------------------------------------------------------------------------------- /src/mods/22-ubiquity-patch/slides/l10n/zh_CN/welcome.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anduin2017/AnduinOS/HEAD/src/mods/22-ubiquity-patch/slides/l10n/zh_CN/welcome.html -------------------------------------------------------------------------------- /src/mods/22-ubiquity-patch/slides/l10n/zh_HK/apps.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anduin2017/AnduinOS/HEAD/src/mods/22-ubiquity-patch/slides/l10n/zh_HK/apps.html -------------------------------------------------------------------------------- /src/mods/22-ubiquity-patch/slides/l10n/zh_HK/build.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anduin2017/AnduinOS/HEAD/src/mods/22-ubiquity-patch/slides/l10n/zh_HK/build.html -------------------------------------------------------------------------------- /src/mods/22-ubiquity-patch/slides/l10n/zh_HK/gaming.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anduin2017/AnduinOS/HEAD/src/mods/22-ubiquity-patch/slides/l10n/zh_HK/gaming.html -------------------------------------------------------------------------------- /src/mods/22-ubiquity-patch/slides/l10n/zh_HK/privacy.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anduin2017/AnduinOS/HEAD/src/mods/22-ubiquity-patch/slides/l10n/zh_HK/privacy.html -------------------------------------------------------------------------------- /src/mods/22-ubiquity-patch/slides/l10n/zh_HK/root.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anduin2017/AnduinOS/HEAD/src/mods/22-ubiquity-patch/slides/l10n/zh_HK/root.html -------------------------------------------------------------------------------- /src/mods/22-ubiquity-patch/slides/l10n/zh_HK/support.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anduin2017/AnduinOS/HEAD/src/mods/22-ubiquity-patch/slides/l10n/zh_HK/support.html -------------------------------------------------------------------------------- /src/mods/22-ubiquity-patch/slides/l10n/zh_HK/welcome.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anduin2017/AnduinOS/HEAD/src/mods/22-ubiquity-patch/slides/l10n/zh_HK/welcome.html -------------------------------------------------------------------------------- /src/mods/22-ubiquity-patch/slides/l10n/zh_TW/apps.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anduin2017/AnduinOS/HEAD/src/mods/22-ubiquity-patch/slides/l10n/zh_TW/apps.html -------------------------------------------------------------------------------- /src/mods/22-ubiquity-patch/slides/l10n/zh_TW/build.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anduin2017/AnduinOS/HEAD/src/mods/22-ubiquity-patch/slides/l10n/zh_TW/build.html -------------------------------------------------------------------------------- /src/mods/22-ubiquity-patch/slides/l10n/zh_TW/gaming.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anduin2017/AnduinOS/HEAD/src/mods/22-ubiquity-patch/slides/l10n/zh_TW/gaming.html -------------------------------------------------------------------------------- /src/mods/22-ubiquity-patch/slides/l10n/zh_TW/privacy.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anduin2017/AnduinOS/HEAD/src/mods/22-ubiquity-patch/slides/l10n/zh_TW/privacy.html -------------------------------------------------------------------------------- /src/mods/22-ubiquity-patch/slides/l10n/zh_TW/root.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anduin2017/AnduinOS/HEAD/src/mods/22-ubiquity-patch/slides/l10n/zh_TW/root.html -------------------------------------------------------------------------------- /src/mods/22-ubiquity-patch/slides/l10n/zh_TW/support.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anduin2017/AnduinOS/HEAD/src/mods/22-ubiquity-patch/slides/l10n/zh_TW/support.html -------------------------------------------------------------------------------- /src/mods/22-ubiquity-patch/slides/l10n/zh_TW/welcome.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anduin2017/AnduinOS/HEAD/src/mods/22-ubiquity-patch/slides/l10n/zh_TW/welcome.html -------------------------------------------------------------------------------- /src/mods/22-ubiquity-patch/slides/link-core/base.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anduin2017/AnduinOS/HEAD/src/mods/22-ubiquity-patch/slides/link-core/base.js -------------------------------------------------------------------------------- /src/mods/22-ubiquity-patch/slides/link-core/jquery.cycle.all.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anduin2017/AnduinOS/HEAD/src/mods/22-ubiquity-patch/slides/link-core/jquery.cycle.all.js -------------------------------------------------------------------------------- /src/mods/22-ubiquity-patch/slides/link-core/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anduin2017/AnduinOS/HEAD/src/mods/22-ubiquity-patch/slides/link-core/jquery.js -------------------------------------------------------------------------------- /src/mods/22-ubiquity-patch/slides/link-core/slideshow.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anduin2017/AnduinOS/HEAD/src/mods/22-ubiquity-patch/slides/link-core/slideshow.js -------------------------------------------------------------------------------- /src/mods/22-ubiquity-patch/slides/link/arrow-back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anduin2017/AnduinOS/HEAD/src/mods/22-ubiquity-patch/slides/link/arrow-back.png -------------------------------------------------------------------------------- /src/mods/22-ubiquity-patch/slides/link/arrow-next.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anduin2017/AnduinOS/HEAD/src/mods/22-ubiquity-patch/slides/link/arrow-next.png -------------------------------------------------------------------------------- /src/mods/22-ubiquity-patch/slides/link/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anduin2017/AnduinOS/HEAD/src/mods/22-ubiquity-patch/slides/link/background.png -------------------------------------------------------------------------------- /src/mods/22-ubiquity-patch/slides/link/base.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anduin2017/AnduinOS/HEAD/src/mods/22-ubiquity-patch/slides/link/base.css -------------------------------------------------------------------------------- /src/mods/22-ubiquity-patch/slides/link/bullet-point.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anduin2017/AnduinOS/HEAD/src/mods/22-ubiquity-patch/slides/link/bullet-point.png -------------------------------------------------------------------------------- /src/mods/22-ubiquity-patch/slides/privacy.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anduin2017/AnduinOS/HEAD/src/mods/22-ubiquity-patch/slides/privacy.html -------------------------------------------------------------------------------- /src/mods/22-ubiquity-patch/slides/root.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anduin2017/AnduinOS/HEAD/src/mods/22-ubiquity-patch/slides/root.html -------------------------------------------------------------------------------- /src/mods/22-ubiquity-patch/slides/screenshots/gaming.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anduin2017/AnduinOS/HEAD/src/mods/22-ubiquity-patch/slides/screenshots/gaming.png -------------------------------------------------------------------------------- /src/mods/22-ubiquity-patch/slides/screenshots/jb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anduin2017/AnduinOS/HEAD/src/mods/22-ubiquity-patch/slides/screenshots/jb.png -------------------------------------------------------------------------------- /src/mods/22-ubiquity-patch/slides/screenshots/pv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anduin2017/AnduinOS/HEAD/src/mods/22-ubiquity-patch/slides/screenshots/pv.png -------------------------------------------------------------------------------- /src/mods/22-ubiquity-patch/slides/screenshots/sc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anduin2017/AnduinOS/HEAD/src/mods/22-ubiquity-patch/slides/screenshots/sc.png -------------------------------------------------------------------------------- /src/mods/22-ubiquity-patch/slides/screenshots/st.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anduin2017/AnduinOS/HEAD/src/mods/22-ubiquity-patch/slides/screenshots/st.png -------------------------------------------------------------------------------- /src/mods/22-ubiquity-patch/slides/screenshots/welcome.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anduin2017/AnduinOS/HEAD/src/mods/22-ubiquity-patch/slides/screenshots/welcome.png -------------------------------------------------------------------------------- /src/mods/22-ubiquity-patch/slides/support.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anduin2017/AnduinOS/HEAD/src/mods/22-ubiquity-patch/slides/support.html -------------------------------------------------------------------------------- /src/mods/22-ubiquity-patch/slides/welcome.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anduin2017/AnduinOS/HEAD/src/mods/22-ubiquity-patch/slides/welcome.html -------------------------------------------------------------------------------- /src/mods/23-software-properties-common-patch/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anduin2017/AnduinOS/HEAD/src/mods/23-software-properties-common-patch/install.sh -------------------------------------------------------------------------------- /src/mods/23-software-properties-gtk/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anduin2017/AnduinOS/HEAD/src/mods/23-software-properties-gtk/install.sh -------------------------------------------------------------------------------- /src/mods/23-wallpaper-mod/Fluent-building-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anduin2017/AnduinOS/HEAD/src/mods/23-wallpaper-mod/Fluent-building-light.png -------------------------------------------------------------------------------- /src/mods/23-wallpaper-mod/Fluent-building-night.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anduin2017/AnduinOS/HEAD/src/mods/23-wallpaper-mod/Fluent-building-night.png -------------------------------------------------------------------------------- /src/mods/23-wallpaper-mod/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anduin2017/AnduinOS/HEAD/src/mods/23-wallpaper-mod/install.sh -------------------------------------------------------------------------------- /src/mods/24-fluent-icon-theme/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anduin2017/AnduinOS/HEAD/src/mods/24-fluent-icon-theme/install.sh -------------------------------------------------------------------------------- /src/mods/25-fluent-gtk-theme/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anduin2017/AnduinOS/HEAD/src/mods/25-fluent-gtk-theme/install.sh -------------------------------------------------------------------------------- /src/mods/26-gnome-extensions-installer/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anduin2017/AnduinOS/HEAD/src/mods/26-gnome-extensions-installer/install.sh -------------------------------------------------------------------------------- /src/mods/27-dash-to-panel-patch-mod/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anduin2017/AnduinOS/HEAD/src/mods/27-dash-to-panel-patch-mod/install.sh -------------------------------------------------------------------------------- /src/mods/27-gnome-extensions-remover/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anduin2017/AnduinOS/HEAD/src/mods/27-gnome-extensions-remover/install.sh -------------------------------------------------------------------------------- /src/mods/28-gnome-extensions-system-archiver/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anduin2017/AnduinOS/HEAD/src/mods/28-gnome-extensions-system-archiver/install.sh -------------------------------------------------------------------------------- /src/mods/29-gnome-extension-anduinos-loc/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anduin2017/AnduinOS/HEAD/src/mods/29-gnome-extension-anduinos-loc/install.sh -------------------------------------------------------------------------------- /src/mods/29-gnome-extension-anduinos-loc/loc@anduinos.com/extension.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anduin2017/AnduinOS/HEAD/src/mods/29-gnome-extension-anduinos-loc/loc@anduinos.com/extension.js -------------------------------------------------------------------------------- /src/mods/29-gnome-extension-anduinos-loc/loc@anduinos.com/locale/ar_SA/LC_MESSAGES/loc@anduinos.com.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anduin2017/AnduinOS/HEAD/src/mods/29-gnome-extension-anduinos-loc/loc@anduinos.com/locale/ar_SA/LC_MESSAGES/loc@anduinos.com.mo -------------------------------------------------------------------------------- /src/mods/29-gnome-extension-anduinos-loc/loc@anduinos.com/locale/de_DE/LC_MESSAGES/loc@anduinos.com.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anduin2017/AnduinOS/HEAD/src/mods/29-gnome-extension-anduinos-loc/loc@anduinos.com/locale/de_DE/LC_MESSAGES/loc@anduinos.com.mo -------------------------------------------------------------------------------- /src/mods/29-gnome-extension-anduinos-loc/loc@anduinos.com/locale/en_US/LC_MESSAGES/loc@anduinos.com.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anduin2017/AnduinOS/HEAD/src/mods/29-gnome-extension-anduinos-loc/loc@anduinos.com/locale/en_US/LC_MESSAGES/loc@anduinos.com.mo -------------------------------------------------------------------------------- /src/mods/29-gnome-extension-anduinos-loc/loc@anduinos.com/locale/es_ES/LC_MESSAGES/loc@anduinos.com.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anduin2017/AnduinOS/HEAD/src/mods/29-gnome-extension-anduinos-loc/loc@anduinos.com/locale/es_ES/LC_MESSAGES/loc@anduinos.com.mo -------------------------------------------------------------------------------- /src/mods/29-gnome-extension-anduinos-loc/loc@anduinos.com/locale/fr_FR/LC_MESSAGES/loc@anduinos.com.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anduin2017/AnduinOS/HEAD/src/mods/29-gnome-extension-anduinos-loc/loc@anduinos.com/locale/fr_FR/LC_MESSAGES/loc@anduinos.com.mo -------------------------------------------------------------------------------- /src/mods/29-gnome-extension-anduinos-loc/loc@anduinos.com/locale/it_IT/LC_MESSAGES/loc@anduinos.com.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anduin2017/AnduinOS/HEAD/src/mods/29-gnome-extension-anduinos-loc/loc@anduinos.com/locale/it_IT/LC_MESSAGES/loc@anduinos.com.mo -------------------------------------------------------------------------------- /src/mods/29-gnome-extension-anduinos-loc/loc@anduinos.com/locale/ja_JP/LC_MESSAGES/loc@anduinos.com.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anduin2017/AnduinOS/HEAD/src/mods/29-gnome-extension-anduinos-loc/loc@anduinos.com/locale/ja_JP/LC_MESSAGES/loc@anduinos.com.mo -------------------------------------------------------------------------------- /src/mods/29-gnome-extension-anduinos-loc/loc@anduinos.com/locale/ko_KR/LC_MESSAGES/loc@anduinos.com.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anduin2017/AnduinOS/HEAD/src/mods/29-gnome-extension-anduinos-loc/loc@anduinos.com/locale/ko_KR/LC_MESSAGES/loc@anduinos.com.mo -------------------------------------------------------------------------------- /src/mods/29-gnome-extension-anduinos-loc/loc@anduinos.com/locale/nl_NL/LC_MESSAGES/loc@anduinos.com.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anduin2017/AnduinOS/HEAD/src/mods/29-gnome-extension-anduinos-loc/loc@anduinos.com/locale/nl_NL/LC_MESSAGES/loc@anduinos.com.mo -------------------------------------------------------------------------------- /src/mods/29-gnome-extension-anduinos-loc/loc@anduinos.com/locale/pl_PL/LC_MESSAGES/loc@anduinos.com.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anduin2017/AnduinOS/HEAD/src/mods/29-gnome-extension-anduinos-loc/loc@anduinos.com/locale/pl_PL/LC_MESSAGES/loc@anduinos.com.mo -------------------------------------------------------------------------------- /src/mods/29-gnome-extension-anduinos-loc/loc@anduinos.com/locale/pt_BR/LC_MESSAGES/loc@anduinos.com.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anduin2017/AnduinOS/HEAD/src/mods/29-gnome-extension-anduinos-loc/loc@anduinos.com/locale/pt_BR/LC_MESSAGES/loc@anduinos.com.mo -------------------------------------------------------------------------------- /src/mods/29-gnome-extension-anduinos-loc/loc@anduinos.com/locale/pt_PT/LC_MESSAGES/loc@anduinos.com.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anduin2017/AnduinOS/HEAD/src/mods/29-gnome-extension-anduinos-loc/loc@anduinos.com/locale/pt_PT/LC_MESSAGES/loc@anduinos.com.mo -------------------------------------------------------------------------------- /src/mods/29-gnome-extension-anduinos-loc/loc@anduinos.com/locale/ro_RO/LC_MESSAGES/loc@anduinos.com.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anduin2017/AnduinOS/HEAD/src/mods/29-gnome-extension-anduinos-loc/loc@anduinos.com/locale/ro_RO/LC_MESSAGES/loc@anduinos.com.mo -------------------------------------------------------------------------------- /src/mods/29-gnome-extension-anduinos-loc/loc@anduinos.com/locale/ru_RU/LC_MESSAGES/loc@anduinos.com.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anduin2017/AnduinOS/HEAD/src/mods/29-gnome-extension-anduinos-loc/loc@anduinos.com/locale/ru_RU/LC_MESSAGES/loc@anduinos.com.mo -------------------------------------------------------------------------------- /src/mods/29-gnome-extension-anduinos-loc/loc@anduinos.com/locale/sv_SE/LC_MESSAGES/loc@anduinos.com.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anduin2017/AnduinOS/HEAD/src/mods/29-gnome-extension-anduinos-loc/loc@anduinos.com/locale/sv_SE/LC_MESSAGES/loc@anduinos.com.mo -------------------------------------------------------------------------------- /src/mods/29-gnome-extension-anduinos-loc/loc@anduinos.com/locale/th_TH/LC_MESSAGES/loc@anduinos.com.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anduin2017/AnduinOS/HEAD/src/mods/29-gnome-extension-anduinos-loc/loc@anduinos.com/locale/th_TH/LC_MESSAGES/loc@anduinos.com.mo -------------------------------------------------------------------------------- /src/mods/29-gnome-extension-anduinos-loc/loc@anduinos.com/locale/tr_TR/LC_MESSAGES/loc@anduinos.com.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anduin2017/AnduinOS/HEAD/src/mods/29-gnome-extension-anduinos-loc/loc@anduinos.com/locale/tr_TR/LC_MESSAGES/loc@anduinos.com.mo -------------------------------------------------------------------------------- /src/mods/29-gnome-extension-anduinos-loc/loc@anduinos.com/locale/vi_VN/LC_MESSAGES/loc@anduinos.com.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anduin2017/AnduinOS/HEAD/src/mods/29-gnome-extension-anduinos-loc/loc@anduinos.com/locale/vi_VN/LC_MESSAGES/loc@anduinos.com.mo -------------------------------------------------------------------------------- /src/mods/29-gnome-extension-anduinos-loc/loc@anduinos.com/locale/zh_CN/LC_MESSAGES/loc@anduinos.com.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anduin2017/AnduinOS/HEAD/src/mods/29-gnome-extension-anduinos-loc/loc@anduinos.com/locale/zh_CN/LC_MESSAGES/loc@anduinos.com.mo -------------------------------------------------------------------------------- /src/mods/29-gnome-extension-anduinos-loc/loc@anduinos.com/locale/zh_HK/LC_MESSAGES/loc@anduinos.com.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anduin2017/AnduinOS/HEAD/src/mods/29-gnome-extension-anduinos-loc/loc@anduinos.com/locale/zh_HK/LC_MESSAGES/loc@anduinos.com.mo -------------------------------------------------------------------------------- /src/mods/29-gnome-extension-anduinos-loc/loc@anduinos.com/locale/zh_TW/LC_MESSAGES/loc@anduinos.com.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anduin2017/AnduinOS/HEAD/src/mods/29-gnome-extension-anduinos-loc/loc@anduinos.com/locale/zh_TW/LC_MESSAGES/loc@anduinos.com.mo -------------------------------------------------------------------------------- /src/mods/29-gnome-extension-anduinos-loc/loc@anduinos.com/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anduin2017/AnduinOS/HEAD/src/mods/29-gnome-extension-anduinos-loc/loc@anduinos.com/metadata.json -------------------------------------------------------------------------------- /src/mods/29-gnome-extension-anduinos-switcher/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anduin2017/AnduinOS/HEAD/src/mods/29-gnome-extension-anduinos-switcher/install.sh -------------------------------------------------------------------------------- /src/mods/29-gnome-extension-anduinos-switcher/switcher@anduinos/extension.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anduin2017/AnduinOS/HEAD/src/mods/29-gnome-extension-anduinos-switcher/switcher@anduinos/extension.js -------------------------------------------------------------------------------- /src/mods/29-gnome-extension-anduinos-switcher/switcher@anduinos/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anduin2017/AnduinOS/HEAD/src/mods/29-gnome-extension-anduinos-switcher/switcher@anduinos/metadata.json -------------------------------------------------------------------------------- /src/mods/29-gnome-extension-noti-bottom-right/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anduin2017/AnduinOS/HEAD/src/mods/29-gnome-extension-noti-bottom-right/install.sh -------------------------------------------------------------------------------- /src/mods/29-gnome-extension-noti-bottom-right/noti-bottom-right@anduinos/extension.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anduin2017/AnduinOS/HEAD/src/mods/29-gnome-extension-noti-bottom-right/noti-bottom-right@anduinos/extension.js -------------------------------------------------------------------------------- /src/mods/29-gnome-extension-noti-bottom-right/noti-bottom-right@anduinos/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anduin2017/AnduinOS/HEAD/src/mods/29-gnome-extension-noti-bottom-right/noti-bottom-right@anduinos/metadata.json -------------------------------------------------------------------------------- /src/mods/30-gnome-extension-arcmenu-patch/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anduin2017/AnduinOS/HEAD/src/mods/30-gnome-extension-arcmenu-patch/install.sh -------------------------------------------------------------------------------- /src/mods/30-gnome-extension-arcmenu-patch/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anduin2017/AnduinOS/HEAD/src/mods/30-gnome-extension-arcmenu-patch/logo.svg -------------------------------------------------------------------------------- /src/mods/31-gnome-extension-dashtopanel-patch/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anduin2017/AnduinOS/HEAD/src/mods/31-gnome-extension-dashtopanel-patch/install.sh -------------------------------------------------------------------------------- /src/mods/32-gnome-shell-localization-patch/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anduin2017/AnduinOS/HEAD/src/mods/32-gnome-shell-localization-patch/install.sh -------------------------------------------------------------------------------- /src/mods/33-gnome-extensions-enabler/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anduin2017/AnduinOS/HEAD/src/mods/33-gnome-extensions-enabler/install.sh -------------------------------------------------------------------------------- /src/mods/34-input-method-mod/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anduin2017/AnduinOS/HEAD/src/mods/34-input-method-mod/install.sh -------------------------------------------------------------------------------- /src/mods/34-input-method-mod/pkg_depends_patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anduin2017/AnduinOS/HEAD/src/mods/34-input-method-mod/pkg_depends_patch -------------------------------------------------------------------------------- /src/mods/35-dconf-patch/anduinos_text_smaller.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anduin2017/AnduinOS/HEAD/src/mods/35-dconf-patch/anduinos_text_smaller.png -------------------------------------------------------------------------------- /src/mods/35-dconf-patch/dconf.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anduin2017/AnduinOS/HEAD/src/mods/35-dconf-patch/dconf.ini -------------------------------------------------------------------------------- /src/mods/35-dconf-patch/greeter.dconf-defaults.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anduin2017/AnduinOS/HEAD/src/mods/35-dconf-patch/greeter.dconf-defaults.ini -------------------------------------------------------------------------------- /src/mods/35-dconf-patch/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anduin2017/AnduinOS/HEAD/src/mods/35-dconf-patch/install.sh -------------------------------------------------------------------------------- /src/mods/36-ubuntu-logo-text/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anduin2017/AnduinOS/HEAD/src/mods/36-ubuntu-logo-text/install.sh -------------------------------------------------------------------------------- /src/mods/36-ubuntu-logo-text/ubuntu-logo-text-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anduin2017/AnduinOS/HEAD/src/mods/36-ubuntu-logo-text/ubuntu-logo-text-dark.png -------------------------------------------------------------------------------- /src/mods/36-ubuntu-logo-text/ubuntu-logo-text.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anduin2017/AnduinOS/HEAD/src/mods/36-ubuntu-logo-text/ubuntu-logo-text.png -------------------------------------------------------------------------------- /src/mods/37-xdg-mime-mod/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anduin2017/AnduinOS/HEAD/src/mods/37-xdg-mime-mod/install.sh -------------------------------------------------------------------------------- /src/mods/38-root-conf-cleanup/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anduin2017/AnduinOS/HEAD/src/mods/38-root-conf-cleanup/install.sh -------------------------------------------------------------------------------- /src/mods/39-templates-mod/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anduin2017/AnduinOS/HEAD/src/mods/39-templates-mod/install.sh -------------------------------------------------------------------------------- /src/mods/40-do-anduinos-autorepair-mod/do-anduinos-autorepair.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anduin2017/AnduinOS/HEAD/src/mods/40-do-anduinos-autorepair-mod/do-anduinos-autorepair.sh -------------------------------------------------------------------------------- /src/mods/40-do-anduinos-autorepair-mod/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anduin2017/AnduinOS/HEAD/src/mods/40-do-anduinos-autorepair-mod/install.sh -------------------------------------------------------------------------------- /src/mods/40-do-anduinos-upgrade-mod/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anduin2017/AnduinOS/HEAD/src/mods/40-do-anduinos-upgrade-mod/install.sh -------------------------------------------------------------------------------- /src/mods/41-target-apt-mirror-mod/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anduin2017/AnduinOS/HEAD/src/mods/41-target-apt-mirror-mod/install.sh -------------------------------------------------------------------------------- /src/mods/42-gnome-sessions-patch/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anduin2017/AnduinOS/HEAD/src/mods/42-gnome-sessions-patch/install.sh -------------------------------------------------------------------------------- /src/mods/42-intel-thesof-mod/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anduin2017/AnduinOS/HEAD/src/mods/42-intel-thesof-mod/install.sh -------------------------------------------------------------------------------- /src/mods/43-etc-branding-mod/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anduin2017/AnduinOS/HEAD/src/mods/43-etc-branding-mod/install.sh -------------------------------------------------------------------------------- /src/mods/44-casper-patch/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anduin2017/AnduinOS/HEAD/src/mods/44-casper-patch/install.sh -------------------------------------------------------------------------------- /src/mods/45-etc-issue-patch/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anduin2017/AnduinOS/HEAD/src/mods/45-etc-issue-patch/install.sh -------------------------------------------------------------------------------- /src/mods/78-no-advertisements-mod/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anduin2017/AnduinOS/HEAD/src/mods/78-no-advertisements-mod/install.sh -------------------------------------------------------------------------------- /src/mods/79-useless-package-remover/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anduin2017/AnduinOS/HEAD/src/mods/79-useless-package-remover/install.sh -------------------------------------------------------------------------------- /src/mods/80-initramfs-update/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anduin2017/AnduinOS/HEAD/src/mods/80-initramfs-update/install.sh -------------------------------------------------------------------------------- /src/mods/82-locales-config/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anduin2017/AnduinOS/HEAD/src/mods/82-locales-config/install.sh -------------------------------------------------------------------------------- /src/mods/83-network-manager-patch/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anduin2017/AnduinOS/HEAD/src/mods/83-network-manager-patch/install.sh -------------------------------------------------------------------------------- /src/mods/84-apt-cache-cleaner/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anduin2017/AnduinOS/HEAD/src/mods/84-apt-cache-cleaner/install.sh -------------------------------------------------------------------------------- /src/mods/85-machine-id-wiper/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anduin2017/AnduinOS/HEAD/src/mods/85-machine-id-wiper/install.sh -------------------------------------------------------------------------------- /src/mods/86-diversion-remover/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anduin2017/AnduinOS/HEAD/src/mods/86-diversion-remover/install.sh -------------------------------------------------------------------------------- /src/mods/87-history-cleaner/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anduin2017/AnduinOS/HEAD/src/mods/87-history-cleaner/install.sh -------------------------------------------------------------------------------- /src/mods/88-useless-folders-cleaner/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anduin2017/AnduinOS/HEAD/src/mods/88-useless-folders-cleaner/install.sh -------------------------------------------------------------------------------- /src/mods/install_all_mods.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anduin2017/AnduinOS/HEAD/src/mods/install_all_mods.sh -------------------------------------------------------------------------------- /src/repair.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anduin2017/AnduinOS/HEAD/src/repair.sh -------------------------------------------------------------------------------- /src/shared.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anduin2017/AnduinOS/HEAD/src/shared.sh -------------------------------------------------------------------------------- /src/styles/bottom_center.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anduin2017/AnduinOS/HEAD/src/styles/bottom_center.ini -------------------------------------------------------------------------------- /src/styles/bottom_left.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anduin2017/AnduinOS/HEAD/src/styles/bottom_left.ini -------------------------------------------------------------------------------- /src/styles/left_center.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anduin2017/AnduinOS/HEAD/src/styles/left_center.ini -------------------------------------------------------------------------------- /src/styles/left_top.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anduin2017/AnduinOS/HEAD/src/styles/left_top.ini -------------------------------------------------------------------------------- /src/styles/right_center.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anduin2017/AnduinOS/HEAD/src/styles/right_center.ini -------------------------------------------------------------------------------- /src/styles/right_top.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anduin2017/AnduinOS/HEAD/src/styles/right_top.ini -------------------------------------------------------------------------------- /src/styles/top_center.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anduin2017/AnduinOS/HEAD/src/styles/top_center.ini -------------------------------------------------------------------------------- /src/styles/top_left.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anduin2017/AnduinOS/HEAD/src/styles/top_left.ini -------------------------------------------------------------------------------- /src/upgrade.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anduin2017/AnduinOS/HEAD/src/upgrade.sh --------------------------------------------------------------------------------