├── .gitignore ├── .gitmodules ├── LICENCE.md ├── README.md ├── docs └── en │ ├── a11y.md │ ├── architecture.md │ ├── auth.md │ ├── contents.json │ ├── device.md │ ├── filesystem.md │ ├── index.md │ ├── input.md │ ├── l10n.md │ ├── linux.md │ ├── oobs.md │ └── updates.md ├── gshell ├── gshell-xephyr ├── media ├── 10years_ca.svg ├── 10years_en.svg ├── 10years_fr.svg ├── 10years_zh.svg └── oobs │ ├── desktop.svg │ ├── finish.svg │ ├── installask-1.png │ ├── installask-1.svg │ ├── installask-2.png │ ├── installask-2.svg │ ├── installask-screenshot.png │ ├── installask-screenshot1.png │ ├── installask-screenshot2.png │ ├── installask.png │ ├── installask.sifz │ ├── installask.svg │ ├── installconfirm-base.png │ ├── installconfirm-base.svg │ ├── installconfirm-icon.png │ ├── installconfirm-icon.svg │ ├── installconfirm-partitions.png │ ├── installconfirm-partitions.svg │ ├── installconfirm-shadow.png │ ├── installconfirm-shadow.svg │ ├── installconfirm.sifz │ ├── installconfirm.svg │ ├── installdisk-base.png │ ├── installdisk-base.svg │ ├── installdisk-bluedisk.png │ ├── installdisk-bluedisk.svg │ ├── installdisk-top.png │ ├── installdisk-top.svg │ ├── installdisk-yellowdisk.png │ ├── installdisk-yellowdisk.svg │ ├── installdisk.sifz │ ├── installdisk.svg │ ├── installfail.svg │ ├── installfinish.svg │ ├── installpartition-base.png │ ├── installpartition-base.svg │ ├── installpartition-partitions.png │ ├── installpartition-partitions.svg │ ├── installpartition-shadow.png │ ├── installpartition-shadow.svg │ ├── installpartition.sifz │ ├── installpartition.svg │ ├── installprocess-desktop.png │ ├── installprocess-desktop.svg │ ├── installprocess-icon.png │ ├── installprocess-icon.svg │ ├── installprocess.sifz │ ├── installprocess.svg │ ├── interaction-1.png │ ├── interaction-1.svg │ ├── interaction-2.png │ ├── interaction-2.svg │ ├── interaction.png │ ├── interaction.sifz │ ├── interaction.svg │ ├── l10n-computer.png │ ├── l10n-computer.svg │ ├── l10n-keyboard.png │ ├── l10n-keyboard.svg │ ├── l10n-mouse.png │ ├── l10n-mouse.svg │ ├── l10n.sifz │ ├── l10n.svg │ ├── makevideo.sh │ ├── userprofile-desktop.png │ ├── userprofile-desktop.svg │ ├── userprofile-icon.png │ ├── userprofile-icon.svg │ ├── userprofile.sifz │ ├── userprofile.svg │ ├── welcome.png │ ├── welcome.sifz │ └── welcome.svg ├── package.json ├── res └── 512x512.png ├── shell ├── a11y │ ├── a11y.js │ ├── l10nkeys.json │ ├── panel.css │ ├── panel.js │ ├── readout.js │ ├── switch.css │ └── switch.js ├── about.js ├── apps │ ├── defaults.json │ ├── investigator │ │ ├── console.js │ │ ├── icon.svg │ │ ├── index.html │ │ ├── locales │ │ │ ├── ca_ES.json │ │ │ ├── en_GB.json │ │ │ └── fr_FR.json │ │ ├── media │ │ │ └── gator.svg │ │ ├── protocol.js │ │ └── script.js │ ├── settings │ │ ├── a11ypage.js │ │ ├── aboutpage.js │ │ ├── advancedpage.js │ │ ├── icon.svg │ │ ├── index.html │ │ ├── interactionpage.js │ │ ├── l10n.json │ │ ├── l10npage.js │ │ ├── locales │ │ │ ├── ca_ES.json │ │ │ ├── en_GB.json │ │ │ └── fr_FR.json │ │ ├── networkpage.js │ │ ├── personalisationpage.js │ │ ├── script.js │ │ ├── shortcuts.js │ │ ├── updatespage.js │ │ ├── userspage.js │ │ └── wifiauthmodes.js │ └── terminal │ │ ├── icon.svg │ │ ├── index.html │ │ ├── locales │ │ ├── en_GB.json │ │ └── fr_FR.json │ │ ├── script.js │ │ └── style.css ├── auth │ ├── auth.js │ ├── lockscreen.css │ └── lockscreen.js ├── common.css ├── common.js ├── config │ ├── config.js │ ├── l10n.js │ ├── permissions.css │ ├── permissions.js │ ├── personalisation.js │ └── users.js ├── global │ ├── cursor.css │ ├── cursor.js │ ├── info.js │ ├── infobar.css │ ├── powermenu.js │ ├── select.css │ ├── select.js │ ├── surfaces.css │ ├── tooltips.css │ └── tooltips.js ├── index.html ├── input │ ├── imedata │ │ ├── en_GB_default.gime │ │ └── zh_CN_pinyin.gime │ ├── input.css │ ├── input.js │ ├── l10nmappings.json │ └── layouts │ │ ├── ca_ES_qwerty.gkbl │ │ ├── en_GB_qwerty.gkbl │ │ ├── en_US_qwerty.gkbl │ │ ├── fr_FR_azerty.gkbl │ │ └── zh_CN_qwerty.gkbl ├── integrations │ ├── linux.js │ └── xorg.js ├── lib │ ├── fuse.esm.js │ ├── minisearch.min.js │ ├── openpgp.min.mjs │ ├── showdown.min.js │ ├── xterm-addon-canvas.esm.js │ ├── xterm-addon-fit.esm.js │ ├── xterm.esm.js │ └── xterm.min.css ├── locales │ ├── ca_ES.json │ ├── en_GB.json │ └── fr_FR.json ├── media │ ├── appdefault.svg │ ├── backgrounds │ │ ├── world0.jpg │ │ ├── world1.jpg │ │ ├── world10.jpg │ │ ├── world11.jpg │ │ ├── world12.jpg │ │ ├── world13.jpg │ │ ├── world2.jpg │ │ ├── world3.jpg │ │ ├── world4.jpg │ │ ├── world5.jpg │ │ ├── world6.jpg │ │ ├── world7.jpg │ │ ├── world8.jpg │ │ └── world9.jpg │ ├── cursors │ │ ├── alias.svg │ │ ├── cell.svg │ │ ├── context-menu.svg │ │ ├── copy.svg │ │ ├── crosshair.svg │ │ ├── default.svg │ │ ├── ew-resize.svg │ │ ├── help.svg │ │ ├── move.svg │ │ ├── nesw-resize.svg │ │ ├── none.svg │ │ ├── ns-resize.svg │ │ ├── nwse-resize.svg │ │ ├── pointer.svg │ │ ├── progress.svg │ │ ├── text.svg │ │ ├── vertical-text.svg │ │ └── wait.svg │ ├── devices.svg │ ├── logo.svg │ ├── oobs │ │ ├── finish.svg │ │ ├── installask.webm │ │ ├── installconfirm.webm │ │ ├── installdisk.webm │ │ ├── installfail.svg │ │ ├── installfinish.svg │ │ ├── installpartition.webm │ │ ├── installprocess.webm │ │ ├── interaction.webm │ │ ├── l10n.webm │ │ ├── userprofile.webm │ │ └── welcome.webm │ ├── readout-earcons │ │ ├── button.wav │ │ ├── input.wav │ │ ├── off.wav │ │ ├── on.wav │ │ ├── select.wav │ │ ├── switch-off.wav │ │ └── switch-on.wav │ └── userdefault.svg ├── oobs │ ├── finish.html │ ├── installask.html │ ├── installconfirm.html │ ├── installdisk.html │ ├── installfail.html │ ├── installfinish.html │ ├── installpartition.html │ ├── installprocess.html │ ├── interaction.html │ ├── l10n.html │ ├── l10n.json │ ├── oobs.css │ ├── oobs.js │ ├── userprofile.html │ └── welcome.html ├── preload.js ├── script.js ├── sphere │ ├── icon.svg │ ├── sphere.css │ └── sphere.js ├── storage │ └── resources.js ├── style.css ├── system │ ├── debug.css │ ├── debug.js │ ├── device.js │ ├── displays.css │ ├── displays.js │ ├── interaction.js │ ├── mobile.js │ ├── monitors.js │ ├── network.js │ ├── sleep.js │ ├── system.js │ ├── term.js │ └── updates.js ├── trust │ └── liveg │ │ └── public.pgp ├── userenv │ ├── appmanager.js │ ├── desktop.css │ ├── home.css │ ├── home.js │ ├── investigator.js │ ├── privilegedinterface.js │ ├── switcher.css │ ├── switcher.js │ ├── webviewas.css │ ├── webviewcomms.js │ ├── webviewmanager.js │ └── webviewuas.css └── webviewpreload.js └── src ├── bin ├── gosctl └── sphere ├── config.js ├── control.js ├── csrc ├── clset.c └── libgslai.c ├── device.js ├── flags.js ├── ipc.js ├── linux.js ├── main.js ├── mobile.js ├── monitors.js ├── network.js ├── permissions.js ├── scripts └── extractarchive.sh ├── storage.js ├── system.js ├── term.js └── xorg.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveGTech/gShell/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveGTech/gShell/HEAD/.gitmodules -------------------------------------------------------------------------------- /LICENCE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveGTech/gShell/HEAD/LICENCE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveGTech/gShell/HEAD/README.md -------------------------------------------------------------------------------- /docs/en/a11y.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveGTech/gShell/HEAD/docs/en/a11y.md -------------------------------------------------------------------------------- /docs/en/architecture.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveGTech/gShell/HEAD/docs/en/architecture.md -------------------------------------------------------------------------------- /docs/en/auth.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveGTech/gShell/HEAD/docs/en/auth.md -------------------------------------------------------------------------------- /docs/en/contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveGTech/gShell/HEAD/docs/en/contents.json -------------------------------------------------------------------------------- /docs/en/device.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveGTech/gShell/HEAD/docs/en/device.md -------------------------------------------------------------------------------- /docs/en/filesystem.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveGTech/gShell/HEAD/docs/en/filesystem.md -------------------------------------------------------------------------------- /docs/en/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveGTech/gShell/HEAD/docs/en/index.md -------------------------------------------------------------------------------- /docs/en/input.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveGTech/gShell/HEAD/docs/en/input.md -------------------------------------------------------------------------------- /docs/en/l10n.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveGTech/gShell/HEAD/docs/en/l10n.md -------------------------------------------------------------------------------- /docs/en/linux.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveGTech/gShell/HEAD/docs/en/linux.md -------------------------------------------------------------------------------- /docs/en/oobs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveGTech/gShell/HEAD/docs/en/oobs.md -------------------------------------------------------------------------------- /docs/en/updates.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveGTech/gShell/HEAD/docs/en/updates.md -------------------------------------------------------------------------------- /gshell: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveGTech/gShell/HEAD/gshell -------------------------------------------------------------------------------- /gshell-xephyr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveGTech/gShell/HEAD/gshell-xephyr -------------------------------------------------------------------------------- /media/10years_ca.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveGTech/gShell/HEAD/media/10years_ca.svg -------------------------------------------------------------------------------- /media/10years_en.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveGTech/gShell/HEAD/media/10years_en.svg -------------------------------------------------------------------------------- /media/10years_fr.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveGTech/gShell/HEAD/media/10years_fr.svg -------------------------------------------------------------------------------- /media/10years_zh.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveGTech/gShell/HEAD/media/10years_zh.svg -------------------------------------------------------------------------------- /media/oobs/desktop.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveGTech/gShell/HEAD/media/oobs/desktop.svg -------------------------------------------------------------------------------- /media/oobs/finish.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveGTech/gShell/HEAD/media/oobs/finish.svg -------------------------------------------------------------------------------- /media/oobs/installask-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveGTech/gShell/HEAD/media/oobs/installask-1.png -------------------------------------------------------------------------------- /media/oobs/installask-1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveGTech/gShell/HEAD/media/oobs/installask-1.svg -------------------------------------------------------------------------------- /media/oobs/installask-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveGTech/gShell/HEAD/media/oobs/installask-2.png -------------------------------------------------------------------------------- /media/oobs/installask-2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveGTech/gShell/HEAD/media/oobs/installask-2.svg -------------------------------------------------------------------------------- /media/oobs/installask-screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveGTech/gShell/HEAD/media/oobs/installask-screenshot.png -------------------------------------------------------------------------------- /media/oobs/installask-screenshot1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveGTech/gShell/HEAD/media/oobs/installask-screenshot1.png -------------------------------------------------------------------------------- /media/oobs/installask-screenshot2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveGTech/gShell/HEAD/media/oobs/installask-screenshot2.png -------------------------------------------------------------------------------- /media/oobs/installask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveGTech/gShell/HEAD/media/oobs/installask.png -------------------------------------------------------------------------------- /media/oobs/installask.sifz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveGTech/gShell/HEAD/media/oobs/installask.sifz -------------------------------------------------------------------------------- /media/oobs/installask.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveGTech/gShell/HEAD/media/oobs/installask.svg -------------------------------------------------------------------------------- /media/oobs/installconfirm-base.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveGTech/gShell/HEAD/media/oobs/installconfirm-base.png -------------------------------------------------------------------------------- /media/oobs/installconfirm-base.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveGTech/gShell/HEAD/media/oobs/installconfirm-base.svg -------------------------------------------------------------------------------- /media/oobs/installconfirm-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveGTech/gShell/HEAD/media/oobs/installconfirm-icon.png -------------------------------------------------------------------------------- /media/oobs/installconfirm-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveGTech/gShell/HEAD/media/oobs/installconfirm-icon.svg -------------------------------------------------------------------------------- /media/oobs/installconfirm-partitions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveGTech/gShell/HEAD/media/oobs/installconfirm-partitions.png -------------------------------------------------------------------------------- /media/oobs/installconfirm-partitions.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveGTech/gShell/HEAD/media/oobs/installconfirm-partitions.svg -------------------------------------------------------------------------------- /media/oobs/installconfirm-shadow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveGTech/gShell/HEAD/media/oobs/installconfirm-shadow.png -------------------------------------------------------------------------------- /media/oobs/installconfirm-shadow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveGTech/gShell/HEAD/media/oobs/installconfirm-shadow.svg -------------------------------------------------------------------------------- /media/oobs/installconfirm.sifz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveGTech/gShell/HEAD/media/oobs/installconfirm.sifz -------------------------------------------------------------------------------- /media/oobs/installconfirm.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveGTech/gShell/HEAD/media/oobs/installconfirm.svg -------------------------------------------------------------------------------- /media/oobs/installdisk-base.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveGTech/gShell/HEAD/media/oobs/installdisk-base.png -------------------------------------------------------------------------------- /media/oobs/installdisk-base.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveGTech/gShell/HEAD/media/oobs/installdisk-base.svg -------------------------------------------------------------------------------- /media/oobs/installdisk-bluedisk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveGTech/gShell/HEAD/media/oobs/installdisk-bluedisk.png -------------------------------------------------------------------------------- /media/oobs/installdisk-bluedisk.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveGTech/gShell/HEAD/media/oobs/installdisk-bluedisk.svg -------------------------------------------------------------------------------- /media/oobs/installdisk-top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveGTech/gShell/HEAD/media/oobs/installdisk-top.png -------------------------------------------------------------------------------- /media/oobs/installdisk-top.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveGTech/gShell/HEAD/media/oobs/installdisk-top.svg -------------------------------------------------------------------------------- /media/oobs/installdisk-yellowdisk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveGTech/gShell/HEAD/media/oobs/installdisk-yellowdisk.png -------------------------------------------------------------------------------- /media/oobs/installdisk-yellowdisk.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveGTech/gShell/HEAD/media/oobs/installdisk-yellowdisk.svg -------------------------------------------------------------------------------- /media/oobs/installdisk.sifz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveGTech/gShell/HEAD/media/oobs/installdisk.sifz -------------------------------------------------------------------------------- /media/oobs/installdisk.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveGTech/gShell/HEAD/media/oobs/installdisk.svg -------------------------------------------------------------------------------- /media/oobs/installfail.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveGTech/gShell/HEAD/media/oobs/installfail.svg -------------------------------------------------------------------------------- /media/oobs/installfinish.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveGTech/gShell/HEAD/media/oobs/installfinish.svg -------------------------------------------------------------------------------- /media/oobs/installpartition-base.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveGTech/gShell/HEAD/media/oobs/installpartition-base.png -------------------------------------------------------------------------------- /media/oobs/installpartition-base.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveGTech/gShell/HEAD/media/oobs/installpartition-base.svg -------------------------------------------------------------------------------- /media/oobs/installpartition-partitions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveGTech/gShell/HEAD/media/oobs/installpartition-partitions.png -------------------------------------------------------------------------------- /media/oobs/installpartition-partitions.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveGTech/gShell/HEAD/media/oobs/installpartition-partitions.svg -------------------------------------------------------------------------------- /media/oobs/installpartition-shadow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveGTech/gShell/HEAD/media/oobs/installpartition-shadow.png -------------------------------------------------------------------------------- /media/oobs/installpartition-shadow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveGTech/gShell/HEAD/media/oobs/installpartition-shadow.svg -------------------------------------------------------------------------------- /media/oobs/installpartition.sifz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveGTech/gShell/HEAD/media/oobs/installpartition.sifz -------------------------------------------------------------------------------- /media/oobs/installpartition.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveGTech/gShell/HEAD/media/oobs/installpartition.svg -------------------------------------------------------------------------------- /media/oobs/installprocess-desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveGTech/gShell/HEAD/media/oobs/installprocess-desktop.png -------------------------------------------------------------------------------- /media/oobs/installprocess-desktop.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveGTech/gShell/HEAD/media/oobs/installprocess-desktop.svg -------------------------------------------------------------------------------- /media/oobs/installprocess-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveGTech/gShell/HEAD/media/oobs/installprocess-icon.png -------------------------------------------------------------------------------- /media/oobs/installprocess-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveGTech/gShell/HEAD/media/oobs/installprocess-icon.svg -------------------------------------------------------------------------------- /media/oobs/installprocess.sifz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveGTech/gShell/HEAD/media/oobs/installprocess.sifz -------------------------------------------------------------------------------- /media/oobs/installprocess.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveGTech/gShell/HEAD/media/oobs/installprocess.svg -------------------------------------------------------------------------------- /media/oobs/interaction-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveGTech/gShell/HEAD/media/oobs/interaction-1.png -------------------------------------------------------------------------------- /media/oobs/interaction-1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveGTech/gShell/HEAD/media/oobs/interaction-1.svg -------------------------------------------------------------------------------- /media/oobs/interaction-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveGTech/gShell/HEAD/media/oobs/interaction-2.png -------------------------------------------------------------------------------- /media/oobs/interaction-2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveGTech/gShell/HEAD/media/oobs/interaction-2.svg -------------------------------------------------------------------------------- /media/oobs/interaction.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveGTech/gShell/HEAD/media/oobs/interaction.png -------------------------------------------------------------------------------- /media/oobs/interaction.sifz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveGTech/gShell/HEAD/media/oobs/interaction.sifz -------------------------------------------------------------------------------- /media/oobs/interaction.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveGTech/gShell/HEAD/media/oobs/interaction.svg -------------------------------------------------------------------------------- /media/oobs/l10n-computer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveGTech/gShell/HEAD/media/oobs/l10n-computer.png -------------------------------------------------------------------------------- /media/oobs/l10n-computer.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveGTech/gShell/HEAD/media/oobs/l10n-computer.svg -------------------------------------------------------------------------------- /media/oobs/l10n-keyboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveGTech/gShell/HEAD/media/oobs/l10n-keyboard.png -------------------------------------------------------------------------------- /media/oobs/l10n-keyboard.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveGTech/gShell/HEAD/media/oobs/l10n-keyboard.svg -------------------------------------------------------------------------------- /media/oobs/l10n-mouse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveGTech/gShell/HEAD/media/oobs/l10n-mouse.png -------------------------------------------------------------------------------- /media/oobs/l10n-mouse.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveGTech/gShell/HEAD/media/oobs/l10n-mouse.svg -------------------------------------------------------------------------------- /media/oobs/l10n.sifz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveGTech/gShell/HEAD/media/oobs/l10n.sifz -------------------------------------------------------------------------------- /media/oobs/l10n.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveGTech/gShell/HEAD/media/oobs/l10n.svg -------------------------------------------------------------------------------- /media/oobs/makevideo.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveGTech/gShell/HEAD/media/oobs/makevideo.sh -------------------------------------------------------------------------------- /media/oobs/userprofile-desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveGTech/gShell/HEAD/media/oobs/userprofile-desktop.png -------------------------------------------------------------------------------- /media/oobs/userprofile-desktop.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveGTech/gShell/HEAD/media/oobs/userprofile-desktop.svg -------------------------------------------------------------------------------- /media/oobs/userprofile-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveGTech/gShell/HEAD/media/oobs/userprofile-icon.png -------------------------------------------------------------------------------- /media/oobs/userprofile-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveGTech/gShell/HEAD/media/oobs/userprofile-icon.svg -------------------------------------------------------------------------------- /media/oobs/userprofile.sifz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveGTech/gShell/HEAD/media/oobs/userprofile.sifz -------------------------------------------------------------------------------- /media/oobs/userprofile.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveGTech/gShell/HEAD/media/oobs/userprofile.svg -------------------------------------------------------------------------------- /media/oobs/welcome.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveGTech/gShell/HEAD/media/oobs/welcome.png -------------------------------------------------------------------------------- /media/oobs/welcome.sifz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveGTech/gShell/HEAD/media/oobs/welcome.sifz -------------------------------------------------------------------------------- /media/oobs/welcome.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveGTech/gShell/HEAD/media/oobs/welcome.svg -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveGTech/gShell/HEAD/package.json -------------------------------------------------------------------------------- /res/512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveGTech/gShell/HEAD/res/512x512.png -------------------------------------------------------------------------------- /shell/a11y/a11y.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveGTech/gShell/HEAD/shell/a11y/a11y.js -------------------------------------------------------------------------------- /shell/a11y/l10nkeys.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveGTech/gShell/HEAD/shell/a11y/l10nkeys.json -------------------------------------------------------------------------------- /shell/a11y/panel.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveGTech/gShell/HEAD/shell/a11y/panel.css -------------------------------------------------------------------------------- /shell/a11y/panel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveGTech/gShell/HEAD/shell/a11y/panel.js -------------------------------------------------------------------------------- /shell/a11y/readout.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveGTech/gShell/HEAD/shell/a11y/readout.js -------------------------------------------------------------------------------- /shell/a11y/switch.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveGTech/gShell/HEAD/shell/a11y/switch.css -------------------------------------------------------------------------------- /shell/a11y/switch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveGTech/gShell/HEAD/shell/a11y/switch.js -------------------------------------------------------------------------------- /shell/about.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveGTech/gShell/HEAD/shell/about.js -------------------------------------------------------------------------------- /shell/apps/defaults.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveGTech/gShell/HEAD/shell/apps/defaults.json -------------------------------------------------------------------------------- /shell/apps/investigator/console.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveGTech/gShell/HEAD/shell/apps/investigator/console.js -------------------------------------------------------------------------------- /shell/apps/investigator/icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveGTech/gShell/HEAD/shell/apps/investigator/icon.svg -------------------------------------------------------------------------------- /shell/apps/investigator/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveGTech/gShell/HEAD/shell/apps/investigator/index.html -------------------------------------------------------------------------------- /shell/apps/investigator/locales/ca_ES.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveGTech/gShell/HEAD/shell/apps/investigator/locales/ca_ES.json -------------------------------------------------------------------------------- /shell/apps/investigator/locales/en_GB.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveGTech/gShell/HEAD/shell/apps/investigator/locales/en_GB.json -------------------------------------------------------------------------------- /shell/apps/investigator/locales/fr_FR.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveGTech/gShell/HEAD/shell/apps/investigator/locales/fr_FR.json -------------------------------------------------------------------------------- /shell/apps/investigator/media/gator.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveGTech/gShell/HEAD/shell/apps/investigator/media/gator.svg -------------------------------------------------------------------------------- /shell/apps/investigator/protocol.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveGTech/gShell/HEAD/shell/apps/investigator/protocol.js -------------------------------------------------------------------------------- /shell/apps/investigator/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveGTech/gShell/HEAD/shell/apps/investigator/script.js -------------------------------------------------------------------------------- /shell/apps/settings/a11ypage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveGTech/gShell/HEAD/shell/apps/settings/a11ypage.js -------------------------------------------------------------------------------- /shell/apps/settings/aboutpage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveGTech/gShell/HEAD/shell/apps/settings/aboutpage.js -------------------------------------------------------------------------------- /shell/apps/settings/advancedpage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveGTech/gShell/HEAD/shell/apps/settings/advancedpage.js -------------------------------------------------------------------------------- /shell/apps/settings/icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveGTech/gShell/HEAD/shell/apps/settings/icon.svg -------------------------------------------------------------------------------- /shell/apps/settings/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveGTech/gShell/HEAD/shell/apps/settings/index.html -------------------------------------------------------------------------------- /shell/apps/settings/interactionpage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveGTech/gShell/HEAD/shell/apps/settings/interactionpage.js -------------------------------------------------------------------------------- /shell/apps/settings/l10n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveGTech/gShell/HEAD/shell/apps/settings/l10n.json -------------------------------------------------------------------------------- /shell/apps/settings/l10npage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveGTech/gShell/HEAD/shell/apps/settings/l10npage.js -------------------------------------------------------------------------------- /shell/apps/settings/locales/ca_ES.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveGTech/gShell/HEAD/shell/apps/settings/locales/ca_ES.json -------------------------------------------------------------------------------- /shell/apps/settings/locales/en_GB.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveGTech/gShell/HEAD/shell/apps/settings/locales/en_GB.json -------------------------------------------------------------------------------- /shell/apps/settings/locales/fr_FR.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveGTech/gShell/HEAD/shell/apps/settings/locales/fr_FR.json -------------------------------------------------------------------------------- /shell/apps/settings/networkpage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveGTech/gShell/HEAD/shell/apps/settings/networkpage.js -------------------------------------------------------------------------------- /shell/apps/settings/personalisationpage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveGTech/gShell/HEAD/shell/apps/settings/personalisationpage.js -------------------------------------------------------------------------------- /shell/apps/settings/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveGTech/gShell/HEAD/shell/apps/settings/script.js -------------------------------------------------------------------------------- /shell/apps/settings/shortcuts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveGTech/gShell/HEAD/shell/apps/settings/shortcuts.js -------------------------------------------------------------------------------- /shell/apps/settings/updatespage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveGTech/gShell/HEAD/shell/apps/settings/updatespage.js -------------------------------------------------------------------------------- /shell/apps/settings/userspage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveGTech/gShell/HEAD/shell/apps/settings/userspage.js -------------------------------------------------------------------------------- /shell/apps/settings/wifiauthmodes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveGTech/gShell/HEAD/shell/apps/settings/wifiauthmodes.js -------------------------------------------------------------------------------- /shell/apps/terminal/icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveGTech/gShell/HEAD/shell/apps/terminal/icon.svg -------------------------------------------------------------------------------- /shell/apps/terminal/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveGTech/gShell/HEAD/shell/apps/terminal/index.html -------------------------------------------------------------------------------- /shell/apps/terminal/locales/en_GB.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveGTech/gShell/HEAD/shell/apps/terminal/locales/en_GB.json -------------------------------------------------------------------------------- /shell/apps/terminal/locales/fr_FR.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveGTech/gShell/HEAD/shell/apps/terminal/locales/fr_FR.json -------------------------------------------------------------------------------- /shell/apps/terminal/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveGTech/gShell/HEAD/shell/apps/terminal/script.js -------------------------------------------------------------------------------- /shell/apps/terminal/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveGTech/gShell/HEAD/shell/apps/terminal/style.css -------------------------------------------------------------------------------- /shell/auth/auth.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveGTech/gShell/HEAD/shell/auth/auth.js -------------------------------------------------------------------------------- /shell/auth/lockscreen.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveGTech/gShell/HEAD/shell/auth/lockscreen.css -------------------------------------------------------------------------------- /shell/auth/lockscreen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveGTech/gShell/HEAD/shell/auth/lockscreen.js -------------------------------------------------------------------------------- /shell/common.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveGTech/gShell/HEAD/shell/common.css -------------------------------------------------------------------------------- /shell/common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveGTech/gShell/HEAD/shell/common.js -------------------------------------------------------------------------------- /shell/config/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveGTech/gShell/HEAD/shell/config/config.js -------------------------------------------------------------------------------- /shell/config/l10n.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveGTech/gShell/HEAD/shell/config/l10n.js -------------------------------------------------------------------------------- /shell/config/permissions.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveGTech/gShell/HEAD/shell/config/permissions.css -------------------------------------------------------------------------------- /shell/config/permissions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveGTech/gShell/HEAD/shell/config/permissions.js -------------------------------------------------------------------------------- /shell/config/personalisation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveGTech/gShell/HEAD/shell/config/personalisation.js -------------------------------------------------------------------------------- /shell/config/users.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveGTech/gShell/HEAD/shell/config/users.js -------------------------------------------------------------------------------- /shell/global/cursor.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveGTech/gShell/HEAD/shell/global/cursor.css -------------------------------------------------------------------------------- /shell/global/cursor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveGTech/gShell/HEAD/shell/global/cursor.js -------------------------------------------------------------------------------- /shell/global/info.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveGTech/gShell/HEAD/shell/global/info.js -------------------------------------------------------------------------------- /shell/global/infobar.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveGTech/gShell/HEAD/shell/global/infobar.css -------------------------------------------------------------------------------- /shell/global/powermenu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveGTech/gShell/HEAD/shell/global/powermenu.js -------------------------------------------------------------------------------- /shell/global/select.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveGTech/gShell/HEAD/shell/global/select.css -------------------------------------------------------------------------------- /shell/global/select.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveGTech/gShell/HEAD/shell/global/select.js -------------------------------------------------------------------------------- /shell/global/surfaces.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveGTech/gShell/HEAD/shell/global/surfaces.css -------------------------------------------------------------------------------- /shell/global/tooltips.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveGTech/gShell/HEAD/shell/global/tooltips.css -------------------------------------------------------------------------------- /shell/global/tooltips.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveGTech/gShell/HEAD/shell/global/tooltips.js -------------------------------------------------------------------------------- /shell/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveGTech/gShell/HEAD/shell/index.html -------------------------------------------------------------------------------- /shell/input/imedata/en_GB_default.gime: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveGTech/gShell/HEAD/shell/input/imedata/en_GB_default.gime -------------------------------------------------------------------------------- /shell/input/imedata/zh_CN_pinyin.gime: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveGTech/gShell/HEAD/shell/input/imedata/zh_CN_pinyin.gime -------------------------------------------------------------------------------- /shell/input/input.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveGTech/gShell/HEAD/shell/input/input.css -------------------------------------------------------------------------------- /shell/input/input.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveGTech/gShell/HEAD/shell/input/input.js -------------------------------------------------------------------------------- /shell/input/l10nmappings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveGTech/gShell/HEAD/shell/input/l10nmappings.json -------------------------------------------------------------------------------- /shell/input/layouts/ca_ES_qwerty.gkbl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveGTech/gShell/HEAD/shell/input/layouts/ca_ES_qwerty.gkbl -------------------------------------------------------------------------------- /shell/input/layouts/en_GB_qwerty.gkbl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveGTech/gShell/HEAD/shell/input/layouts/en_GB_qwerty.gkbl -------------------------------------------------------------------------------- /shell/input/layouts/en_US_qwerty.gkbl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveGTech/gShell/HEAD/shell/input/layouts/en_US_qwerty.gkbl -------------------------------------------------------------------------------- /shell/input/layouts/fr_FR_azerty.gkbl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveGTech/gShell/HEAD/shell/input/layouts/fr_FR_azerty.gkbl -------------------------------------------------------------------------------- /shell/input/layouts/zh_CN_qwerty.gkbl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveGTech/gShell/HEAD/shell/input/layouts/zh_CN_qwerty.gkbl -------------------------------------------------------------------------------- /shell/integrations/linux.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveGTech/gShell/HEAD/shell/integrations/linux.js -------------------------------------------------------------------------------- /shell/integrations/xorg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveGTech/gShell/HEAD/shell/integrations/xorg.js -------------------------------------------------------------------------------- /shell/lib/fuse.esm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveGTech/gShell/HEAD/shell/lib/fuse.esm.js -------------------------------------------------------------------------------- /shell/lib/minisearch.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveGTech/gShell/HEAD/shell/lib/minisearch.min.js -------------------------------------------------------------------------------- /shell/lib/openpgp.min.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveGTech/gShell/HEAD/shell/lib/openpgp.min.mjs -------------------------------------------------------------------------------- /shell/lib/showdown.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveGTech/gShell/HEAD/shell/lib/showdown.min.js -------------------------------------------------------------------------------- /shell/lib/xterm-addon-canvas.esm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveGTech/gShell/HEAD/shell/lib/xterm-addon-canvas.esm.js -------------------------------------------------------------------------------- /shell/lib/xterm-addon-fit.esm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveGTech/gShell/HEAD/shell/lib/xterm-addon-fit.esm.js -------------------------------------------------------------------------------- /shell/lib/xterm.esm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveGTech/gShell/HEAD/shell/lib/xterm.esm.js -------------------------------------------------------------------------------- /shell/lib/xterm.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveGTech/gShell/HEAD/shell/lib/xterm.min.css -------------------------------------------------------------------------------- /shell/locales/ca_ES.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveGTech/gShell/HEAD/shell/locales/ca_ES.json -------------------------------------------------------------------------------- /shell/locales/en_GB.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveGTech/gShell/HEAD/shell/locales/en_GB.json -------------------------------------------------------------------------------- /shell/locales/fr_FR.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveGTech/gShell/HEAD/shell/locales/fr_FR.json -------------------------------------------------------------------------------- /shell/media/appdefault.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveGTech/gShell/HEAD/shell/media/appdefault.svg -------------------------------------------------------------------------------- /shell/media/backgrounds/world0.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveGTech/gShell/HEAD/shell/media/backgrounds/world0.jpg -------------------------------------------------------------------------------- /shell/media/backgrounds/world1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveGTech/gShell/HEAD/shell/media/backgrounds/world1.jpg -------------------------------------------------------------------------------- /shell/media/backgrounds/world10.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveGTech/gShell/HEAD/shell/media/backgrounds/world10.jpg -------------------------------------------------------------------------------- /shell/media/backgrounds/world11.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveGTech/gShell/HEAD/shell/media/backgrounds/world11.jpg -------------------------------------------------------------------------------- /shell/media/backgrounds/world12.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveGTech/gShell/HEAD/shell/media/backgrounds/world12.jpg -------------------------------------------------------------------------------- /shell/media/backgrounds/world13.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveGTech/gShell/HEAD/shell/media/backgrounds/world13.jpg -------------------------------------------------------------------------------- /shell/media/backgrounds/world2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveGTech/gShell/HEAD/shell/media/backgrounds/world2.jpg -------------------------------------------------------------------------------- /shell/media/backgrounds/world3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveGTech/gShell/HEAD/shell/media/backgrounds/world3.jpg -------------------------------------------------------------------------------- /shell/media/backgrounds/world4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveGTech/gShell/HEAD/shell/media/backgrounds/world4.jpg -------------------------------------------------------------------------------- /shell/media/backgrounds/world5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveGTech/gShell/HEAD/shell/media/backgrounds/world5.jpg -------------------------------------------------------------------------------- /shell/media/backgrounds/world6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveGTech/gShell/HEAD/shell/media/backgrounds/world6.jpg -------------------------------------------------------------------------------- /shell/media/backgrounds/world7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveGTech/gShell/HEAD/shell/media/backgrounds/world7.jpg -------------------------------------------------------------------------------- /shell/media/backgrounds/world8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveGTech/gShell/HEAD/shell/media/backgrounds/world8.jpg -------------------------------------------------------------------------------- /shell/media/backgrounds/world9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveGTech/gShell/HEAD/shell/media/backgrounds/world9.jpg -------------------------------------------------------------------------------- /shell/media/cursors/alias.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveGTech/gShell/HEAD/shell/media/cursors/alias.svg -------------------------------------------------------------------------------- /shell/media/cursors/cell.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveGTech/gShell/HEAD/shell/media/cursors/cell.svg -------------------------------------------------------------------------------- /shell/media/cursors/context-menu.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveGTech/gShell/HEAD/shell/media/cursors/context-menu.svg -------------------------------------------------------------------------------- /shell/media/cursors/copy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveGTech/gShell/HEAD/shell/media/cursors/copy.svg -------------------------------------------------------------------------------- /shell/media/cursors/crosshair.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveGTech/gShell/HEAD/shell/media/cursors/crosshair.svg -------------------------------------------------------------------------------- /shell/media/cursors/default.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveGTech/gShell/HEAD/shell/media/cursors/default.svg -------------------------------------------------------------------------------- /shell/media/cursors/ew-resize.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveGTech/gShell/HEAD/shell/media/cursors/ew-resize.svg -------------------------------------------------------------------------------- /shell/media/cursors/help.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveGTech/gShell/HEAD/shell/media/cursors/help.svg -------------------------------------------------------------------------------- /shell/media/cursors/move.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveGTech/gShell/HEAD/shell/media/cursors/move.svg -------------------------------------------------------------------------------- /shell/media/cursors/nesw-resize.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveGTech/gShell/HEAD/shell/media/cursors/nesw-resize.svg -------------------------------------------------------------------------------- /shell/media/cursors/none.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveGTech/gShell/HEAD/shell/media/cursors/none.svg -------------------------------------------------------------------------------- /shell/media/cursors/ns-resize.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveGTech/gShell/HEAD/shell/media/cursors/ns-resize.svg -------------------------------------------------------------------------------- /shell/media/cursors/nwse-resize.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveGTech/gShell/HEAD/shell/media/cursors/nwse-resize.svg -------------------------------------------------------------------------------- /shell/media/cursors/pointer.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveGTech/gShell/HEAD/shell/media/cursors/pointer.svg -------------------------------------------------------------------------------- /shell/media/cursors/progress.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveGTech/gShell/HEAD/shell/media/cursors/progress.svg -------------------------------------------------------------------------------- /shell/media/cursors/text.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveGTech/gShell/HEAD/shell/media/cursors/text.svg -------------------------------------------------------------------------------- /shell/media/cursors/vertical-text.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveGTech/gShell/HEAD/shell/media/cursors/vertical-text.svg -------------------------------------------------------------------------------- /shell/media/cursors/wait.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveGTech/gShell/HEAD/shell/media/cursors/wait.svg -------------------------------------------------------------------------------- /shell/media/devices.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveGTech/gShell/HEAD/shell/media/devices.svg -------------------------------------------------------------------------------- /shell/media/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveGTech/gShell/HEAD/shell/media/logo.svg -------------------------------------------------------------------------------- /shell/media/oobs/finish.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveGTech/gShell/HEAD/shell/media/oobs/finish.svg -------------------------------------------------------------------------------- /shell/media/oobs/installask.webm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveGTech/gShell/HEAD/shell/media/oobs/installask.webm -------------------------------------------------------------------------------- /shell/media/oobs/installconfirm.webm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveGTech/gShell/HEAD/shell/media/oobs/installconfirm.webm -------------------------------------------------------------------------------- /shell/media/oobs/installdisk.webm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveGTech/gShell/HEAD/shell/media/oobs/installdisk.webm -------------------------------------------------------------------------------- /shell/media/oobs/installfail.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveGTech/gShell/HEAD/shell/media/oobs/installfail.svg -------------------------------------------------------------------------------- /shell/media/oobs/installfinish.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveGTech/gShell/HEAD/shell/media/oobs/installfinish.svg -------------------------------------------------------------------------------- /shell/media/oobs/installpartition.webm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveGTech/gShell/HEAD/shell/media/oobs/installpartition.webm -------------------------------------------------------------------------------- /shell/media/oobs/installprocess.webm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveGTech/gShell/HEAD/shell/media/oobs/installprocess.webm -------------------------------------------------------------------------------- /shell/media/oobs/interaction.webm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveGTech/gShell/HEAD/shell/media/oobs/interaction.webm -------------------------------------------------------------------------------- /shell/media/oobs/l10n.webm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveGTech/gShell/HEAD/shell/media/oobs/l10n.webm -------------------------------------------------------------------------------- /shell/media/oobs/userprofile.webm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveGTech/gShell/HEAD/shell/media/oobs/userprofile.webm -------------------------------------------------------------------------------- /shell/media/oobs/welcome.webm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveGTech/gShell/HEAD/shell/media/oobs/welcome.webm -------------------------------------------------------------------------------- /shell/media/readout-earcons/button.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveGTech/gShell/HEAD/shell/media/readout-earcons/button.wav -------------------------------------------------------------------------------- /shell/media/readout-earcons/input.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveGTech/gShell/HEAD/shell/media/readout-earcons/input.wav -------------------------------------------------------------------------------- /shell/media/readout-earcons/off.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveGTech/gShell/HEAD/shell/media/readout-earcons/off.wav -------------------------------------------------------------------------------- /shell/media/readout-earcons/on.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveGTech/gShell/HEAD/shell/media/readout-earcons/on.wav -------------------------------------------------------------------------------- /shell/media/readout-earcons/select.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveGTech/gShell/HEAD/shell/media/readout-earcons/select.wav -------------------------------------------------------------------------------- /shell/media/readout-earcons/switch-off.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveGTech/gShell/HEAD/shell/media/readout-earcons/switch-off.wav -------------------------------------------------------------------------------- /shell/media/readout-earcons/switch-on.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveGTech/gShell/HEAD/shell/media/readout-earcons/switch-on.wav -------------------------------------------------------------------------------- /shell/media/userdefault.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveGTech/gShell/HEAD/shell/media/userdefault.svg -------------------------------------------------------------------------------- /shell/oobs/finish.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveGTech/gShell/HEAD/shell/oobs/finish.html -------------------------------------------------------------------------------- /shell/oobs/installask.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveGTech/gShell/HEAD/shell/oobs/installask.html -------------------------------------------------------------------------------- /shell/oobs/installconfirm.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveGTech/gShell/HEAD/shell/oobs/installconfirm.html -------------------------------------------------------------------------------- /shell/oobs/installdisk.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveGTech/gShell/HEAD/shell/oobs/installdisk.html -------------------------------------------------------------------------------- /shell/oobs/installfail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveGTech/gShell/HEAD/shell/oobs/installfail.html -------------------------------------------------------------------------------- /shell/oobs/installfinish.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveGTech/gShell/HEAD/shell/oobs/installfinish.html -------------------------------------------------------------------------------- /shell/oobs/installpartition.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveGTech/gShell/HEAD/shell/oobs/installpartition.html -------------------------------------------------------------------------------- /shell/oobs/installprocess.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveGTech/gShell/HEAD/shell/oobs/installprocess.html -------------------------------------------------------------------------------- /shell/oobs/interaction.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveGTech/gShell/HEAD/shell/oobs/interaction.html -------------------------------------------------------------------------------- /shell/oobs/l10n.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveGTech/gShell/HEAD/shell/oobs/l10n.html -------------------------------------------------------------------------------- /shell/oobs/l10n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveGTech/gShell/HEAD/shell/oobs/l10n.json -------------------------------------------------------------------------------- /shell/oobs/oobs.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveGTech/gShell/HEAD/shell/oobs/oobs.css -------------------------------------------------------------------------------- /shell/oobs/oobs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveGTech/gShell/HEAD/shell/oobs/oobs.js -------------------------------------------------------------------------------- /shell/oobs/userprofile.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveGTech/gShell/HEAD/shell/oobs/userprofile.html -------------------------------------------------------------------------------- /shell/oobs/welcome.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveGTech/gShell/HEAD/shell/oobs/welcome.html -------------------------------------------------------------------------------- /shell/preload.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveGTech/gShell/HEAD/shell/preload.js -------------------------------------------------------------------------------- /shell/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveGTech/gShell/HEAD/shell/script.js -------------------------------------------------------------------------------- /shell/sphere/icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveGTech/gShell/HEAD/shell/sphere/icon.svg -------------------------------------------------------------------------------- /shell/sphere/sphere.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveGTech/gShell/HEAD/shell/sphere/sphere.css -------------------------------------------------------------------------------- /shell/sphere/sphere.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveGTech/gShell/HEAD/shell/sphere/sphere.js -------------------------------------------------------------------------------- /shell/storage/resources.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveGTech/gShell/HEAD/shell/storage/resources.js -------------------------------------------------------------------------------- /shell/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveGTech/gShell/HEAD/shell/style.css -------------------------------------------------------------------------------- /shell/system/debug.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveGTech/gShell/HEAD/shell/system/debug.css -------------------------------------------------------------------------------- /shell/system/debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveGTech/gShell/HEAD/shell/system/debug.js -------------------------------------------------------------------------------- /shell/system/device.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveGTech/gShell/HEAD/shell/system/device.js -------------------------------------------------------------------------------- /shell/system/displays.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveGTech/gShell/HEAD/shell/system/displays.css -------------------------------------------------------------------------------- /shell/system/displays.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveGTech/gShell/HEAD/shell/system/displays.js -------------------------------------------------------------------------------- /shell/system/interaction.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveGTech/gShell/HEAD/shell/system/interaction.js -------------------------------------------------------------------------------- /shell/system/mobile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveGTech/gShell/HEAD/shell/system/mobile.js -------------------------------------------------------------------------------- /shell/system/monitors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveGTech/gShell/HEAD/shell/system/monitors.js -------------------------------------------------------------------------------- /shell/system/network.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveGTech/gShell/HEAD/shell/system/network.js -------------------------------------------------------------------------------- /shell/system/sleep.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveGTech/gShell/HEAD/shell/system/sleep.js -------------------------------------------------------------------------------- /shell/system/system.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveGTech/gShell/HEAD/shell/system/system.js -------------------------------------------------------------------------------- /shell/system/term.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveGTech/gShell/HEAD/shell/system/term.js -------------------------------------------------------------------------------- /shell/system/updates.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveGTech/gShell/HEAD/shell/system/updates.js -------------------------------------------------------------------------------- /shell/trust/liveg/public.pgp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveGTech/gShell/HEAD/shell/trust/liveg/public.pgp -------------------------------------------------------------------------------- /shell/userenv/appmanager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveGTech/gShell/HEAD/shell/userenv/appmanager.js -------------------------------------------------------------------------------- /shell/userenv/desktop.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveGTech/gShell/HEAD/shell/userenv/desktop.css -------------------------------------------------------------------------------- /shell/userenv/home.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveGTech/gShell/HEAD/shell/userenv/home.css -------------------------------------------------------------------------------- /shell/userenv/home.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveGTech/gShell/HEAD/shell/userenv/home.js -------------------------------------------------------------------------------- /shell/userenv/investigator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveGTech/gShell/HEAD/shell/userenv/investigator.js -------------------------------------------------------------------------------- /shell/userenv/privilegedinterface.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveGTech/gShell/HEAD/shell/userenv/privilegedinterface.js -------------------------------------------------------------------------------- /shell/userenv/switcher.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveGTech/gShell/HEAD/shell/userenv/switcher.css -------------------------------------------------------------------------------- /shell/userenv/switcher.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveGTech/gShell/HEAD/shell/userenv/switcher.js -------------------------------------------------------------------------------- /shell/userenv/webviewas.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveGTech/gShell/HEAD/shell/userenv/webviewas.css -------------------------------------------------------------------------------- /shell/userenv/webviewcomms.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveGTech/gShell/HEAD/shell/userenv/webviewcomms.js -------------------------------------------------------------------------------- /shell/userenv/webviewmanager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveGTech/gShell/HEAD/shell/userenv/webviewmanager.js -------------------------------------------------------------------------------- /shell/userenv/webviewuas.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveGTech/gShell/HEAD/shell/userenv/webviewuas.css -------------------------------------------------------------------------------- /shell/webviewpreload.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveGTech/gShell/HEAD/shell/webviewpreload.js -------------------------------------------------------------------------------- /src/bin/gosctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveGTech/gShell/HEAD/src/bin/gosctl -------------------------------------------------------------------------------- /src/bin/sphere: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | gosctl open-in-sphere $1 -------------------------------------------------------------------------------- /src/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveGTech/gShell/HEAD/src/config.js -------------------------------------------------------------------------------- /src/control.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveGTech/gShell/HEAD/src/control.js -------------------------------------------------------------------------------- /src/csrc/clset.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveGTech/gShell/HEAD/src/csrc/clset.c -------------------------------------------------------------------------------- /src/csrc/libgslai.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveGTech/gShell/HEAD/src/csrc/libgslai.c -------------------------------------------------------------------------------- /src/device.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveGTech/gShell/HEAD/src/device.js -------------------------------------------------------------------------------- /src/flags.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveGTech/gShell/HEAD/src/flags.js -------------------------------------------------------------------------------- /src/ipc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveGTech/gShell/HEAD/src/ipc.js -------------------------------------------------------------------------------- /src/linux.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveGTech/gShell/HEAD/src/linux.js -------------------------------------------------------------------------------- /src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveGTech/gShell/HEAD/src/main.js -------------------------------------------------------------------------------- /src/mobile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveGTech/gShell/HEAD/src/mobile.js -------------------------------------------------------------------------------- /src/monitors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveGTech/gShell/HEAD/src/monitors.js -------------------------------------------------------------------------------- /src/network.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveGTech/gShell/HEAD/src/network.js -------------------------------------------------------------------------------- /src/permissions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveGTech/gShell/HEAD/src/permissions.js -------------------------------------------------------------------------------- /src/scripts/extractarchive.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveGTech/gShell/HEAD/src/scripts/extractarchive.sh -------------------------------------------------------------------------------- /src/storage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveGTech/gShell/HEAD/src/storage.js -------------------------------------------------------------------------------- /src/system.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveGTech/gShell/HEAD/src/system.js -------------------------------------------------------------------------------- /src/term.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveGTech/gShell/HEAD/src/term.js -------------------------------------------------------------------------------- /src/xorg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveGTech/gShell/HEAD/src/xorg.js --------------------------------------------------------------------------------