├── .browserslistrc ├── .gitignore ├── LICENSE ├── README.md ├── babel.config.js ├── common ├── filesystem │ ├── dirent.js │ ├── filesystem.js │ └── fstat.js ├── nxsys │ ├── consts.js │ ├── dataTransfer.d.ts │ ├── dataTransfer.js │ ├── eventbus.ts │ ├── logger.js │ ├── nodes.js │ └── terminal.js └── utils │ ├── encrypt.js │ ├── idGenerator.d.ts │ ├── idGenerator.js │ ├── index.js │ └── waitObject.js ├── devtools ├── buildservice.js ├── rundev.js ├── synccore.js └── webpack │ └── webpack.config.js ├── package.json ├── ptservices ├── dataTransfer.js ├── fontList.js ├── fs │ ├── ftp.js │ ├── localfs.js │ └── sftp.js ├── index.js ├── localFileStorage.js ├── logger.js ├── nodes.js ├── nodesimpl │ ├── ftpnode.js │ ├── localnode.js │ ├── localshellnodes.js │ ├── node.js │ ├── registry.js │ ├── serialportnodes.js │ ├── sshnodes.js │ ├── telnet.js │ └── telnetnodes.js ├── nxobjs.js ├── package.json └── webdav.js ├── public ├── favicon.ico └── index.html ├── src ├── App.vue ├── assets │ ├── images │ │ ├── GitHub.png │ │ ├── Gitee.png │ │ ├── background.png │ │ ├── default-avatar.png │ │ ├── pause.png │ │ ├── shutdown.png │ │ └── video.png │ ├── logo.png │ └── scss │ │ ├── _const.scss │ │ ├── _reset.scss │ │ ├── default.scss │ │ └── theme │ │ ├── dark.scss │ │ ├── light.scss │ │ └── pink.scss ├── components │ ├── bars │ │ └── toolbar.vue │ ├── base │ │ ├── const.js │ │ ├── dragable.vue │ │ ├── mouse.js │ │ ├── resizedetector.js │ │ ├── scrollcontainer.vue │ │ └── shortcut.js │ ├── file │ │ └── file.vue │ ├── folder │ │ └── folder.vue │ ├── gridview │ │ ├── gridview.vue │ │ └── gridviewItem.vue │ ├── icon │ │ └── iconfont.js │ ├── index.js │ ├── list │ │ ├── list.vue │ │ └── listitem.js │ ├── menu │ │ ├── contextmenu.js │ │ ├── contextmenu.scss │ │ ├── menu.vue │ │ ├── menuManager.js │ │ └── menuitem.vue │ ├── modal │ │ ├── NxModal.vue │ │ └── types.ts │ ├── nxButton │ │ └── index.vue │ ├── space │ │ └── index.vue │ ├── svgicon │ │ └── index.vue │ ├── tab │ │ ├── tab.vue │ │ └── tabitem.vue │ └── xterm │ │ └── xterm.vue ├── element │ └── index.js ├── icons │ ├── index.js │ ├── svg │ │ ├── 3d.svg │ │ ├── abc.svg │ │ ├── actionscript.svg │ │ ├── ada.svg │ │ ├── adonis.svg │ │ ├── advpl_include.svg │ │ ├── advpl_prw.svg │ │ ├── advpl_ptm.svg │ │ ├── advpl_tlpp.svg │ │ ├── alma.svg │ │ ├── alpine.svg │ │ ├── android.svg │ │ ├── angular-component.svg │ │ ├── angular-directive.svg │ │ ├── angular-guard.svg │ │ ├── angular-pipe.svg │ │ ├── angular-resolver.svg │ │ ├── angular-service.svg │ │ ├── angular.svg │ │ ├── antlr.svg │ │ ├── apiblueprint.svg │ │ ├── apollo.svg │ │ ├── applescript.svg │ │ ├── appveyor.svg │ │ ├── arch.svg │ │ ├── architecture.svg │ │ ├── arduino.svg │ │ ├── asciidoc.svg │ │ ├── assembly.svg │ │ ├── astro.svg │ │ ├── astyle.svg │ │ ├── audio.svg │ │ ├── aurelia.svg │ │ ├── authors.svg │ │ ├── auto.svg │ │ ├── auto_light.svg │ │ ├── autohotkey.svg │ │ ├── autoit.svg │ │ ├── azure-pipelines.svg │ │ ├── azure.svg │ │ ├── babel.svg │ │ ├── ballerina.svg │ │ ├── bazel.svg │ │ ├── bicep.svg │ │ ├── bitbucket.svg │ │ ├── bithound.svg │ │ ├── blink.svg │ │ ├── blink_light.svg │ │ ├── blitz.svg │ │ ├── bower.svg │ │ ├── brainfuck.svg │ │ ├── browserlist.svg │ │ ├── browserlist_light.svg │ │ ├── buck.svg │ │ ├── bucklescript.svg │ │ ├── bug.svg │ │ ├── buildkite.svg │ │ ├── bun.svg │ │ ├── bun_light.svg │ │ ├── c.svg │ │ ├── cabal.svg │ │ ├── caddy.svg │ │ ├── cadence.svg │ │ ├── cake.svg │ │ ├── capacitor.svg │ │ ├── centos.svg │ │ ├── certificate.svg │ │ ├── changelog.svg │ │ ├── chess.svg │ │ ├── chess_light.svg │ │ ├── circleci.svg │ │ ├── circleci_light.svg │ │ ├── clink.svg │ │ ├── clojure.svg │ │ ├── cloudfoundry.svg │ │ ├── cmake.svg │ │ ├── cmd.svg │ │ ├── cmder-powershell.svg │ │ ├── cmder.svg │ │ ├── coala.svg │ │ ├── cobol.svg │ │ ├── coconut.svg │ │ ├── code-climate.svg │ │ ├── code-climate_light.svg │ │ ├── codecov.svg │ │ ├── codeowners.svg │ │ ├── coffee.svg │ │ ├── coldfusion.svg │ │ ├── command.svg │ │ ├── commitlint.svg │ │ ├── conduct.svg │ │ ├── console.svg │ │ ├── contributing.svg │ │ ├── cpp.svg │ │ ├── craco.svg │ │ ├── credits.svg │ │ ├── crystal.svg │ │ ├── crystal_light.svg │ │ ├── csharp.svg │ │ ├── css-map.svg │ │ ├── css.svg │ │ ├── cucumber.svg │ │ ├── cuda.svg │ │ ├── cygwin.svg │ │ ├── cypress.svg │ │ ├── d.svg │ │ ├── dart.svg │ │ ├── dart_generated.svg │ │ ├── database.svg │ │ ├── debian.svg │ │ ├── deepin.svg │ │ ├── denizenscript.svg │ │ ├── dependabot.svg │ │ ├── dhall.svg │ │ ├── diff.svg │ │ ├── dinophp.svg │ │ ├── disc.svg │ │ ├── django.svg │ │ ├── docker.svg │ │ ├── document.svg │ │ ├── dotjs.svg │ │ ├── drawio.svg │ │ ├── drone.svg │ │ ├── drone_light.svg │ │ ├── dune.svg │ │ ├── edge.svg │ │ ├── editorconfig.svg │ │ ├── ejs.svg │ │ ├── elixir.svg │ │ ├── elm.svg │ │ ├── email.svg │ │ ├── ember.svg │ │ ├── erlang.svg │ │ ├── eslint.svg │ │ ├── exe.svg │ │ ├── eye-close.svg │ │ ├── eye-open.svg │ │ ├── fastlane.svg │ │ ├── favicon.svg │ │ ├── fedora.svg │ │ ├── figma.svg │ │ ├── file-link.svg │ │ ├── file.svg │ │ ├── firebase.svg │ │ ├── flash.svg │ │ ├── flow.svg │ │ ├── folder-admin-open.svg │ │ ├── folder-admin.svg │ │ ├── folder-android-open.svg │ │ ├── folder-android.svg │ │ ├── folder-angular-open.svg │ │ ├── folder-angular.svg │ │ ├── folder-animation-open.svg │ │ ├── folder-animation.svg │ │ ├── folder-ansible-open.svg │ │ ├── folder-ansible.svg │ │ ├── folder-api-open.svg │ │ ├── folder-api.svg │ │ ├── folder-apollo-open.svg │ │ ├── folder-apollo.svg │ │ ├── folder-app-open.svg │ │ ├── folder-app.svg │ │ ├── folder-archive-open.svg │ │ ├── folder-archive.svg │ │ ├── folder-audio-open.svg │ │ ├── folder-audio.svg │ │ ├── folder-aurelia-open.svg │ │ ├── folder-aurelia.svg │ │ ├── folder-aws-open.svg │ │ ├── folder-aws.svg │ │ ├── folder-azure-pipelines-open.svg │ │ ├── folder-azure-pipelines.svg │ │ ├── folder-base-open.svg │ │ ├── folder-base.svg │ │ ├── folder-batch-open.svg │ │ ├── folder-batch.svg │ │ ├── folder-benchmark-open.svg │ │ ├── folder-benchmark.svg │ │ ├── folder-bower-open.svg │ │ ├── folder-bower.svg │ │ ├── folder-buildkite-open.svg │ │ ├── folder-buildkite.svg │ │ ├── folder-cart-open.svg │ │ ├── folder-cart.svg │ │ ├── folder-changesets-open.svg │ │ ├── folder-changesets.svg │ │ ├── folder-ci-open.svg │ │ ├── folder-ci.svg │ │ ├── folder-circleci-open.svg │ │ ├── folder-circleci.svg │ │ ├── folder-class-open.svg │ │ ├── folder-class.svg │ │ ├── folder-client-open.svg │ │ ├── folder-client.svg │ │ ├── folder-cluster-open.svg │ │ ├── folder-cluster.svg │ │ ├── folder-cobol-open.svg │ │ ├── folder-cobol.svg │ │ ├── folder-command-open.svg │ │ ├── folder-command.svg │ │ ├── folder-components-open.svg │ │ ├── folder-components.svg │ │ ├── folder-config-open.svg │ │ ├── folder-config.svg │ │ ├── folder-connection-open.svg │ │ ├── folder-connection.svg │ │ ├── folder-constant-open.svg │ │ ├── folder-constant.svg │ │ ├── folder-container-open.svg │ │ ├── folder-container.svg │ │ ├── folder-content-open.svg │ │ ├── folder-content.svg │ │ ├── folder-context-open.svg │ │ ├── folder-context.svg │ │ ├── folder-contract-open.svg │ │ ├── folder-contract.svg │ │ ├── folder-controller-open.svg │ │ ├── folder-controller.svg │ │ ├── folder-core-open.svg │ │ ├── folder-core.svg │ │ ├── folder-coverage-open.svg │ │ ├── folder-coverage.svg │ │ ├── folder-css-open.svg │ │ ├── folder-css.svg │ │ ├── folder-custom-open.svg │ │ ├── folder-custom.svg │ │ ├── folder-cypress-open.svg │ │ ├── folder-cypress.svg │ │ ├── folder-database-open.svg │ │ ├── folder-database.svg │ │ ├── folder-debug-open.svg │ │ ├── folder-debug.svg │ │ ├── folder-decorators-open.svg │ │ ├── folder-decorators.svg │ │ ├── folder-delta-open.svg │ │ ├── folder-delta.svg │ │ ├── folder-dist-open.svg │ │ ├── folder-dist.svg │ │ ├── folder-docker-open.svg │ │ ├── folder-docker.svg │ │ ├── folder-docs-open.svg │ │ ├── folder-docs.svg │ │ ├── folder-download-open.svg │ │ ├── folder-download.svg │ │ ├── folder-dump-open.svg │ │ ├── folder-dump.svg │ │ ├── folder-environment-open.svg │ │ ├── folder-environment.svg │ │ ├── folder-error-open.svg │ │ ├── folder-error.svg │ │ ├── folder-event-open.svg │ │ ├── folder-event.svg │ │ ├── folder-examples-open.svg │ │ ├── folder-examples.svg │ │ ├── folder-expo-open.svg │ │ ├── folder-expo.svg │ │ ├── folder-export-open.svg │ │ ├── folder-export.svg │ │ ├── folder-fastlane-open.svg │ │ ├── folder-fastlane.svg │ │ ├── folder-firebase-open.svg │ │ ├── folder-firebase.svg │ │ ├── folder-flow-open.svg │ │ ├── folder-flow.svg │ │ ├── folder-font-open.svg │ │ ├── folder-font.svg │ │ ├── folder-functions-open.svg │ │ ├── folder-functions.svg │ │ ├── folder-gamemaker-open.svg │ │ ├── folder-gamemaker.svg │ │ ├── folder-generator-open.svg │ │ ├── folder-generator.svg │ │ ├── folder-git-open.svg │ │ ├── folder-git.svg │ │ ├── folder-github-open.svg │ │ ├── folder-github.svg │ │ ├── folder-gitlab-open.svg │ │ ├── folder-gitlab.svg │ │ ├── folder-global-open.svg │ │ ├── folder-global.svg │ │ ├── folder-gradle-open.svg │ │ ├── folder-gradle.svg │ │ ├── folder-graphql-open.svg │ │ ├── folder-graphql.svg │ │ ├── folder-guard-open.svg │ │ ├── folder-guard.svg │ │ ├── folder-gulp-open.svg │ │ ├── folder-gulp.svg │ │ ├── folder-helper-open.svg │ │ ├── folder-helper.svg │ │ ├── folder-home-open.svg │ │ ├── folder-home.svg │ │ ├── folder-hook-open.svg │ │ ├── folder-hook.svg │ │ ├── folder-husky-open.svg │ │ ├── folder-husky.svg │ │ ├── folder-i18n-open.svg │ │ ├── folder-i18n.svg │ │ ├── folder-images-open.svg │ │ ├── folder-images.svg │ │ ├── folder-import-open.svg │ │ ├── folder-import.svg │ │ ├── folder-include-open.svg │ │ ├── folder-include.svg │ │ ├── folder-intellij-open.svg │ │ ├── folder-intellij-open_light.svg │ │ ├── folder-intellij.svg │ │ ├── folder-intellij_light.svg │ │ ├── folder-interface-open.svg │ │ ├── folder-interface.svg │ │ ├── folder-ios-open.svg │ │ ├── folder-ios.svg │ │ ├── folder-java-open.svg │ │ ├── folder-java.svg │ │ ├── folder-javascript-open.svg │ │ ├── folder-javascript.svg │ │ ├── folder-jinja-open.svg │ │ ├── folder-jinja-open_light.svg │ │ ├── folder-jinja.svg │ │ ├── folder-jinja_light.svg │ │ ├── folder-job-open.svg │ │ ├── folder-job.svg │ │ ├── folder-json-open.svg │ │ ├── folder-json.svg │ │ ├── folder-keys-open.svg │ │ ├── folder-keys.svg │ │ ├── folder-kubernetes-open.svg │ │ ├── folder-kubernetes.svg │ │ ├── folder-layout-open.svg │ │ ├── folder-layout.svg │ │ ├── folder-less-open.svg │ │ ├── folder-less.svg │ │ ├── folder-lib-open.svg │ │ ├── folder-lib.svg │ │ ├── folder-link.svg │ │ ├── folder-log-open.svg │ │ ├── folder-log.svg │ │ ├── folder-lua-open.svg │ │ ├── folder-lua.svg │ │ ├── folder-mail-open.svg │ │ ├── folder-mail.svg │ │ ├── folder-mappings-open.svg │ │ ├── folder-mappings.svg │ │ ├── folder-markdown-open.svg │ │ ├── folder-markdown.svg │ │ ├── folder-messages-open.svg │ │ ├── folder-messages.svg │ │ ├── folder-meta-open.svg │ │ ├── folder-meta.svg │ │ ├── folder-middleware-open.svg │ │ ├── folder-middleware.svg │ │ ├── folder-mjml-open.svg │ │ ├── folder-mjml.svg │ │ ├── folder-mobile-open.svg │ │ ├── folder-mobile.svg │ │ ├── folder-mock-open.svg │ │ ├── folder-mock.svg │ │ ├── folder-netlify-open.svg │ │ ├── folder-netlify.svg │ │ ├── folder-next-open.svg │ │ ├── folder-next.svg │ │ ├── folder-ngrx-actions-open.svg │ │ ├── folder-ngrx-actions.svg │ │ ├── folder-ngrx-effects-open.svg │ │ ├── folder-ngrx-effects.svg │ │ ├── folder-ngrx-entities-open.svg │ │ ├── folder-ngrx-entities.svg │ │ ├── folder-ngrx-reducer-open.svg │ │ ├── folder-ngrx-reducer.svg │ │ ├── folder-ngrx-selectors-open.svg │ │ ├── folder-ngrx-selectors.svg │ │ ├── folder-ngrx-state-open.svg │ │ ├── folder-ngrx-state.svg │ │ ├── folder-ngrx-store-open.svg │ │ ├── folder-ngrx-store.svg │ │ ├── folder-node-open.svg │ │ ├── folder-node.svg │ │ ├── folder-nuxt-open.svg │ │ ├── folder-nuxt.svg │ │ ├── folder-open.svg │ │ ├── folder-other-open.svg │ │ ├── folder-other.svg │ │ ├── folder-packages-open.svg │ │ ├── folder-packages.svg │ │ ├── folder-pdf-open.svg │ │ ├── folder-pdf.svg │ │ ├── folder-php-open.svg │ │ ├── folder-php.svg │ │ ├── folder-phpmailer-open.svg │ │ ├── folder-phpmailer.svg │ │ ├── folder-pipe-open.svg │ │ ├── folder-pipe.svg │ │ ├── folder-plugin-open.svg │ │ ├── folder-plugin.svg │ │ ├── folder-prisma-open.svg │ │ ├── folder-prisma.svg │ │ ├── folder-private-open.svg │ │ ├── folder-private.svg │ │ ├── folder-project-open.svg │ │ ├── folder-project.svg │ │ ├── folder-proto-open.svg │ │ ├── folder-proto.svg │ │ ├── folder-public-open.svg │ │ ├── folder-public.svg │ │ ├── folder-python-open.svg │ │ ├── folder-python.svg │ │ ├── folder-quasar-open.svg │ │ ├── folder-quasar.svg │ │ ├── folder-queue-open.svg │ │ ├── folder-queue.svg │ │ ├── folder-react-components-open.svg │ │ ├── folder-react-components.svg │ │ ├── folder-redux-actions-open.svg │ │ ├── folder-redux-actions.svg │ │ ├── folder-redux-reducer-open.svg │ │ ├── folder-redux-reducer.svg │ │ ├── folder-redux-selector-open.svg │ │ ├── folder-redux-selector.svg │ │ ├── folder-redux-store-open.svg │ │ ├── folder-redux-store.svg │ │ ├── folder-resolver-open.svg │ │ ├── folder-resolver.svg │ │ ├── folder-resource-open.svg │ │ ├── folder-resource.svg │ │ ├── folder-review-open.svg │ │ ├── folder-review.svg │ │ ├── folder-routes-open.svg │ │ ├── folder-routes.svg │ │ ├── folder-rules-open.svg │ │ ├── folder-rules.svg │ │ ├── folder-sass-open.svg │ │ ├── folder-sass.svg │ │ ├── folder-scala-open.svg │ │ ├── folder-scala.svg │ │ ├── folder-scripts-open.svg │ │ ├── folder-scripts.svg │ │ ├── folder-secure-open.svg │ │ ├── folder-secure.svg │ │ ├── folder-server-open.svg │ │ ├── folder-server.svg │ │ ├── folder-serverless-open.svg │ │ ├── folder-serverless.svg │ │ ├── folder-sftp-open.svg │ │ ├── folder-shader-open.svg │ │ ├── folder-shader.svg │ │ ├── folder-shared-open.svg │ │ ├── folder-shared.svg │ │ ├── folder-src-open.svg │ │ ├── folder-src.svg │ │ ├── folder-stack-open.svg │ │ ├── folder-stack.svg │ │ ├── folder-stencil-open.svg │ │ ├── folder-stencil.svg │ │ ├── folder-storybook-open.svg │ │ ├── folder-storybook.svg │ │ ├── folder-stylus-open.svg │ │ ├── folder-stylus.svg │ │ ├── folder-sublime-open.svg │ │ ├── folder-sublime.svg │ │ ├── folder-supabase-open.svg │ │ ├── folder-supabase.svg │ │ ├── folder-svelte-open.svg │ │ ├── folder-svelte.svg │ │ ├── folder-syntax-open.svg │ │ ├── folder-syntax.svg │ │ ├── folder-target-open.svg │ │ ├── folder-target.svg │ │ ├── folder-tasks-open.svg │ │ ├── folder-tasks.svg │ │ ├── folder-temp-open.svg │ │ ├── folder-temp.svg │ │ ├── folder-template-open.svg │ │ ├── folder-template.svg │ │ ├── folder-terraform-open.svg │ │ ├── folder-terraform.svg │ │ ├── folder-test-open.svg │ │ ├── folder-test.svg │ │ ├── folder-theme-open.svg │ │ ├── folder-theme.svg │ │ ├── folder-tools-open.svg │ │ ├── folder-tools.svg │ │ ├── folder-typescript-open.svg │ │ ├── folder-typescript.svg │ │ ├── folder-unity-open.svg │ │ ├── folder-unity.svg │ │ ├── folder-update-open.svg │ │ ├── folder-update.svg │ │ ├── folder-upload-open.svg │ │ ├── folder-upload.svg │ │ ├── folder-utils-open.svg │ │ ├── folder-utils.svg │ │ ├── folder-vercel-open.svg │ │ ├── folder-vercel.svg │ │ ├── folder-verdaccio-open.svg │ │ ├── folder-verdaccio.svg │ │ ├── folder-video-open.svg │ │ ├── folder-video.svg │ │ ├── folder-views-open.svg │ │ ├── folder-views.svg │ │ ├── folder-vm-open.svg │ │ ├── folder-vm.svg │ │ ├── folder-vscode-open.svg │ │ ├── folder-vscode.svg │ │ ├── folder-vue-directives-open.svg │ │ ├── folder-vue-directives.svg │ │ ├── folder-vue-open.svg │ │ ├── folder-vue.svg │ │ ├── folder-vuepress-open.svg │ │ ├── folder-vuepress.svg │ │ ├── folder-vuex-store-open.svg │ │ ├── folder-vuex-store.svg │ │ ├── folder-wakatime-open.svg │ │ ├── folder-wakatime.svg │ │ ├── folder-webpack-open.svg │ │ ├── folder-webpack.svg │ │ ├── folder-wordpress-open.svg │ │ ├── folder-wordpress.svg │ │ ├── folder-yarn-open.svg │ │ ├── folder-yarn.svg │ │ ├── folder.svg │ │ ├── folder_type_binary.svg │ │ ├── font.svg │ │ ├── forth.svg │ │ ├── fortran.svg │ │ ├── foxpro.svg │ │ ├── fsharp.svg │ │ ├── ftp.svg │ │ ├── fusebox.svg │ │ ├── gamemaker.svg │ │ ├── gatsby.svg │ │ ├── gcp.svg │ │ ├── gemfile.svg │ │ ├── gemini.svg │ │ ├── git-bash.svg │ │ ├── git.svg │ │ ├── gitee.svg │ │ ├── github.svg │ │ ├── gitlab.svg │ │ ├── gitpod.svg │ │ ├── gleam.svg │ │ ├── go-mod.svg │ │ ├── go.svg │ │ ├── go_gopher.svg │ │ ├── godot-assets.svg │ │ ├── godot.svg │ │ ├── gradle.svg │ │ ├── grain.svg │ │ ├── graphcool.svg │ │ ├── graphql.svg │ │ ├── gridsome.svg │ │ ├── groovy.svg │ │ ├── grunt.svg │ │ ├── gulp.svg │ │ ├── h.svg │ │ ├── hack.svg │ │ ├── haml.svg │ │ ├── handlebars.svg │ │ ├── hardhat.svg │ │ ├── haskell.svg │ │ ├── haxe.svg │ │ ├── hcl.svg │ │ ├── hcl_light.svg │ │ ├── helm.svg │ │ ├── heroku.svg │ │ ├── hex.svg │ │ ├── horusec.svg │ │ ├── host.svg │ │ ├── hpp.svg │ │ ├── html.svg │ │ ├── http.svg │ │ ├── husky.svg │ │ ├── i18n.svg │ │ ├── idris.svg │ │ ├── image.svg │ │ ├── imba.svg │ │ ├── ionic.svg │ │ ├── istanbul.svg │ │ ├── jar.svg │ │ ├── java.svg │ │ ├── javaclass.svg │ │ ├── javascript-map.svg │ │ ├── javascript.svg │ │ ├── jenkins.svg │ │ ├── jest.svg │ │ ├── jinja.svg │ │ ├── jinja_light.svg │ │ ├── jsconfig.svg │ │ ├── json.svg │ │ ├── julia.svg │ │ ├── jupyter.svg │ │ ├── kali.svg │ │ ├── karma.svg │ │ ├── key.svg │ │ ├── kivy.svg │ │ ├── kl.svg │ │ ├── kotlin.svg │ │ ├── kusto.svg │ │ ├── language-es.svg │ │ ├── language-zh.svg │ │ ├── laravel.svg │ │ ├── layout-alone.svg │ │ ├── layout-col.svg │ │ ├── layout-lattice.svg │ │ ├── layout-row.svg │ │ ├── lerna.svg │ │ ├── less.svg │ │ ├── lib.svg │ │ ├── lighthouse.svg │ │ ├── lilypond.svg │ │ ├── linux.svg │ │ ├── liquid.svg │ │ ├── lisp.svg │ │ ├── livescript.svg │ │ ├── lock.svg │ │ ├── log.svg │ │ ├── logo.svg │ │ ├── lolcode.svg │ │ ├── lua.svg │ │ ├── makefile.svg │ │ ├── markdown.svg │ │ ├── markojs.svg │ │ ├── mathematica.svg │ │ ├── matlab.svg │ │ ├── maven.svg │ │ ├── mdsvex.svg │ │ ├── mdx.svg │ │ ├── merlin.svg │ │ ├── meson.svg │ │ ├── minecraft.svg │ │ ├── mint.svg │ │ ├── mjml.svg │ │ ├── mocha.svg │ │ ├── modernizr.svg │ │ ├── moonscript.svg │ │ ├── msys2.svg │ │ ├── mxml.svg │ │ ├── n-setting.svg │ │ ├── nano-staged.svg │ │ ├── nano-staged_light.svg │ │ ├── ndst.svg │ │ ├── nest-controller.svg │ │ ├── nest-decorator.svg │ │ ├── nest-filter.svg │ │ ├── nest-gateway.svg │ │ ├── nest-guard.svg │ │ ├── nest-middleware.svg │ │ ├── nest-module.svg │ │ ├── nest-pipe.svg │ │ ├── nest-resolver.svg │ │ ├── nest-service.svg │ │ ├── nest.svg │ │ ├── netlify.svg │ │ ├── next.svg │ │ ├── next_light.svg │ │ ├── nginx.svg │ │ ├── ngrx-actions.svg │ │ ├── ngrx-effects.svg │ │ ├── ngrx-entity.svg │ │ ├── ngrx-reducer.svg │ │ ├── ngrx-selectors.svg │ │ ├── ngrx-state.svg │ │ ├── nim.svg │ │ ├── nix.svg │ │ ├── nodejs.svg │ │ ├── nodejs_alt.svg │ │ ├── nodemon.svg │ │ ├── npm.svg │ │ ├── nrwl.svg │ │ ├── nuget.svg │ │ ├── nunjucks.svg │ │ ├── nuxt.svg │ │ ├── objective-c.svg │ │ ├── objective-cpp.svg │ │ ├── ocaml.svg │ │ ├── odin.svg │ │ ├── official-website.svg │ │ ├── opa.svg │ │ ├── opam.svg │ │ ├── open-euler.svg │ │ ├── openEuler.svg │ │ ├── oracle-linux.svg │ │ ├── oracle.svg │ │ ├── otne.svg │ │ ├── parcel.svg │ │ ├── pascal.svg │ │ ├── pawn.svg │ │ ├── pdf.svg │ │ ├── percy.svg │ │ ├── perl.svg │ │ ├── php-cs-fixer.svg │ │ ├── php.svg │ │ ├── php_elephant.svg │ │ ├── php_elephant_pink.svg │ │ ├── phpunit.svg │ │ ├── pinejs.svg │ │ ├── pipeline.svg │ │ ├── playwright.svg │ │ ├── plop.svg │ │ ├── pnpm.svg │ │ ├── pnpm_light.svg │ │ ├── poetry.svg │ │ ├── postcss.svg │ │ ├── posthtml.svg │ │ ├── powerpoint.svg │ │ ├── powershell-core.svg │ │ ├── powershell.svg │ │ ├── prettier.svg │ │ ├── prisma.svg │ │ ├── processing.svg │ │ ├── prolog.svg │ │ ├── proto.svg │ │ ├── protractor.svg │ │ ├── pug.svg │ │ ├── puppet.svg │ │ ├── purescript.svg │ │ ├── python-misc.svg │ │ ├── python.svg │ │ ├── qsharp.svg │ │ ├── quasar.svg │ │ ├── r.svg │ │ ├── racket.svg │ │ ├── raml.svg │ │ ├── razor.svg │ │ ├── react.svg │ │ ├── react_ts.svg │ │ ├── readme.svg │ │ ├── reason.svg │ │ ├── red.svg │ │ ├── redhat.svg │ │ ├── redux-action.svg │ │ ├── redux-reducer.svg │ │ ├── redux-selector.svg │ │ ├── redux-store.svg │ │ ├── remix.svg │ │ ├── remix_light.svg │ │ ├── renovate.svg │ │ ├── replit.svg │ │ ├── rescript-interface.svg │ │ ├── rescript.svg │ │ ├── restql.svg │ │ ├── riot.svg │ │ ├── roadmap.svg │ │ ├── robot.svg │ │ ├── robots.svg │ │ ├── rollup.svg │ │ ├── rome.svg │ │ ├── routing.svg │ │ ├── rubocop.svg │ │ ├── rubocop_light.svg │ │ ├── ruby.svg │ │ ├── rust.svg │ │ ├── s-ftp.svg │ │ ├── salesforce.svg │ │ ├── san.svg │ │ ├── sas.svg │ │ ├── sass.svg │ │ ├── sbt.svg │ │ ├── scala.svg │ │ ├── scheme.svg │ │ ├── search.svg │ │ ├── semantic-release.svg │ │ ├── semantic-release_light.svg │ │ ├── sentry.svg │ │ ├── sequelize.svg │ │ ├── serial.svg │ │ ├── server.svg │ │ ├── serverless.svg │ │ ├── settings.svg │ │ ├── shader.svg │ │ ├── shaderlab.svg │ │ ├── silverstripe.svg │ │ ├── siyuan.svg │ │ ├── sketch.svg │ │ ├── slim.svg │ │ ├── slug.svg │ │ ├── smarty.svg │ │ ├── sml.svg │ │ ├── snowpack.svg │ │ ├── snowpack_light.svg │ │ ├── snyk.svg │ │ ├── solidity.svg │ │ ├── sonarcloud.svg │ │ ├── ssh.svg │ │ ├── steadybit.svg │ │ ├── stencil.svg │ │ ├── stitches.svg │ │ ├── stitches_light.svg │ │ ├── storybook.svg │ │ ├── stryker.svg │ │ ├── stylable.svg │ │ ├── stylelint.svg │ │ ├── stylelint_light.svg │ │ ├── stylus.svg │ │ ├── sublime.svg │ │ ├── supabase.svg │ │ ├── suse.svg │ │ ├── svelte.svg │ │ ├── svg.svg │ │ ├── svgo.svg │ │ ├── svgr.svg │ │ ├── swc.svg │ │ ├── swift.svg │ │ ├── table.svg │ │ ├── tailwindcss.svg │ │ ├── tauri.svg │ │ ├── tcl.svg │ │ ├── teal.svg │ │ ├── telnet.svg │ │ ├── template.svg │ │ ├── terraform.svg │ │ ├── test-js.svg │ │ ├── test-jsx.svg │ │ ├── test-ts.svg │ │ ├── tex.svg │ │ ├── textlint.svg │ │ ├── tilt.svg │ │ ├── tldraw.svg │ │ ├── tldraw_light.svg │ │ ├── tobi.svg │ │ ├── tobimake.svg │ │ ├── todo.svg │ │ ├── travis.svg │ │ ├── tree.svg │ │ ├── tsconfig.svg │ │ ├── tune.svg │ │ ├── turborepo.svg │ │ ├── turborepo_light.svg │ │ ├── twig.svg │ │ ├── twine.svg │ │ ├── typescript-def.svg │ │ ├── typescript.svg │ │ ├── ubuntu-kylin.svg │ │ ├── ubuntu.svg │ │ ├── uml.svg │ │ ├── uml_light.svg │ │ ├── unknown.svg │ │ ├── url.svg │ │ ├── vagrant.svg │ │ ├── vala.svg │ │ ├── velocity.svg │ │ ├── vercel.svg │ │ ├── vercel_light.svg │ │ ├── verdaccio.svg │ │ ├── verilog.svg │ │ ├── vfl.svg │ │ ├── video.svg │ │ ├── vim.svg │ │ ├── virtual.svg │ │ ├── visualstudio.svg │ │ ├── vite.svg │ │ ├── vitest.svg │ │ ├── vlang.svg │ │ ├── vnc.svg │ │ ├── vs2017.svg │ │ ├── vs2019.svg │ │ ├── vs2022.svg │ │ ├── vscode.svg │ │ ├── vue-config.svg │ │ ├── vue.svg │ │ ├── vuex-store.svg │ │ ├── wakatime.svg │ │ ├── wakatime_light.svg │ │ ├── wallaby.svg │ │ ├── watchman.svg │ │ ├── webassembly.svg │ │ ├── webhint.svg │ │ ├── webpack.svg │ │ ├── wepy.svg │ │ ├── windicss.svg │ │ ├── windows.svg │ │ ├── wolframlanguage.svg │ │ ├── word.svg │ │ ├── xaml.svg │ │ ├── xml.svg │ │ ├── yaml.svg │ │ ├── yang.svg │ │ ├── yarn.svg │ │ ├── zig.svg │ │ └── zip.svg │ └── system-icon.ts ├── layout │ ├── MainLayout.vue │ ├── NxLayout.vue │ └── components │ │ ├── index.js │ │ ├── menu │ │ ├── components │ │ │ └── FolderDialog.vue │ │ └── index.vue │ │ ├── navbar │ │ └── index.vue │ │ ├── tabbar │ │ └── index.vue │ │ └── toolbar │ │ └── index.vue ├── locals │ ├── index.js │ └── lang │ │ ├── en-US.json │ │ └── zh-CN.json ├── main.js ├── router │ └── index.js ├── services │ ├── clipboard │ │ ├── innerClipboard.js │ │ └── systemClipboard.js │ ├── cloudService │ │ ├── axios.js │ │ ├── index.js │ │ └── oauth.js │ ├── editorSession.js │ ├── eventbus.ts │ ├── filesystem │ │ ├── ftp.js │ │ ├── index.js │ │ ├── sftp.js │ │ └── webdav.js │ ├── ftpSession.js │ ├── globalSetting.ts │ ├── globalSettingSession.js │ ├── index.js │ ├── localshellSession.js │ ├── loginSession.js │ ├── nxsys │ │ ├── dataTransfer.js │ │ ├── localfs.js │ │ ├── logger.js │ │ ├── nodes.js │ │ └── terminal.js │ ├── profiles │ │ ├── global.ts │ │ ├── kinds │ │ │ └── xterm.ts │ │ └── profileView.ts │ ├── serialportSession.js │ ├── session.js │ ├── sessionManage │ │ ├── sessionConfig.ts │ │ ├── shellConfig.ts │ │ └── uuid.d.ts │ ├── sessionMgr.js │ ├── sessionRecent.js │ ├── sftpSession.js │ ├── shellSession.js │ ├── storage │ │ ├── index.d.ts │ │ ├── index.js │ │ ├── localFileSystem.js │ │ ├── localWebStorage.js │ │ └── storageInterface.js │ ├── telnetSession.js │ ├── vncSession.js │ ├── webdavSession.js │ └── welcomeSession.js ├── store │ ├── index.ts │ └── modules │ │ ├── app-setting.ts │ │ ├── nx-menu.ts │ │ ├── nx-tabs.ts │ │ ├── session.ts │ │ └── user.ts └── views │ ├── Lock.vue │ ├── Login.vue │ ├── Welcome.vue │ ├── components │ ├── auth │ │ └── auth.vue │ ├── fileview │ │ ├── address.vue │ │ ├── components │ │ │ └── file-status-bar │ │ │ │ └── index.vue │ │ └── fileview.vue │ ├── index.js │ ├── profile │ │ ├── profileitem.vue │ │ └── profileview.vue │ └── session │ │ ├── constants │ │ ├── font-list.ts │ │ ├── index.ts │ │ ├── protocol.ts │ │ ├── system.ts │ │ └── xterm-theme.ts │ │ ├── ftp │ │ ├── constants.ts │ │ └── index.vue │ │ ├── index.js │ │ ├── localShell │ │ ├── constants.ts │ │ └── index.vue │ │ ├── serial │ │ ├── constants.ts │ │ └── index.vue │ │ ├── ssh │ │ └── index.vue │ │ ├── telnet │ │ ├── constants.ts │ │ └── index.vue │ │ └── vnc │ │ ├── constants.ts │ │ └── index.vue │ ├── editor │ ├── editorview.vue │ ├── index.vue │ └── themes.js │ ├── session │ ├── components │ │ ├── xtermInstance │ │ │ └── index.vue │ │ └── xtermTheme │ │ │ ├── ThemePreview.vue │ │ │ └── index.vue │ └── index.vue │ ├── settings │ ├── constants │ │ ├── default.js │ │ ├── index.js │ │ ├── osType.js │ │ └── protocol.js │ └── index.vue │ ├── sftp │ ├── index.vue │ └── sftpview.vue │ ├── vnc │ ├── index.vue │ └── vncview.vue │ └── xterm │ ├── iconv.js │ ├── profile.vue │ ├── xtermInstance.vue │ ├── xtermPreview.vue │ ├── xtermSession.vue │ ├── xtermTheme.js │ └── xzmodem.js ├── svgo.config.js ├── tsconfig.json ├── vue.config.js └── webpack.conf.js /.browserslistrc: -------------------------------------------------------------------------------- 1 | > 1% 2 | last 2 versions 3 | not dead 4 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/README.md -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/babel.config.js -------------------------------------------------------------------------------- /common/filesystem/dirent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/common/filesystem/dirent.js -------------------------------------------------------------------------------- /common/filesystem/filesystem.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/common/filesystem/filesystem.js -------------------------------------------------------------------------------- /common/filesystem/fstat.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/common/filesystem/fstat.js -------------------------------------------------------------------------------- /common/nxsys/consts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/common/nxsys/consts.js -------------------------------------------------------------------------------- /common/nxsys/dataTransfer.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/common/nxsys/dataTransfer.d.ts -------------------------------------------------------------------------------- /common/nxsys/dataTransfer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/common/nxsys/dataTransfer.js -------------------------------------------------------------------------------- /common/nxsys/eventbus.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/common/nxsys/eventbus.ts -------------------------------------------------------------------------------- /common/nxsys/logger.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/common/nxsys/logger.js -------------------------------------------------------------------------------- /common/nxsys/nodes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/common/nxsys/nodes.js -------------------------------------------------------------------------------- /common/nxsys/terminal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/common/nxsys/terminal.js -------------------------------------------------------------------------------- /common/utils/encrypt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/common/utils/encrypt.js -------------------------------------------------------------------------------- /common/utils/idGenerator.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/common/utils/idGenerator.d.ts -------------------------------------------------------------------------------- /common/utils/idGenerator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/common/utils/idGenerator.js -------------------------------------------------------------------------------- /common/utils/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/common/utils/index.js -------------------------------------------------------------------------------- /common/utils/waitObject.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/common/utils/waitObject.js -------------------------------------------------------------------------------- /devtools/buildservice.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/devtools/buildservice.js -------------------------------------------------------------------------------- /devtools/rundev.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/devtools/rundev.js -------------------------------------------------------------------------------- /devtools/synccore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/devtools/synccore.js -------------------------------------------------------------------------------- /devtools/webpack/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/devtools/webpack/webpack.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/package.json -------------------------------------------------------------------------------- /ptservices/dataTransfer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/ptservices/dataTransfer.js -------------------------------------------------------------------------------- /ptservices/fontList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/ptservices/fontList.js -------------------------------------------------------------------------------- /ptservices/fs/ftp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/ptservices/fs/ftp.js -------------------------------------------------------------------------------- /ptservices/fs/localfs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/ptservices/fs/localfs.js -------------------------------------------------------------------------------- /ptservices/fs/sftp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/ptservices/fs/sftp.js -------------------------------------------------------------------------------- /ptservices/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/ptservices/index.js -------------------------------------------------------------------------------- /ptservices/localFileStorage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/ptservices/localFileStorage.js -------------------------------------------------------------------------------- /ptservices/logger.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/ptservices/logger.js -------------------------------------------------------------------------------- /ptservices/nodes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/ptservices/nodes.js -------------------------------------------------------------------------------- /ptservices/nodesimpl/ftpnode.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/ptservices/nodesimpl/ftpnode.js -------------------------------------------------------------------------------- /ptservices/nodesimpl/localnode.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/ptservices/nodesimpl/localnode.js -------------------------------------------------------------------------------- /ptservices/nodesimpl/node.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/ptservices/nodesimpl/node.js -------------------------------------------------------------------------------- /ptservices/nodesimpl/registry.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/ptservices/nodesimpl/registry.js -------------------------------------------------------------------------------- /ptservices/nodesimpl/sshnodes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/ptservices/nodesimpl/sshnodes.js -------------------------------------------------------------------------------- /ptservices/nodesimpl/telnet.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/ptservices/nodesimpl/telnet.js -------------------------------------------------------------------------------- /ptservices/nodesimpl/telnetnodes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/ptservices/nodesimpl/telnetnodes.js -------------------------------------------------------------------------------- /ptservices/nxobjs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/ptservices/nxobjs.js -------------------------------------------------------------------------------- /ptservices/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/ptservices/package.json -------------------------------------------------------------------------------- /ptservices/webdav.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/ptservices/webdav.js -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/public/index.html -------------------------------------------------------------------------------- /src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/App.vue -------------------------------------------------------------------------------- /src/assets/images/GitHub.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/assets/images/GitHub.png -------------------------------------------------------------------------------- /src/assets/images/Gitee.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/assets/images/Gitee.png -------------------------------------------------------------------------------- /src/assets/images/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/assets/images/background.png -------------------------------------------------------------------------------- /src/assets/images/default-avatar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/assets/images/default-avatar.png -------------------------------------------------------------------------------- /src/assets/images/pause.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/assets/images/pause.png -------------------------------------------------------------------------------- /src/assets/images/shutdown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/assets/images/shutdown.png -------------------------------------------------------------------------------- /src/assets/images/video.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/assets/images/video.png -------------------------------------------------------------------------------- /src/assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/assets/logo.png -------------------------------------------------------------------------------- /src/assets/scss/_const.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/assets/scss/_const.scss -------------------------------------------------------------------------------- /src/assets/scss/_reset.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/assets/scss/_reset.scss -------------------------------------------------------------------------------- /src/assets/scss/default.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/assets/scss/default.scss -------------------------------------------------------------------------------- /src/assets/scss/theme/dark.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/assets/scss/theme/dark.scss -------------------------------------------------------------------------------- /src/assets/scss/theme/light.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/assets/scss/theme/light.scss -------------------------------------------------------------------------------- /src/assets/scss/theme/pink.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/assets/scss/theme/pink.scss -------------------------------------------------------------------------------- /src/components/bars/toolbar.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/components/bars/toolbar.vue -------------------------------------------------------------------------------- /src/components/base/const.js: -------------------------------------------------------------------------------- 1 | export default { 2 | WINDOW_TITLE_HEIGHT: 30 3 | }; 4 | -------------------------------------------------------------------------------- /src/components/base/dragable.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/components/base/dragable.vue -------------------------------------------------------------------------------- /src/components/base/mouse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/components/base/mouse.js -------------------------------------------------------------------------------- /src/components/base/resizedetector.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/components/base/resizedetector.js -------------------------------------------------------------------------------- /src/components/base/shortcut.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/components/base/shortcut.js -------------------------------------------------------------------------------- /src/components/file/file.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/components/file/file.vue -------------------------------------------------------------------------------- /src/components/folder/folder.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/components/folder/folder.vue -------------------------------------------------------------------------------- /src/components/gridview/gridview.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/components/gridview/gridview.vue -------------------------------------------------------------------------------- /src/components/icon/iconfont.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/components/icon/iconfont.js -------------------------------------------------------------------------------- /src/components/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/components/index.js -------------------------------------------------------------------------------- /src/components/list/list.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/components/list/list.vue -------------------------------------------------------------------------------- /src/components/list/listitem.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/components/list/listitem.js -------------------------------------------------------------------------------- /src/components/menu/contextmenu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/components/menu/contextmenu.js -------------------------------------------------------------------------------- /src/components/menu/contextmenu.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/components/menu/contextmenu.scss -------------------------------------------------------------------------------- /src/components/menu/menu.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/components/menu/menu.vue -------------------------------------------------------------------------------- /src/components/menu/menuManager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/components/menu/menuManager.js -------------------------------------------------------------------------------- /src/components/menu/menuitem.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/components/menu/menuitem.vue -------------------------------------------------------------------------------- /src/components/modal/NxModal.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/components/modal/NxModal.vue -------------------------------------------------------------------------------- /src/components/modal/types.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/components/nxButton/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/components/nxButton/index.vue -------------------------------------------------------------------------------- /src/components/space/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/components/space/index.vue -------------------------------------------------------------------------------- /src/components/svgicon/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/components/svgicon/index.vue -------------------------------------------------------------------------------- /src/components/tab/tab.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/components/tab/tab.vue -------------------------------------------------------------------------------- /src/components/tab/tabitem.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/components/tab/tabitem.vue -------------------------------------------------------------------------------- /src/components/xterm/xterm.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/components/xterm/xterm.vue -------------------------------------------------------------------------------- /src/element/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/element/index.js -------------------------------------------------------------------------------- /src/icons/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/index.js -------------------------------------------------------------------------------- /src/icons/svg/3d.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/3d.svg -------------------------------------------------------------------------------- /src/icons/svg/abc.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/abc.svg -------------------------------------------------------------------------------- /src/icons/svg/actionscript.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/actionscript.svg -------------------------------------------------------------------------------- /src/icons/svg/ada.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/ada.svg -------------------------------------------------------------------------------- /src/icons/svg/adonis.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/adonis.svg -------------------------------------------------------------------------------- /src/icons/svg/advpl_include.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/advpl_include.svg -------------------------------------------------------------------------------- /src/icons/svg/advpl_prw.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/advpl_prw.svg -------------------------------------------------------------------------------- /src/icons/svg/advpl_ptm.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/advpl_ptm.svg -------------------------------------------------------------------------------- /src/icons/svg/advpl_tlpp.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/advpl_tlpp.svg -------------------------------------------------------------------------------- /src/icons/svg/alma.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/alma.svg -------------------------------------------------------------------------------- /src/icons/svg/alpine.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/alpine.svg -------------------------------------------------------------------------------- /src/icons/svg/android.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/android.svg -------------------------------------------------------------------------------- /src/icons/svg/angular-component.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/angular-component.svg -------------------------------------------------------------------------------- /src/icons/svg/angular-directive.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/angular-directive.svg -------------------------------------------------------------------------------- /src/icons/svg/angular-guard.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/angular-guard.svg -------------------------------------------------------------------------------- /src/icons/svg/angular-pipe.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/angular-pipe.svg -------------------------------------------------------------------------------- /src/icons/svg/angular-resolver.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/angular-resolver.svg -------------------------------------------------------------------------------- /src/icons/svg/angular-service.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/angular-service.svg -------------------------------------------------------------------------------- /src/icons/svg/angular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/angular.svg -------------------------------------------------------------------------------- /src/icons/svg/antlr.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/antlr.svg -------------------------------------------------------------------------------- /src/icons/svg/apiblueprint.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/apiblueprint.svg -------------------------------------------------------------------------------- /src/icons/svg/apollo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/apollo.svg -------------------------------------------------------------------------------- /src/icons/svg/applescript.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/applescript.svg -------------------------------------------------------------------------------- /src/icons/svg/appveyor.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/appveyor.svg -------------------------------------------------------------------------------- /src/icons/svg/arch.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/arch.svg -------------------------------------------------------------------------------- /src/icons/svg/architecture.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/architecture.svg -------------------------------------------------------------------------------- /src/icons/svg/arduino.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/arduino.svg -------------------------------------------------------------------------------- /src/icons/svg/asciidoc.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/asciidoc.svg -------------------------------------------------------------------------------- /src/icons/svg/assembly.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/assembly.svg -------------------------------------------------------------------------------- /src/icons/svg/astro.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/astro.svg -------------------------------------------------------------------------------- /src/icons/svg/astyle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/astyle.svg -------------------------------------------------------------------------------- /src/icons/svg/audio.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/audio.svg -------------------------------------------------------------------------------- /src/icons/svg/aurelia.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/aurelia.svg -------------------------------------------------------------------------------- /src/icons/svg/authors.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/authors.svg -------------------------------------------------------------------------------- /src/icons/svg/auto.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/auto.svg -------------------------------------------------------------------------------- /src/icons/svg/auto_light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/auto_light.svg -------------------------------------------------------------------------------- /src/icons/svg/autohotkey.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/autohotkey.svg -------------------------------------------------------------------------------- /src/icons/svg/autoit.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/autoit.svg -------------------------------------------------------------------------------- /src/icons/svg/azure-pipelines.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/azure-pipelines.svg -------------------------------------------------------------------------------- /src/icons/svg/azure.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/azure.svg -------------------------------------------------------------------------------- /src/icons/svg/babel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/babel.svg -------------------------------------------------------------------------------- /src/icons/svg/ballerina.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/ballerina.svg -------------------------------------------------------------------------------- /src/icons/svg/bazel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/bazel.svg -------------------------------------------------------------------------------- /src/icons/svg/bicep.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/bicep.svg -------------------------------------------------------------------------------- /src/icons/svg/bitbucket.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/bitbucket.svg -------------------------------------------------------------------------------- /src/icons/svg/bithound.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/bithound.svg -------------------------------------------------------------------------------- /src/icons/svg/blink.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/blink.svg -------------------------------------------------------------------------------- /src/icons/svg/blink_light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/blink_light.svg -------------------------------------------------------------------------------- /src/icons/svg/blitz.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/blitz.svg -------------------------------------------------------------------------------- /src/icons/svg/bower.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/bower.svg -------------------------------------------------------------------------------- /src/icons/svg/brainfuck.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/brainfuck.svg -------------------------------------------------------------------------------- /src/icons/svg/browserlist.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/browserlist.svg -------------------------------------------------------------------------------- /src/icons/svg/browserlist_light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/browserlist_light.svg -------------------------------------------------------------------------------- /src/icons/svg/buck.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/buck.svg -------------------------------------------------------------------------------- /src/icons/svg/bucklescript.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/bucklescript.svg -------------------------------------------------------------------------------- /src/icons/svg/bug.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/bug.svg -------------------------------------------------------------------------------- /src/icons/svg/buildkite.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/buildkite.svg -------------------------------------------------------------------------------- /src/icons/svg/bun.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/bun.svg -------------------------------------------------------------------------------- /src/icons/svg/bun_light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/bun_light.svg -------------------------------------------------------------------------------- /src/icons/svg/c.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/c.svg -------------------------------------------------------------------------------- /src/icons/svg/cabal.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/cabal.svg -------------------------------------------------------------------------------- /src/icons/svg/caddy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/caddy.svg -------------------------------------------------------------------------------- /src/icons/svg/cadence.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/cadence.svg -------------------------------------------------------------------------------- /src/icons/svg/cake.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/cake.svg -------------------------------------------------------------------------------- /src/icons/svg/capacitor.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/capacitor.svg -------------------------------------------------------------------------------- /src/icons/svg/centos.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/centos.svg -------------------------------------------------------------------------------- /src/icons/svg/certificate.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/certificate.svg -------------------------------------------------------------------------------- /src/icons/svg/changelog.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/changelog.svg -------------------------------------------------------------------------------- /src/icons/svg/chess.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/chess.svg -------------------------------------------------------------------------------- /src/icons/svg/chess_light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/chess_light.svg -------------------------------------------------------------------------------- /src/icons/svg/circleci.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/circleci.svg -------------------------------------------------------------------------------- /src/icons/svg/circleci_light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/circleci_light.svg -------------------------------------------------------------------------------- /src/icons/svg/clink.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/clink.svg -------------------------------------------------------------------------------- /src/icons/svg/clojure.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/clojure.svg -------------------------------------------------------------------------------- /src/icons/svg/cloudfoundry.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/cloudfoundry.svg -------------------------------------------------------------------------------- /src/icons/svg/cmake.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/cmake.svg -------------------------------------------------------------------------------- /src/icons/svg/cmd.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/cmd.svg -------------------------------------------------------------------------------- /src/icons/svg/cmder-powershell.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/cmder-powershell.svg -------------------------------------------------------------------------------- /src/icons/svg/cmder.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/cmder.svg -------------------------------------------------------------------------------- /src/icons/svg/coala.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/coala.svg -------------------------------------------------------------------------------- /src/icons/svg/cobol.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/cobol.svg -------------------------------------------------------------------------------- /src/icons/svg/coconut.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/coconut.svg -------------------------------------------------------------------------------- /src/icons/svg/code-climate.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/code-climate.svg -------------------------------------------------------------------------------- /src/icons/svg/code-climate_light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/code-climate_light.svg -------------------------------------------------------------------------------- /src/icons/svg/codecov.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/codecov.svg -------------------------------------------------------------------------------- /src/icons/svg/codeowners.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/codeowners.svg -------------------------------------------------------------------------------- /src/icons/svg/coffee.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/coffee.svg -------------------------------------------------------------------------------- /src/icons/svg/coldfusion.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/coldfusion.svg -------------------------------------------------------------------------------- /src/icons/svg/command.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/command.svg -------------------------------------------------------------------------------- /src/icons/svg/commitlint.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/commitlint.svg -------------------------------------------------------------------------------- /src/icons/svg/conduct.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/conduct.svg -------------------------------------------------------------------------------- /src/icons/svg/console.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/console.svg -------------------------------------------------------------------------------- /src/icons/svg/contributing.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/contributing.svg -------------------------------------------------------------------------------- /src/icons/svg/cpp.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/cpp.svg -------------------------------------------------------------------------------- /src/icons/svg/craco.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/craco.svg -------------------------------------------------------------------------------- /src/icons/svg/credits.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/credits.svg -------------------------------------------------------------------------------- /src/icons/svg/crystal.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/crystal.svg -------------------------------------------------------------------------------- /src/icons/svg/crystal_light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/crystal_light.svg -------------------------------------------------------------------------------- /src/icons/svg/csharp.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/csharp.svg -------------------------------------------------------------------------------- /src/icons/svg/css-map.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/css-map.svg -------------------------------------------------------------------------------- /src/icons/svg/css.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/css.svg -------------------------------------------------------------------------------- /src/icons/svg/cucumber.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/cucumber.svg -------------------------------------------------------------------------------- /src/icons/svg/cuda.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/cuda.svg -------------------------------------------------------------------------------- /src/icons/svg/cygwin.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/cygwin.svg -------------------------------------------------------------------------------- /src/icons/svg/cypress.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/cypress.svg -------------------------------------------------------------------------------- /src/icons/svg/d.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/d.svg -------------------------------------------------------------------------------- /src/icons/svg/dart.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/dart.svg -------------------------------------------------------------------------------- /src/icons/svg/dart_generated.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/dart_generated.svg -------------------------------------------------------------------------------- /src/icons/svg/database.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/database.svg -------------------------------------------------------------------------------- /src/icons/svg/debian.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/debian.svg -------------------------------------------------------------------------------- /src/icons/svg/deepin.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/deepin.svg -------------------------------------------------------------------------------- /src/icons/svg/denizenscript.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/denizenscript.svg -------------------------------------------------------------------------------- /src/icons/svg/dependabot.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/dependabot.svg -------------------------------------------------------------------------------- /src/icons/svg/dhall.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/dhall.svg -------------------------------------------------------------------------------- /src/icons/svg/diff.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/diff.svg -------------------------------------------------------------------------------- /src/icons/svg/dinophp.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/dinophp.svg -------------------------------------------------------------------------------- /src/icons/svg/disc.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/disc.svg -------------------------------------------------------------------------------- /src/icons/svg/django.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/django.svg -------------------------------------------------------------------------------- /src/icons/svg/docker.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/docker.svg -------------------------------------------------------------------------------- /src/icons/svg/document.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/document.svg -------------------------------------------------------------------------------- /src/icons/svg/dotjs.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/dotjs.svg -------------------------------------------------------------------------------- /src/icons/svg/drawio.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/drawio.svg -------------------------------------------------------------------------------- /src/icons/svg/drone.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/drone.svg -------------------------------------------------------------------------------- /src/icons/svg/drone_light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/drone_light.svg -------------------------------------------------------------------------------- /src/icons/svg/dune.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/dune.svg -------------------------------------------------------------------------------- /src/icons/svg/edge.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/edge.svg -------------------------------------------------------------------------------- /src/icons/svg/editorconfig.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/editorconfig.svg -------------------------------------------------------------------------------- /src/icons/svg/ejs.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/ejs.svg -------------------------------------------------------------------------------- /src/icons/svg/elixir.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/elixir.svg -------------------------------------------------------------------------------- /src/icons/svg/elm.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/elm.svg -------------------------------------------------------------------------------- /src/icons/svg/email.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/email.svg -------------------------------------------------------------------------------- /src/icons/svg/ember.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/ember.svg -------------------------------------------------------------------------------- /src/icons/svg/erlang.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/erlang.svg -------------------------------------------------------------------------------- /src/icons/svg/eslint.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/eslint.svg -------------------------------------------------------------------------------- /src/icons/svg/exe.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/exe.svg -------------------------------------------------------------------------------- /src/icons/svg/eye-close.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/eye-close.svg -------------------------------------------------------------------------------- /src/icons/svg/eye-open.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/eye-open.svg -------------------------------------------------------------------------------- /src/icons/svg/fastlane.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/fastlane.svg -------------------------------------------------------------------------------- /src/icons/svg/favicon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/favicon.svg -------------------------------------------------------------------------------- /src/icons/svg/fedora.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/fedora.svg -------------------------------------------------------------------------------- /src/icons/svg/figma.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/figma.svg -------------------------------------------------------------------------------- /src/icons/svg/file-link.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/file-link.svg -------------------------------------------------------------------------------- /src/icons/svg/file.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/file.svg -------------------------------------------------------------------------------- /src/icons/svg/firebase.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/firebase.svg -------------------------------------------------------------------------------- /src/icons/svg/flash.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/flash.svg -------------------------------------------------------------------------------- /src/icons/svg/flow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/flow.svg -------------------------------------------------------------------------------- /src/icons/svg/folder-admin-open.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/folder-admin-open.svg -------------------------------------------------------------------------------- /src/icons/svg/folder-admin.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/folder-admin.svg -------------------------------------------------------------------------------- /src/icons/svg/folder-android-open.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/folder-android-open.svg -------------------------------------------------------------------------------- /src/icons/svg/folder-android.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/folder-android.svg -------------------------------------------------------------------------------- /src/icons/svg/folder-angular-open.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/folder-angular-open.svg -------------------------------------------------------------------------------- /src/icons/svg/folder-angular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/folder-angular.svg -------------------------------------------------------------------------------- /src/icons/svg/folder-animation.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/folder-animation.svg -------------------------------------------------------------------------------- /src/icons/svg/folder-ansible-open.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/folder-ansible-open.svg -------------------------------------------------------------------------------- /src/icons/svg/folder-ansible.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/folder-ansible.svg -------------------------------------------------------------------------------- /src/icons/svg/folder-api-open.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/folder-api-open.svg -------------------------------------------------------------------------------- /src/icons/svg/folder-api.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/folder-api.svg -------------------------------------------------------------------------------- /src/icons/svg/folder-apollo-open.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/folder-apollo-open.svg -------------------------------------------------------------------------------- /src/icons/svg/folder-apollo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/folder-apollo.svg -------------------------------------------------------------------------------- /src/icons/svg/folder-app-open.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/folder-app-open.svg -------------------------------------------------------------------------------- /src/icons/svg/folder-app.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/folder-app.svg -------------------------------------------------------------------------------- /src/icons/svg/folder-archive-open.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/folder-archive-open.svg -------------------------------------------------------------------------------- /src/icons/svg/folder-archive.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/folder-archive.svg -------------------------------------------------------------------------------- /src/icons/svg/folder-audio-open.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/folder-audio-open.svg -------------------------------------------------------------------------------- /src/icons/svg/folder-audio.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/folder-audio.svg -------------------------------------------------------------------------------- /src/icons/svg/folder-aurelia-open.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/folder-aurelia-open.svg -------------------------------------------------------------------------------- /src/icons/svg/folder-aurelia.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/folder-aurelia.svg -------------------------------------------------------------------------------- /src/icons/svg/folder-aws-open.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/folder-aws-open.svg -------------------------------------------------------------------------------- /src/icons/svg/folder-aws.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/folder-aws.svg -------------------------------------------------------------------------------- /src/icons/svg/folder-base-open.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/folder-base-open.svg -------------------------------------------------------------------------------- /src/icons/svg/folder-base.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/folder-base.svg -------------------------------------------------------------------------------- /src/icons/svg/folder-batch-open.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/folder-batch-open.svg -------------------------------------------------------------------------------- /src/icons/svg/folder-batch.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/folder-batch.svg -------------------------------------------------------------------------------- /src/icons/svg/folder-benchmark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/folder-benchmark.svg -------------------------------------------------------------------------------- /src/icons/svg/folder-bower-open.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/folder-bower-open.svg -------------------------------------------------------------------------------- /src/icons/svg/folder-bower.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/folder-bower.svg -------------------------------------------------------------------------------- /src/icons/svg/folder-buildkite.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/folder-buildkite.svg -------------------------------------------------------------------------------- /src/icons/svg/folder-cart-open.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/folder-cart-open.svg -------------------------------------------------------------------------------- /src/icons/svg/folder-cart.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/folder-cart.svg -------------------------------------------------------------------------------- /src/icons/svg/folder-changesets.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/folder-changesets.svg -------------------------------------------------------------------------------- /src/icons/svg/folder-ci-open.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/folder-ci-open.svg -------------------------------------------------------------------------------- /src/icons/svg/folder-ci.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/folder-ci.svg -------------------------------------------------------------------------------- /src/icons/svg/folder-circleci.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/folder-circleci.svg -------------------------------------------------------------------------------- /src/icons/svg/folder-class-open.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/folder-class-open.svg -------------------------------------------------------------------------------- /src/icons/svg/folder-class.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/folder-class.svg -------------------------------------------------------------------------------- /src/icons/svg/folder-client-open.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/folder-client-open.svg -------------------------------------------------------------------------------- /src/icons/svg/folder-client.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/folder-client.svg -------------------------------------------------------------------------------- /src/icons/svg/folder-cluster-open.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/folder-cluster-open.svg -------------------------------------------------------------------------------- /src/icons/svg/folder-cluster.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/folder-cluster.svg -------------------------------------------------------------------------------- /src/icons/svg/folder-cobol-open.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/folder-cobol-open.svg -------------------------------------------------------------------------------- /src/icons/svg/folder-cobol.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/folder-cobol.svg -------------------------------------------------------------------------------- /src/icons/svg/folder-command-open.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/folder-command-open.svg -------------------------------------------------------------------------------- /src/icons/svg/folder-command.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/folder-command.svg -------------------------------------------------------------------------------- /src/icons/svg/folder-components.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/folder-components.svg -------------------------------------------------------------------------------- /src/icons/svg/folder-config-open.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/folder-config-open.svg -------------------------------------------------------------------------------- /src/icons/svg/folder-config.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/folder-config.svg -------------------------------------------------------------------------------- /src/icons/svg/folder-connection.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/folder-connection.svg -------------------------------------------------------------------------------- /src/icons/svg/folder-constant.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/folder-constant.svg -------------------------------------------------------------------------------- /src/icons/svg/folder-container.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/folder-container.svg -------------------------------------------------------------------------------- /src/icons/svg/folder-content-open.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/folder-content-open.svg -------------------------------------------------------------------------------- /src/icons/svg/folder-content.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/folder-content.svg -------------------------------------------------------------------------------- /src/icons/svg/folder-context-open.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/folder-context-open.svg -------------------------------------------------------------------------------- /src/icons/svg/folder-context.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/folder-context.svg -------------------------------------------------------------------------------- /src/icons/svg/folder-contract.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/folder-contract.svg -------------------------------------------------------------------------------- /src/icons/svg/folder-controller.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/folder-controller.svg -------------------------------------------------------------------------------- /src/icons/svg/folder-core-open.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/folder-core-open.svg -------------------------------------------------------------------------------- /src/icons/svg/folder-core.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/folder-core.svg -------------------------------------------------------------------------------- /src/icons/svg/folder-coverage.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/folder-coverage.svg -------------------------------------------------------------------------------- /src/icons/svg/folder-css-open.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/folder-css-open.svg -------------------------------------------------------------------------------- /src/icons/svg/folder-css.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/folder-css.svg -------------------------------------------------------------------------------- /src/icons/svg/folder-custom-open.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/folder-custom-open.svg -------------------------------------------------------------------------------- /src/icons/svg/folder-custom.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/folder-custom.svg -------------------------------------------------------------------------------- /src/icons/svg/folder-cypress-open.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/folder-cypress-open.svg -------------------------------------------------------------------------------- /src/icons/svg/folder-cypress.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/folder-cypress.svg -------------------------------------------------------------------------------- /src/icons/svg/folder-database.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/folder-database.svg -------------------------------------------------------------------------------- /src/icons/svg/folder-debug-open.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/folder-debug-open.svg -------------------------------------------------------------------------------- /src/icons/svg/folder-debug.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/folder-debug.svg -------------------------------------------------------------------------------- /src/icons/svg/folder-decorators.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/folder-decorators.svg -------------------------------------------------------------------------------- /src/icons/svg/folder-delta-open.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/folder-delta-open.svg -------------------------------------------------------------------------------- /src/icons/svg/folder-delta.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/folder-delta.svg -------------------------------------------------------------------------------- /src/icons/svg/folder-dist-open.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/folder-dist-open.svg -------------------------------------------------------------------------------- /src/icons/svg/folder-dist.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/folder-dist.svg -------------------------------------------------------------------------------- /src/icons/svg/folder-docker-open.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/folder-docker-open.svg -------------------------------------------------------------------------------- /src/icons/svg/folder-docker.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/folder-docker.svg -------------------------------------------------------------------------------- /src/icons/svg/folder-docs-open.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/folder-docs-open.svg -------------------------------------------------------------------------------- /src/icons/svg/folder-docs.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/folder-docs.svg -------------------------------------------------------------------------------- /src/icons/svg/folder-download.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/folder-download.svg -------------------------------------------------------------------------------- /src/icons/svg/folder-dump-open.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/folder-dump-open.svg -------------------------------------------------------------------------------- /src/icons/svg/folder-dump.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/folder-dump.svg -------------------------------------------------------------------------------- /src/icons/svg/folder-environment.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/folder-environment.svg -------------------------------------------------------------------------------- /src/icons/svg/folder-error-open.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/folder-error-open.svg -------------------------------------------------------------------------------- /src/icons/svg/folder-error.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/folder-error.svg -------------------------------------------------------------------------------- /src/icons/svg/folder-event-open.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/folder-event-open.svg -------------------------------------------------------------------------------- /src/icons/svg/folder-event.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/folder-event.svg -------------------------------------------------------------------------------- /src/icons/svg/folder-examples.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/folder-examples.svg -------------------------------------------------------------------------------- /src/icons/svg/folder-expo-open.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/folder-expo-open.svg -------------------------------------------------------------------------------- /src/icons/svg/folder-expo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/folder-expo.svg -------------------------------------------------------------------------------- /src/icons/svg/folder-export-open.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/folder-export-open.svg -------------------------------------------------------------------------------- /src/icons/svg/folder-export.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/folder-export.svg -------------------------------------------------------------------------------- /src/icons/svg/folder-fastlane.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/folder-fastlane.svg -------------------------------------------------------------------------------- /src/icons/svg/folder-firebase.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/folder-firebase.svg -------------------------------------------------------------------------------- /src/icons/svg/folder-flow-open.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/folder-flow-open.svg -------------------------------------------------------------------------------- /src/icons/svg/folder-flow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/folder-flow.svg -------------------------------------------------------------------------------- /src/icons/svg/folder-font-open.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/folder-font-open.svg -------------------------------------------------------------------------------- /src/icons/svg/folder-font.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/folder-font.svg -------------------------------------------------------------------------------- /src/icons/svg/folder-functions.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/folder-functions.svg -------------------------------------------------------------------------------- /src/icons/svg/folder-gamemaker.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/folder-gamemaker.svg -------------------------------------------------------------------------------- /src/icons/svg/folder-generator.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/folder-generator.svg -------------------------------------------------------------------------------- /src/icons/svg/folder-git-open.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/folder-git-open.svg -------------------------------------------------------------------------------- /src/icons/svg/folder-git.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/folder-git.svg -------------------------------------------------------------------------------- /src/icons/svg/folder-github-open.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/folder-github-open.svg -------------------------------------------------------------------------------- /src/icons/svg/folder-github.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/folder-github.svg -------------------------------------------------------------------------------- /src/icons/svg/folder-gitlab-open.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/folder-gitlab-open.svg -------------------------------------------------------------------------------- /src/icons/svg/folder-gitlab.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/folder-gitlab.svg -------------------------------------------------------------------------------- /src/icons/svg/folder-global.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/folder-global.svg -------------------------------------------------------------------------------- /src/icons/svg/folder-gradle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/folder-gradle.svg -------------------------------------------------------------------------------- /src/icons/svg/folder-graphql.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/folder-graphql.svg -------------------------------------------------------------------------------- /src/icons/svg/folder-guard.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/folder-guard.svg -------------------------------------------------------------------------------- /src/icons/svg/folder-gulp-open.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/folder-gulp-open.svg -------------------------------------------------------------------------------- /src/icons/svg/folder-gulp.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/folder-gulp.svg -------------------------------------------------------------------------------- /src/icons/svg/folder-helper.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/folder-helper.svg -------------------------------------------------------------------------------- /src/icons/svg/folder-home-open.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/folder-home-open.svg -------------------------------------------------------------------------------- /src/icons/svg/folder-home.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/folder-home.svg -------------------------------------------------------------------------------- /src/icons/svg/folder-hook-open.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/folder-hook-open.svg -------------------------------------------------------------------------------- /src/icons/svg/folder-hook.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/folder-hook.svg -------------------------------------------------------------------------------- /src/icons/svg/folder-husky.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/folder-husky.svg -------------------------------------------------------------------------------- /src/icons/svg/folder-i18n-open.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/folder-i18n-open.svg -------------------------------------------------------------------------------- /src/icons/svg/folder-i18n.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/folder-i18n.svg -------------------------------------------------------------------------------- /src/icons/svg/folder-images.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/folder-images.svg -------------------------------------------------------------------------------- /src/icons/svg/folder-import.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/folder-import.svg -------------------------------------------------------------------------------- /src/icons/svg/folder-include.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/folder-include.svg -------------------------------------------------------------------------------- /src/icons/svg/folder-intellij.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/folder-intellij.svg -------------------------------------------------------------------------------- /src/icons/svg/folder-interface.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/folder-interface.svg -------------------------------------------------------------------------------- /src/icons/svg/folder-ios-open.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/folder-ios-open.svg -------------------------------------------------------------------------------- /src/icons/svg/folder-ios.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/folder-ios.svg -------------------------------------------------------------------------------- /src/icons/svg/folder-java-open.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/folder-java-open.svg -------------------------------------------------------------------------------- /src/icons/svg/folder-java.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/folder-java.svg -------------------------------------------------------------------------------- /src/icons/svg/folder-jinja.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/folder-jinja.svg -------------------------------------------------------------------------------- /src/icons/svg/folder-job-open.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/folder-job-open.svg -------------------------------------------------------------------------------- /src/icons/svg/folder-job.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/folder-job.svg -------------------------------------------------------------------------------- /src/icons/svg/folder-json-open.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/folder-json-open.svg -------------------------------------------------------------------------------- /src/icons/svg/folder-json.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/folder-json.svg -------------------------------------------------------------------------------- /src/icons/svg/folder-keys-open.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/folder-keys-open.svg -------------------------------------------------------------------------------- /src/icons/svg/folder-keys.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/folder-keys.svg -------------------------------------------------------------------------------- /src/icons/svg/folder-layout.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/folder-layout.svg -------------------------------------------------------------------------------- /src/icons/svg/folder-less-open.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/folder-less-open.svg -------------------------------------------------------------------------------- /src/icons/svg/folder-less.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/folder-less.svg -------------------------------------------------------------------------------- /src/icons/svg/folder-lib-open.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/folder-lib-open.svg -------------------------------------------------------------------------------- /src/icons/svg/folder-lib.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/folder-lib.svg -------------------------------------------------------------------------------- /src/icons/svg/folder-link.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/folder-link.svg -------------------------------------------------------------------------------- /src/icons/svg/folder-log-open.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/folder-log-open.svg -------------------------------------------------------------------------------- /src/icons/svg/folder-log.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/folder-log.svg -------------------------------------------------------------------------------- /src/icons/svg/folder-lua-open.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/folder-lua-open.svg -------------------------------------------------------------------------------- /src/icons/svg/folder-lua.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/folder-lua.svg -------------------------------------------------------------------------------- /src/icons/svg/folder-mail-open.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/folder-mail-open.svg -------------------------------------------------------------------------------- /src/icons/svg/folder-mail.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/folder-mail.svg -------------------------------------------------------------------------------- /src/icons/svg/folder-mappings.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/folder-mappings.svg -------------------------------------------------------------------------------- /src/icons/svg/folder-markdown.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/folder-markdown.svg -------------------------------------------------------------------------------- /src/icons/svg/folder-messages.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/folder-messages.svg -------------------------------------------------------------------------------- /src/icons/svg/folder-meta-open.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/folder-meta-open.svg -------------------------------------------------------------------------------- /src/icons/svg/folder-meta.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/folder-meta.svg -------------------------------------------------------------------------------- /src/icons/svg/folder-mjml-open.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/folder-mjml-open.svg -------------------------------------------------------------------------------- /src/icons/svg/folder-mjml.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/folder-mjml.svg -------------------------------------------------------------------------------- /src/icons/svg/folder-mobile.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/folder-mobile.svg -------------------------------------------------------------------------------- /src/icons/svg/folder-mock-open.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/folder-mock-open.svg -------------------------------------------------------------------------------- /src/icons/svg/folder-mock.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/folder-mock.svg -------------------------------------------------------------------------------- /src/icons/svg/folder-netlify.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/folder-netlify.svg -------------------------------------------------------------------------------- /src/icons/svg/folder-next-open.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/folder-next-open.svg -------------------------------------------------------------------------------- /src/icons/svg/folder-next.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/folder-next.svg -------------------------------------------------------------------------------- /src/icons/svg/folder-node-open.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/folder-node-open.svg -------------------------------------------------------------------------------- /src/icons/svg/folder-node.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/folder-node.svg -------------------------------------------------------------------------------- /src/icons/svg/folder-nuxt-open.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/folder-nuxt-open.svg -------------------------------------------------------------------------------- /src/icons/svg/folder-nuxt.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/folder-nuxt.svg -------------------------------------------------------------------------------- /src/icons/svg/folder-open.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/folder-open.svg -------------------------------------------------------------------------------- /src/icons/svg/folder-other.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/folder-other.svg -------------------------------------------------------------------------------- /src/icons/svg/folder-packages.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/folder-packages.svg -------------------------------------------------------------------------------- /src/icons/svg/folder-pdf-open.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/folder-pdf-open.svg -------------------------------------------------------------------------------- /src/icons/svg/folder-pdf.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/folder-pdf.svg -------------------------------------------------------------------------------- /src/icons/svg/folder-php-open.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/folder-php-open.svg -------------------------------------------------------------------------------- /src/icons/svg/folder-php.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/folder-php.svg -------------------------------------------------------------------------------- /src/icons/svg/folder-phpmailer.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/folder-phpmailer.svg -------------------------------------------------------------------------------- /src/icons/svg/folder-pipe-open.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/folder-pipe-open.svg -------------------------------------------------------------------------------- /src/icons/svg/folder-pipe.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/folder-pipe.svg -------------------------------------------------------------------------------- /src/icons/svg/folder-plugin.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/folder-plugin.svg -------------------------------------------------------------------------------- /src/icons/svg/folder-prisma.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/folder-prisma.svg -------------------------------------------------------------------------------- /src/icons/svg/folder-private.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/folder-private.svg -------------------------------------------------------------------------------- /src/icons/svg/folder-project.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/folder-project.svg -------------------------------------------------------------------------------- /src/icons/svg/folder-proto.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/folder-proto.svg -------------------------------------------------------------------------------- /src/icons/svg/folder-public.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/folder-public.svg -------------------------------------------------------------------------------- /src/icons/svg/folder-python.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/folder-python.svg -------------------------------------------------------------------------------- /src/icons/svg/folder-quasar.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/folder-quasar.svg -------------------------------------------------------------------------------- /src/icons/svg/folder-queue.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/folder-queue.svg -------------------------------------------------------------------------------- /src/icons/svg/folder-resolver.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/folder-resolver.svg -------------------------------------------------------------------------------- /src/icons/svg/folder-resource.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/folder-resource.svg -------------------------------------------------------------------------------- /src/icons/svg/folder-review.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/folder-review.svg -------------------------------------------------------------------------------- /src/icons/svg/folder-routes.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/folder-routes.svg -------------------------------------------------------------------------------- /src/icons/svg/folder-rules.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/folder-rules.svg -------------------------------------------------------------------------------- /src/icons/svg/folder-sass-open.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/folder-sass-open.svg -------------------------------------------------------------------------------- /src/icons/svg/folder-sass.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/folder-sass.svg -------------------------------------------------------------------------------- /src/icons/svg/folder-scala.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/folder-scala.svg -------------------------------------------------------------------------------- /src/icons/svg/folder-scripts.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/folder-scripts.svg -------------------------------------------------------------------------------- /src/icons/svg/folder-secure.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/folder-secure.svg -------------------------------------------------------------------------------- /src/icons/svg/folder-server.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/folder-server.svg -------------------------------------------------------------------------------- /src/icons/svg/folder-sftp-open.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/folder-sftp-open.svg -------------------------------------------------------------------------------- /src/icons/svg/folder-shader.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/folder-shader.svg -------------------------------------------------------------------------------- /src/icons/svg/folder-shared.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/folder-shared.svg -------------------------------------------------------------------------------- /src/icons/svg/folder-src-open.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/folder-src-open.svg -------------------------------------------------------------------------------- /src/icons/svg/folder-src.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/folder-src.svg -------------------------------------------------------------------------------- /src/icons/svg/folder-stack.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/folder-stack.svg -------------------------------------------------------------------------------- /src/icons/svg/folder-stencil.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/folder-stencil.svg -------------------------------------------------------------------------------- /src/icons/svg/folder-storybook.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/folder-storybook.svg -------------------------------------------------------------------------------- /src/icons/svg/folder-stylus.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/folder-stylus.svg -------------------------------------------------------------------------------- /src/icons/svg/folder-sublime.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/folder-sublime.svg -------------------------------------------------------------------------------- /src/icons/svg/folder-supabase.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/folder-supabase.svg -------------------------------------------------------------------------------- /src/icons/svg/folder-svelte.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/folder-svelte.svg -------------------------------------------------------------------------------- /src/icons/svg/folder-syntax.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/folder-syntax.svg -------------------------------------------------------------------------------- /src/icons/svg/folder-target.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/folder-target.svg -------------------------------------------------------------------------------- /src/icons/svg/folder-tasks.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/folder-tasks.svg -------------------------------------------------------------------------------- /src/icons/svg/folder-temp-open.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/folder-temp-open.svg -------------------------------------------------------------------------------- /src/icons/svg/folder-temp.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/folder-temp.svg -------------------------------------------------------------------------------- /src/icons/svg/folder-template.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/folder-template.svg -------------------------------------------------------------------------------- /src/icons/svg/folder-terraform.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/folder-terraform.svg -------------------------------------------------------------------------------- /src/icons/svg/folder-test-open.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/folder-test-open.svg -------------------------------------------------------------------------------- /src/icons/svg/folder-test.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/folder-test.svg -------------------------------------------------------------------------------- /src/icons/svg/folder-theme.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/folder-theme.svg -------------------------------------------------------------------------------- /src/icons/svg/folder-tools.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/folder-tools.svg -------------------------------------------------------------------------------- /src/icons/svg/folder-unity.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/folder-unity.svg -------------------------------------------------------------------------------- /src/icons/svg/folder-update.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/folder-update.svg -------------------------------------------------------------------------------- /src/icons/svg/folder-upload.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/folder-upload.svg -------------------------------------------------------------------------------- /src/icons/svg/folder-utils.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/folder-utils.svg -------------------------------------------------------------------------------- /src/icons/svg/folder-vercel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/folder-vercel.svg -------------------------------------------------------------------------------- /src/icons/svg/folder-verdaccio.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/folder-verdaccio.svg -------------------------------------------------------------------------------- /src/icons/svg/folder-video.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/folder-video.svg -------------------------------------------------------------------------------- /src/icons/svg/folder-views.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/folder-views.svg -------------------------------------------------------------------------------- /src/icons/svg/folder-vm-open.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/folder-vm-open.svg -------------------------------------------------------------------------------- /src/icons/svg/folder-vm.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/folder-vm.svg -------------------------------------------------------------------------------- /src/icons/svg/folder-vscode.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/folder-vscode.svg -------------------------------------------------------------------------------- /src/icons/svg/folder-vue-open.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/folder-vue-open.svg -------------------------------------------------------------------------------- /src/icons/svg/folder-vue.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/folder-vue.svg -------------------------------------------------------------------------------- /src/icons/svg/folder-vuepress.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/folder-vuepress.svg -------------------------------------------------------------------------------- /src/icons/svg/folder-wakatime.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/folder-wakatime.svg -------------------------------------------------------------------------------- /src/icons/svg/folder-webpack.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/folder-webpack.svg -------------------------------------------------------------------------------- /src/icons/svg/folder-wordpress.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/folder-wordpress.svg -------------------------------------------------------------------------------- /src/icons/svg/folder-yarn-open.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/folder-yarn-open.svg -------------------------------------------------------------------------------- /src/icons/svg/folder-yarn.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/folder-yarn.svg -------------------------------------------------------------------------------- /src/icons/svg/folder.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/folder.svg -------------------------------------------------------------------------------- /src/icons/svg/font.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/font.svg -------------------------------------------------------------------------------- /src/icons/svg/forth.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/forth.svg -------------------------------------------------------------------------------- /src/icons/svg/fortran.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/fortran.svg -------------------------------------------------------------------------------- /src/icons/svg/foxpro.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/foxpro.svg -------------------------------------------------------------------------------- /src/icons/svg/fsharp.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/fsharp.svg -------------------------------------------------------------------------------- /src/icons/svg/ftp.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/ftp.svg -------------------------------------------------------------------------------- /src/icons/svg/fusebox.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/fusebox.svg -------------------------------------------------------------------------------- /src/icons/svg/gamemaker.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/gamemaker.svg -------------------------------------------------------------------------------- /src/icons/svg/gatsby.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/gatsby.svg -------------------------------------------------------------------------------- /src/icons/svg/gcp.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/gcp.svg -------------------------------------------------------------------------------- /src/icons/svg/gemfile.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/gemfile.svg -------------------------------------------------------------------------------- /src/icons/svg/gemini.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/gemini.svg -------------------------------------------------------------------------------- /src/icons/svg/git-bash.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/git-bash.svg -------------------------------------------------------------------------------- /src/icons/svg/git.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/git.svg -------------------------------------------------------------------------------- /src/icons/svg/gitee.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/gitee.svg -------------------------------------------------------------------------------- /src/icons/svg/github.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/github.svg -------------------------------------------------------------------------------- /src/icons/svg/gitlab.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/gitlab.svg -------------------------------------------------------------------------------- /src/icons/svg/gitpod.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/gitpod.svg -------------------------------------------------------------------------------- /src/icons/svg/gleam.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/gleam.svg -------------------------------------------------------------------------------- /src/icons/svg/go-mod.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/go-mod.svg -------------------------------------------------------------------------------- /src/icons/svg/go.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/go.svg -------------------------------------------------------------------------------- /src/icons/svg/go_gopher.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/go_gopher.svg -------------------------------------------------------------------------------- /src/icons/svg/godot-assets.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/godot-assets.svg -------------------------------------------------------------------------------- /src/icons/svg/godot.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/godot.svg -------------------------------------------------------------------------------- /src/icons/svg/gradle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/gradle.svg -------------------------------------------------------------------------------- /src/icons/svg/grain.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/grain.svg -------------------------------------------------------------------------------- /src/icons/svg/graphcool.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/graphcool.svg -------------------------------------------------------------------------------- /src/icons/svg/graphql.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/graphql.svg -------------------------------------------------------------------------------- /src/icons/svg/gridsome.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/gridsome.svg -------------------------------------------------------------------------------- /src/icons/svg/groovy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/groovy.svg -------------------------------------------------------------------------------- /src/icons/svg/grunt.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/grunt.svg -------------------------------------------------------------------------------- /src/icons/svg/gulp.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/gulp.svg -------------------------------------------------------------------------------- /src/icons/svg/h.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/h.svg -------------------------------------------------------------------------------- /src/icons/svg/hack.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/hack.svg -------------------------------------------------------------------------------- /src/icons/svg/haml.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/haml.svg -------------------------------------------------------------------------------- /src/icons/svg/handlebars.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/handlebars.svg -------------------------------------------------------------------------------- /src/icons/svg/hardhat.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/hardhat.svg -------------------------------------------------------------------------------- /src/icons/svg/haskell.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/haskell.svg -------------------------------------------------------------------------------- /src/icons/svg/haxe.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/haxe.svg -------------------------------------------------------------------------------- /src/icons/svg/hcl.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/hcl.svg -------------------------------------------------------------------------------- /src/icons/svg/hcl_light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/hcl_light.svg -------------------------------------------------------------------------------- /src/icons/svg/helm.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/helm.svg -------------------------------------------------------------------------------- /src/icons/svg/heroku.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/heroku.svg -------------------------------------------------------------------------------- /src/icons/svg/hex.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/hex.svg -------------------------------------------------------------------------------- /src/icons/svg/horusec.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/horusec.svg -------------------------------------------------------------------------------- /src/icons/svg/host.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/host.svg -------------------------------------------------------------------------------- /src/icons/svg/hpp.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/hpp.svg -------------------------------------------------------------------------------- /src/icons/svg/html.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/html.svg -------------------------------------------------------------------------------- /src/icons/svg/http.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/http.svg -------------------------------------------------------------------------------- /src/icons/svg/husky.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/husky.svg -------------------------------------------------------------------------------- /src/icons/svg/i18n.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/i18n.svg -------------------------------------------------------------------------------- /src/icons/svg/idris.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/idris.svg -------------------------------------------------------------------------------- /src/icons/svg/image.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/image.svg -------------------------------------------------------------------------------- /src/icons/svg/imba.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/imba.svg -------------------------------------------------------------------------------- /src/icons/svg/ionic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/ionic.svg -------------------------------------------------------------------------------- /src/icons/svg/istanbul.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/istanbul.svg -------------------------------------------------------------------------------- /src/icons/svg/jar.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/jar.svg -------------------------------------------------------------------------------- /src/icons/svg/java.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/java.svg -------------------------------------------------------------------------------- /src/icons/svg/javaclass.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/javaclass.svg -------------------------------------------------------------------------------- /src/icons/svg/javascript-map.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/javascript-map.svg -------------------------------------------------------------------------------- /src/icons/svg/javascript.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/javascript.svg -------------------------------------------------------------------------------- /src/icons/svg/jenkins.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/jenkins.svg -------------------------------------------------------------------------------- /src/icons/svg/jest.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/jest.svg -------------------------------------------------------------------------------- /src/icons/svg/jinja.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/jinja.svg -------------------------------------------------------------------------------- /src/icons/svg/jinja_light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/jinja_light.svg -------------------------------------------------------------------------------- /src/icons/svg/jsconfig.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/jsconfig.svg -------------------------------------------------------------------------------- /src/icons/svg/json.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/json.svg -------------------------------------------------------------------------------- /src/icons/svg/julia.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/julia.svg -------------------------------------------------------------------------------- /src/icons/svg/jupyter.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/jupyter.svg -------------------------------------------------------------------------------- /src/icons/svg/kali.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/kali.svg -------------------------------------------------------------------------------- /src/icons/svg/karma.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/karma.svg -------------------------------------------------------------------------------- /src/icons/svg/key.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/key.svg -------------------------------------------------------------------------------- /src/icons/svg/kivy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/kivy.svg -------------------------------------------------------------------------------- /src/icons/svg/kl.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/kl.svg -------------------------------------------------------------------------------- /src/icons/svg/kotlin.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/kotlin.svg -------------------------------------------------------------------------------- /src/icons/svg/kusto.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/kusto.svg -------------------------------------------------------------------------------- /src/icons/svg/language-es.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/language-es.svg -------------------------------------------------------------------------------- /src/icons/svg/language-zh.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/language-zh.svg -------------------------------------------------------------------------------- /src/icons/svg/laravel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/laravel.svg -------------------------------------------------------------------------------- /src/icons/svg/layout-alone.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/layout-alone.svg -------------------------------------------------------------------------------- /src/icons/svg/layout-col.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/layout-col.svg -------------------------------------------------------------------------------- /src/icons/svg/layout-lattice.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/layout-lattice.svg -------------------------------------------------------------------------------- /src/icons/svg/layout-row.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/layout-row.svg -------------------------------------------------------------------------------- /src/icons/svg/lerna.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/lerna.svg -------------------------------------------------------------------------------- /src/icons/svg/less.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/less.svg -------------------------------------------------------------------------------- /src/icons/svg/lib.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/lib.svg -------------------------------------------------------------------------------- /src/icons/svg/lighthouse.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/lighthouse.svg -------------------------------------------------------------------------------- /src/icons/svg/lilypond.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/lilypond.svg -------------------------------------------------------------------------------- /src/icons/svg/linux.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/linux.svg -------------------------------------------------------------------------------- /src/icons/svg/liquid.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/liquid.svg -------------------------------------------------------------------------------- /src/icons/svg/lisp.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/lisp.svg -------------------------------------------------------------------------------- /src/icons/svg/livescript.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/livescript.svg -------------------------------------------------------------------------------- /src/icons/svg/lock.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/lock.svg -------------------------------------------------------------------------------- /src/icons/svg/log.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/log.svg -------------------------------------------------------------------------------- /src/icons/svg/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/logo.svg -------------------------------------------------------------------------------- /src/icons/svg/lolcode.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/lolcode.svg -------------------------------------------------------------------------------- /src/icons/svg/lua.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/lua.svg -------------------------------------------------------------------------------- /src/icons/svg/makefile.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/makefile.svg -------------------------------------------------------------------------------- /src/icons/svg/markdown.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/markdown.svg -------------------------------------------------------------------------------- /src/icons/svg/markojs.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/markojs.svg -------------------------------------------------------------------------------- /src/icons/svg/mathematica.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/mathematica.svg -------------------------------------------------------------------------------- /src/icons/svg/matlab.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/matlab.svg -------------------------------------------------------------------------------- /src/icons/svg/maven.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/maven.svg -------------------------------------------------------------------------------- /src/icons/svg/mdsvex.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/mdsvex.svg -------------------------------------------------------------------------------- /src/icons/svg/mdx.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/mdx.svg -------------------------------------------------------------------------------- /src/icons/svg/merlin.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/merlin.svg -------------------------------------------------------------------------------- /src/icons/svg/meson.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/meson.svg -------------------------------------------------------------------------------- /src/icons/svg/minecraft.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/minecraft.svg -------------------------------------------------------------------------------- /src/icons/svg/mint.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/mint.svg -------------------------------------------------------------------------------- /src/icons/svg/mjml.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/mjml.svg -------------------------------------------------------------------------------- /src/icons/svg/mocha.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/mocha.svg -------------------------------------------------------------------------------- /src/icons/svg/modernizr.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/modernizr.svg -------------------------------------------------------------------------------- /src/icons/svg/moonscript.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/moonscript.svg -------------------------------------------------------------------------------- /src/icons/svg/msys2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/msys2.svg -------------------------------------------------------------------------------- /src/icons/svg/mxml.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/mxml.svg -------------------------------------------------------------------------------- /src/icons/svg/n-setting.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/n-setting.svg -------------------------------------------------------------------------------- /src/icons/svg/nano-staged.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/nano-staged.svg -------------------------------------------------------------------------------- /src/icons/svg/ndst.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/ndst.svg -------------------------------------------------------------------------------- /src/icons/svg/nest-controller.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/nest-controller.svg -------------------------------------------------------------------------------- /src/icons/svg/nest-decorator.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/nest-decorator.svg -------------------------------------------------------------------------------- /src/icons/svg/nest-filter.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/nest-filter.svg -------------------------------------------------------------------------------- /src/icons/svg/nest-gateway.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/nest-gateway.svg -------------------------------------------------------------------------------- /src/icons/svg/nest-guard.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/nest-guard.svg -------------------------------------------------------------------------------- /src/icons/svg/nest-middleware.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/nest-middleware.svg -------------------------------------------------------------------------------- /src/icons/svg/nest-module.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/nest-module.svg -------------------------------------------------------------------------------- /src/icons/svg/nest-pipe.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/nest-pipe.svg -------------------------------------------------------------------------------- /src/icons/svg/nest-resolver.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/nest-resolver.svg -------------------------------------------------------------------------------- /src/icons/svg/nest-service.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/nest-service.svg -------------------------------------------------------------------------------- /src/icons/svg/nest.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/nest.svg -------------------------------------------------------------------------------- /src/icons/svg/netlify.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/netlify.svg -------------------------------------------------------------------------------- /src/icons/svg/next.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/next.svg -------------------------------------------------------------------------------- /src/icons/svg/next_light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/next_light.svg -------------------------------------------------------------------------------- /src/icons/svg/nginx.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/nginx.svg -------------------------------------------------------------------------------- /src/icons/svg/ngrx-actions.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/ngrx-actions.svg -------------------------------------------------------------------------------- /src/icons/svg/ngrx-effects.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/ngrx-effects.svg -------------------------------------------------------------------------------- /src/icons/svg/ngrx-entity.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/ngrx-entity.svg -------------------------------------------------------------------------------- /src/icons/svg/ngrx-reducer.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/ngrx-reducer.svg -------------------------------------------------------------------------------- /src/icons/svg/ngrx-selectors.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/ngrx-selectors.svg -------------------------------------------------------------------------------- /src/icons/svg/ngrx-state.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/ngrx-state.svg -------------------------------------------------------------------------------- /src/icons/svg/nim.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/nim.svg -------------------------------------------------------------------------------- /src/icons/svg/nix.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/nix.svg -------------------------------------------------------------------------------- /src/icons/svg/nodejs.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/nodejs.svg -------------------------------------------------------------------------------- /src/icons/svg/nodejs_alt.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/nodejs_alt.svg -------------------------------------------------------------------------------- /src/icons/svg/nodemon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/nodemon.svg -------------------------------------------------------------------------------- /src/icons/svg/npm.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/npm.svg -------------------------------------------------------------------------------- /src/icons/svg/nrwl.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/nrwl.svg -------------------------------------------------------------------------------- /src/icons/svg/nuget.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/nuget.svg -------------------------------------------------------------------------------- /src/icons/svg/nunjucks.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/nunjucks.svg -------------------------------------------------------------------------------- /src/icons/svg/nuxt.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/nuxt.svg -------------------------------------------------------------------------------- /src/icons/svg/objective-c.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/objective-c.svg -------------------------------------------------------------------------------- /src/icons/svg/objective-cpp.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/objective-cpp.svg -------------------------------------------------------------------------------- /src/icons/svg/ocaml.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/ocaml.svg -------------------------------------------------------------------------------- /src/icons/svg/odin.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/odin.svg -------------------------------------------------------------------------------- /src/icons/svg/official-website.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/official-website.svg -------------------------------------------------------------------------------- /src/icons/svg/opa.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/opa.svg -------------------------------------------------------------------------------- /src/icons/svg/opam.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/opam.svg -------------------------------------------------------------------------------- /src/icons/svg/open-euler.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/open-euler.svg -------------------------------------------------------------------------------- /src/icons/svg/openEuler.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/openEuler.svg -------------------------------------------------------------------------------- /src/icons/svg/oracle-linux.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/oracle-linux.svg -------------------------------------------------------------------------------- /src/icons/svg/oracle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/oracle.svg -------------------------------------------------------------------------------- /src/icons/svg/otne.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/otne.svg -------------------------------------------------------------------------------- /src/icons/svg/parcel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/parcel.svg -------------------------------------------------------------------------------- /src/icons/svg/pascal.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/pascal.svg -------------------------------------------------------------------------------- /src/icons/svg/pawn.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/pawn.svg -------------------------------------------------------------------------------- /src/icons/svg/pdf.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/pdf.svg -------------------------------------------------------------------------------- /src/icons/svg/percy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/percy.svg -------------------------------------------------------------------------------- /src/icons/svg/perl.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/perl.svg -------------------------------------------------------------------------------- /src/icons/svg/php-cs-fixer.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/php-cs-fixer.svg -------------------------------------------------------------------------------- /src/icons/svg/php.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/php.svg -------------------------------------------------------------------------------- /src/icons/svg/php_elephant.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/php_elephant.svg -------------------------------------------------------------------------------- /src/icons/svg/phpunit.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/phpunit.svg -------------------------------------------------------------------------------- /src/icons/svg/pinejs.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/pinejs.svg -------------------------------------------------------------------------------- /src/icons/svg/pipeline.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/pipeline.svg -------------------------------------------------------------------------------- /src/icons/svg/playwright.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/playwright.svg -------------------------------------------------------------------------------- /src/icons/svg/plop.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/plop.svg -------------------------------------------------------------------------------- /src/icons/svg/pnpm.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/pnpm.svg -------------------------------------------------------------------------------- /src/icons/svg/pnpm_light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/pnpm_light.svg -------------------------------------------------------------------------------- /src/icons/svg/poetry.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/poetry.svg -------------------------------------------------------------------------------- /src/icons/svg/postcss.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/postcss.svg -------------------------------------------------------------------------------- /src/icons/svg/posthtml.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/posthtml.svg -------------------------------------------------------------------------------- /src/icons/svg/powerpoint.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/powerpoint.svg -------------------------------------------------------------------------------- /src/icons/svg/powershell-core.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/powershell-core.svg -------------------------------------------------------------------------------- /src/icons/svg/powershell.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/powershell.svg -------------------------------------------------------------------------------- /src/icons/svg/prettier.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/prettier.svg -------------------------------------------------------------------------------- /src/icons/svg/prisma.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/prisma.svg -------------------------------------------------------------------------------- /src/icons/svg/processing.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/processing.svg -------------------------------------------------------------------------------- /src/icons/svg/prolog.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/prolog.svg -------------------------------------------------------------------------------- /src/icons/svg/proto.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/proto.svg -------------------------------------------------------------------------------- /src/icons/svg/protractor.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/protractor.svg -------------------------------------------------------------------------------- /src/icons/svg/pug.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/pug.svg -------------------------------------------------------------------------------- /src/icons/svg/puppet.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/puppet.svg -------------------------------------------------------------------------------- /src/icons/svg/purescript.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/purescript.svg -------------------------------------------------------------------------------- /src/icons/svg/python-misc.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/python-misc.svg -------------------------------------------------------------------------------- /src/icons/svg/python.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/python.svg -------------------------------------------------------------------------------- /src/icons/svg/qsharp.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/qsharp.svg -------------------------------------------------------------------------------- /src/icons/svg/quasar.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/quasar.svg -------------------------------------------------------------------------------- /src/icons/svg/r.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/r.svg -------------------------------------------------------------------------------- /src/icons/svg/racket.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/racket.svg -------------------------------------------------------------------------------- /src/icons/svg/raml.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/raml.svg -------------------------------------------------------------------------------- /src/icons/svg/razor.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/razor.svg -------------------------------------------------------------------------------- /src/icons/svg/react.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/react.svg -------------------------------------------------------------------------------- /src/icons/svg/react_ts.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/react_ts.svg -------------------------------------------------------------------------------- /src/icons/svg/readme.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/readme.svg -------------------------------------------------------------------------------- /src/icons/svg/reason.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/reason.svg -------------------------------------------------------------------------------- /src/icons/svg/red.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/red.svg -------------------------------------------------------------------------------- /src/icons/svg/redhat.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/redhat.svg -------------------------------------------------------------------------------- /src/icons/svg/redux-action.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/redux-action.svg -------------------------------------------------------------------------------- /src/icons/svg/redux-reducer.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/redux-reducer.svg -------------------------------------------------------------------------------- /src/icons/svg/redux-selector.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/redux-selector.svg -------------------------------------------------------------------------------- /src/icons/svg/redux-store.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/redux-store.svg -------------------------------------------------------------------------------- /src/icons/svg/remix.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/remix.svg -------------------------------------------------------------------------------- /src/icons/svg/remix_light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/remix_light.svg -------------------------------------------------------------------------------- /src/icons/svg/renovate.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/renovate.svg -------------------------------------------------------------------------------- /src/icons/svg/replit.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/replit.svg -------------------------------------------------------------------------------- /src/icons/svg/rescript.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/rescript.svg -------------------------------------------------------------------------------- /src/icons/svg/restql.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/restql.svg -------------------------------------------------------------------------------- /src/icons/svg/riot.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/riot.svg -------------------------------------------------------------------------------- /src/icons/svg/roadmap.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/roadmap.svg -------------------------------------------------------------------------------- /src/icons/svg/robot.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/robot.svg -------------------------------------------------------------------------------- /src/icons/svg/robots.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/robots.svg -------------------------------------------------------------------------------- /src/icons/svg/rollup.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/rollup.svg -------------------------------------------------------------------------------- /src/icons/svg/rome.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/rome.svg -------------------------------------------------------------------------------- /src/icons/svg/routing.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/routing.svg -------------------------------------------------------------------------------- /src/icons/svg/rubocop.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/rubocop.svg -------------------------------------------------------------------------------- /src/icons/svg/rubocop_light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/rubocop_light.svg -------------------------------------------------------------------------------- /src/icons/svg/ruby.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/ruby.svg -------------------------------------------------------------------------------- /src/icons/svg/rust.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/rust.svg -------------------------------------------------------------------------------- /src/icons/svg/s-ftp.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/s-ftp.svg -------------------------------------------------------------------------------- /src/icons/svg/salesforce.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/salesforce.svg -------------------------------------------------------------------------------- /src/icons/svg/san.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/san.svg -------------------------------------------------------------------------------- /src/icons/svg/sas.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/sas.svg -------------------------------------------------------------------------------- /src/icons/svg/sass.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/sass.svg -------------------------------------------------------------------------------- /src/icons/svg/sbt.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/sbt.svg -------------------------------------------------------------------------------- /src/icons/svg/scala.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/scala.svg -------------------------------------------------------------------------------- /src/icons/svg/scheme.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/scheme.svg -------------------------------------------------------------------------------- /src/icons/svg/search.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/search.svg -------------------------------------------------------------------------------- /src/icons/svg/semantic-release.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/semantic-release.svg -------------------------------------------------------------------------------- /src/icons/svg/sentry.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/sentry.svg -------------------------------------------------------------------------------- /src/icons/svg/sequelize.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/sequelize.svg -------------------------------------------------------------------------------- /src/icons/svg/serial.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/serial.svg -------------------------------------------------------------------------------- /src/icons/svg/server.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/server.svg -------------------------------------------------------------------------------- /src/icons/svg/serverless.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/serverless.svg -------------------------------------------------------------------------------- /src/icons/svg/settings.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/settings.svg -------------------------------------------------------------------------------- /src/icons/svg/shader.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/shader.svg -------------------------------------------------------------------------------- /src/icons/svg/shaderlab.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/shaderlab.svg -------------------------------------------------------------------------------- /src/icons/svg/silverstripe.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/silverstripe.svg -------------------------------------------------------------------------------- /src/icons/svg/siyuan.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/siyuan.svg -------------------------------------------------------------------------------- /src/icons/svg/sketch.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/sketch.svg -------------------------------------------------------------------------------- /src/icons/svg/slim.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/slim.svg -------------------------------------------------------------------------------- /src/icons/svg/slug.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/slug.svg -------------------------------------------------------------------------------- /src/icons/svg/smarty.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/smarty.svg -------------------------------------------------------------------------------- /src/icons/svg/sml.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/sml.svg -------------------------------------------------------------------------------- /src/icons/svg/snowpack.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/snowpack.svg -------------------------------------------------------------------------------- /src/icons/svg/snowpack_light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/snowpack_light.svg -------------------------------------------------------------------------------- /src/icons/svg/snyk.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/snyk.svg -------------------------------------------------------------------------------- /src/icons/svg/solidity.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/solidity.svg -------------------------------------------------------------------------------- /src/icons/svg/sonarcloud.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/sonarcloud.svg -------------------------------------------------------------------------------- /src/icons/svg/ssh.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/ssh.svg -------------------------------------------------------------------------------- /src/icons/svg/steadybit.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/steadybit.svg -------------------------------------------------------------------------------- /src/icons/svg/stencil.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/stencil.svg -------------------------------------------------------------------------------- /src/icons/svg/stitches.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/stitches.svg -------------------------------------------------------------------------------- /src/icons/svg/stitches_light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/stitches_light.svg -------------------------------------------------------------------------------- /src/icons/svg/storybook.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/storybook.svg -------------------------------------------------------------------------------- /src/icons/svg/stryker.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/stryker.svg -------------------------------------------------------------------------------- /src/icons/svg/stylable.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/stylable.svg -------------------------------------------------------------------------------- /src/icons/svg/stylelint.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/stylelint.svg -------------------------------------------------------------------------------- /src/icons/svg/stylelint_light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/stylelint_light.svg -------------------------------------------------------------------------------- /src/icons/svg/stylus.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/stylus.svg -------------------------------------------------------------------------------- /src/icons/svg/sublime.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/sublime.svg -------------------------------------------------------------------------------- /src/icons/svg/supabase.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/supabase.svg -------------------------------------------------------------------------------- /src/icons/svg/suse.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/suse.svg -------------------------------------------------------------------------------- /src/icons/svg/svelte.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/svelte.svg -------------------------------------------------------------------------------- /src/icons/svg/svg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/svg.svg -------------------------------------------------------------------------------- /src/icons/svg/svgo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/svgo.svg -------------------------------------------------------------------------------- /src/icons/svg/svgr.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/svgr.svg -------------------------------------------------------------------------------- /src/icons/svg/swc.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/swc.svg -------------------------------------------------------------------------------- /src/icons/svg/swift.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/swift.svg -------------------------------------------------------------------------------- /src/icons/svg/table.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/table.svg -------------------------------------------------------------------------------- /src/icons/svg/tailwindcss.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/tailwindcss.svg -------------------------------------------------------------------------------- /src/icons/svg/tauri.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/tauri.svg -------------------------------------------------------------------------------- /src/icons/svg/tcl.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/tcl.svg -------------------------------------------------------------------------------- /src/icons/svg/teal.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/teal.svg -------------------------------------------------------------------------------- /src/icons/svg/telnet.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/telnet.svg -------------------------------------------------------------------------------- /src/icons/svg/template.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/template.svg -------------------------------------------------------------------------------- /src/icons/svg/terraform.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/terraform.svg -------------------------------------------------------------------------------- /src/icons/svg/test-js.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/test-js.svg -------------------------------------------------------------------------------- /src/icons/svg/test-jsx.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/test-jsx.svg -------------------------------------------------------------------------------- /src/icons/svg/test-ts.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/test-ts.svg -------------------------------------------------------------------------------- /src/icons/svg/tex.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/tex.svg -------------------------------------------------------------------------------- /src/icons/svg/textlint.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/textlint.svg -------------------------------------------------------------------------------- /src/icons/svg/tilt.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/tilt.svg -------------------------------------------------------------------------------- /src/icons/svg/tldraw.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/tldraw.svg -------------------------------------------------------------------------------- /src/icons/svg/tldraw_light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/tldraw_light.svg -------------------------------------------------------------------------------- /src/icons/svg/tobi.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/tobi.svg -------------------------------------------------------------------------------- /src/icons/svg/tobimake.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/tobimake.svg -------------------------------------------------------------------------------- /src/icons/svg/todo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/todo.svg -------------------------------------------------------------------------------- /src/icons/svg/travis.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/travis.svg -------------------------------------------------------------------------------- /src/icons/svg/tree.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/tree.svg -------------------------------------------------------------------------------- /src/icons/svg/tsconfig.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/tsconfig.svg -------------------------------------------------------------------------------- /src/icons/svg/tune.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/tune.svg -------------------------------------------------------------------------------- /src/icons/svg/turborepo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/turborepo.svg -------------------------------------------------------------------------------- /src/icons/svg/turborepo_light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/turborepo_light.svg -------------------------------------------------------------------------------- /src/icons/svg/twig.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/twig.svg -------------------------------------------------------------------------------- /src/icons/svg/twine.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/twine.svg -------------------------------------------------------------------------------- /src/icons/svg/typescript-def.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/typescript-def.svg -------------------------------------------------------------------------------- /src/icons/svg/typescript.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/typescript.svg -------------------------------------------------------------------------------- /src/icons/svg/ubuntu-kylin.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/ubuntu-kylin.svg -------------------------------------------------------------------------------- /src/icons/svg/ubuntu.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/ubuntu.svg -------------------------------------------------------------------------------- /src/icons/svg/uml.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/uml.svg -------------------------------------------------------------------------------- /src/icons/svg/uml_light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/uml_light.svg -------------------------------------------------------------------------------- /src/icons/svg/unknown.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/unknown.svg -------------------------------------------------------------------------------- /src/icons/svg/url.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/url.svg -------------------------------------------------------------------------------- /src/icons/svg/vagrant.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/vagrant.svg -------------------------------------------------------------------------------- /src/icons/svg/vala.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/vala.svg -------------------------------------------------------------------------------- /src/icons/svg/velocity.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/velocity.svg -------------------------------------------------------------------------------- /src/icons/svg/vercel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/vercel.svg -------------------------------------------------------------------------------- /src/icons/svg/vercel_light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/vercel_light.svg -------------------------------------------------------------------------------- /src/icons/svg/verdaccio.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/verdaccio.svg -------------------------------------------------------------------------------- /src/icons/svg/verilog.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/verilog.svg -------------------------------------------------------------------------------- /src/icons/svg/vfl.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/vfl.svg -------------------------------------------------------------------------------- /src/icons/svg/video.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/video.svg -------------------------------------------------------------------------------- /src/icons/svg/vim.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/vim.svg -------------------------------------------------------------------------------- /src/icons/svg/virtual.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/virtual.svg -------------------------------------------------------------------------------- /src/icons/svg/visualstudio.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/visualstudio.svg -------------------------------------------------------------------------------- /src/icons/svg/vite.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/vite.svg -------------------------------------------------------------------------------- /src/icons/svg/vitest.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/vitest.svg -------------------------------------------------------------------------------- /src/icons/svg/vlang.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/vlang.svg -------------------------------------------------------------------------------- /src/icons/svg/vnc.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/vnc.svg -------------------------------------------------------------------------------- /src/icons/svg/vs2017.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/vs2017.svg -------------------------------------------------------------------------------- /src/icons/svg/vs2019.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/vs2019.svg -------------------------------------------------------------------------------- /src/icons/svg/vs2022.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/vs2022.svg -------------------------------------------------------------------------------- /src/icons/svg/vscode.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/vscode.svg -------------------------------------------------------------------------------- /src/icons/svg/vue-config.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/vue-config.svg -------------------------------------------------------------------------------- /src/icons/svg/vue.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/vue.svg -------------------------------------------------------------------------------- /src/icons/svg/vuex-store.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/vuex-store.svg -------------------------------------------------------------------------------- /src/icons/svg/wakatime.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/wakatime.svg -------------------------------------------------------------------------------- /src/icons/svg/wakatime_light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/wakatime_light.svg -------------------------------------------------------------------------------- /src/icons/svg/wallaby.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/wallaby.svg -------------------------------------------------------------------------------- /src/icons/svg/watchman.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/watchman.svg -------------------------------------------------------------------------------- /src/icons/svg/webassembly.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/webassembly.svg -------------------------------------------------------------------------------- /src/icons/svg/webhint.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/webhint.svg -------------------------------------------------------------------------------- /src/icons/svg/webpack.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/webpack.svg -------------------------------------------------------------------------------- /src/icons/svg/wepy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/wepy.svg -------------------------------------------------------------------------------- /src/icons/svg/windicss.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/windicss.svg -------------------------------------------------------------------------------- /src/icons/svg/windows.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/windows.svg -------------------------------------------------------------------------------- /src/icons/svg/wolframlanguage.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/wolframlanguage.svg -------------------------------------------------------------------------------- /src/icons/svg/word.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/word.svg -------------------------------------------------------------------------------- /src/icons/svg/xaml.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/xaml.svg -------------------------------------------------------------------------------- /src/icons/svg/xml.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/xml.svg -------------------------------------------------------------------------------- /src/icons/svg/yaml.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/yaml.svg -------------------------------------------------------------------------------- /src/icons/svg/yang.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/yang.svg -------------------------------------------------------------------------------- /src/icons/svg/yarn.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/yarn.svg -------------------------------------------------------------------------------- /src/icons/svg/zig.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/zig.svg -------------------------------------------------------------------------------- /src/icons/svg/zip.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/svg/zip.svg -------------------------------------------------------------------------------- /src/icons/system-icon.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/icons/system-icon.ts -------------------------------------------------------------------------------- /src/layout/MainLayout.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/layout/MainLayout.vue -------------------------------------------------------------------------------- /src/layout/NxLayout.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/layout/NxLayout.vue -------------------------------------------------------------------------------- /src/layout/components/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/layout/components/index.js -------------------------------------------------------------------------------- /src/locals/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/locals/index.js -------------------------------------------------------------------------------- /src/locals/lang/en-US.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/locals/lang/en-US.json -------------------------------------------------------------------------------- /src/locals/lang/zh-CN.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/locals/lang/zh-CN.json -------------------------------------------------------------------------------- /src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/main.js -------------------------------------------------------------------------------- /src/router/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/router/index.js -------------------------------------------------------------------------------- /src/services/clipboard/systemClipboard.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/services/cloudService/axios.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/services/cloudService/axios.js -------------------------------------------------------------------------------- /src/services/cloudService/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/services/cloudService/index.js -------------------------------------------------------------------------------- /src/services/cloudService/oauth.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/services/cloudService/oauth.js -------------------------------------------------------------------------------- /src/services/editorSession.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/services/editorSession.js -------------------------------------------------------------------------------- /src/services/eventbus.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/services/eventbus.ts -------------------------------------------------------------------------------- /src/services/filesystem/ftp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/services/filesystem/ftp.js -------------------------------------------------------------------------------- /src/services/filesystem/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/services/filesystem/index.js -------------------------------------------------------------------------------- /src/services/filesystem/sftp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/services/filesystem/sftp.js -------------------------------------------------------------------------------- /src/services/filesystem/webdav.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/services/filesystem/webdav.js -------------------------------------------------------------------------------- /src/services/ftpSession.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/services/ftpSession.js -------------------------------------------------------------------------------- /src/services/globalSetting.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/services/globalSetting.ts -------------------------------------------------------------------------------- /src/services/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/services/index.js -------------------------------------------------------------------------------- /src/services/localshellSession.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/services/localshellSession.js -------------------------------------------------------------------------------- /src/services/loginSession.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/services/loginSession.js -------------------------------------------------------------------------------- /src/services/nxsys/dataTransfer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/services/nxsys/dataTransfer.js -------------------------------------------------------------------------------- /src/services/nxsys/localfs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/services/nxsys/localfs.js -------------------------------------------------------------------------------- /src/services/nxsys/logger.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/services/nxsys/logger.js -------------------------------------------------------------------------------- /src/services/nxsys/nodes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/services/nxsys/nodes.js -------------------------------------------------------------------------------- /src/services/nxsys/terminal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/services/nxsys/terminal.js -------------------------------------------------------------------------------- /src/services/profiles/global.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/services/serialportSession.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/services/serialportSession.js -------------------------------------------------------------------------------- /src/services/session.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/services/session.js -------------------------------------------------------------------------------- /src/services/sessionManage/shellConfig.ts: -------------------------------------------------------------------------------- 1 | export type ShellConfig = {} -------------------------------------------------------------------------------- /src/services/sessionMgr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/services/sessionMgr.js -------------------------------------------------------------------------------- /src/services/sessionRecent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/services/sessionRecent.js -------------------------------------------------------------------------------- /src/services/sftpSession.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/services/sftpSession.js -------------------------------------------------------------------------------- /src/services/shellSession.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/services/shellSession.js -------------------------------------------------------------------------------- /src/services/storage/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/services/storage/index.d.ts -------------------------------------------------------------------------------- /src/services/storage/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/services/storage/index.js -------------------------------------------------------------------------------- /src/services/telnetSession.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/services/telnetSession.js -------------------------------------------------------------------------------- /src/services/vncSession.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/services/vncSession.js -------------------------------------------------------------------------------- /src/services/webdavSession.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/services/webdavSession.js -------------------------------------------------------------------------------- /src/services/welcomeSession.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/services/welcomeSession.js -------------------------------------------------------------------------------- /src/store/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/store/index.ts -------------------------------------------------------------------------------- /src/store/modules/app-setting.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/store/modules/app-setting.ts -------------------------------------------------------------------------------- /src/store/modules/nx-menu.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/store/modules/nx-menu.ts -------------------------------------------------------------------------------- /src/store/modules/nx-tabs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/store/modules/nx-tabs.ts -------------------------------------------------------------------------------- /src/store/modules/session.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/store/modules/session.ts -------------------------------------------------------------------------------- /src/store/modules/user.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/store/modules/user.ts -------------------------------------------------------------------------------- /src/views/Lock.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/views/Lock.vue -------------------------------------------------------------------------------- /src/views/Login.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/views/Login.vue -------------------------------------------------------------------------------- /src/views/Welcome.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/views/Welcome.vue -------------------------------------------------------------------------------- /src/views/components/auth/auth.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/views/components/auth/auth.vue -------------------------------------------------------------------------------- /src/views/components/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/views/components/index.js -------------------------------------------------------------------------------- /src/views/editor/editorview.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/views/editor/editorview.vue -------------------------------------------------------------------------------- /src/views/editor/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/views/editor/index.vue -------------------------------------------------------------------------------- /src/views/editor/themes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/views/editor/themes.js -------------------------------------------------------------------------------- /src/views/session/index.vue: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/views/settings/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/views/settings/index.vue -------------------------------------------------------------------------------- /src/views/sftp/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/views/sftp/index.vue -------------------------------------------------------------------------------- /src/views/sftp/sftpview.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/views/sftp/sftpview.vue -------------------------------------------------------------------------------- /src/views/vnc/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/views/vnc/index.vue -------------------------------------------------------------------------------- /src/views/vnc/vncview.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/views/vnc/vncview.vue -------------------------------------------------------------------------------- /src/views/xterm/iconv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/views/xterm/iconv.js -------------------------------------------------------------------------------- /src/views/xterm/profile.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/views/xterm/profile.vue -------------------------------------------------------------------------------- /src/views/xterm/xtermInstance.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/views/xterm/xtermInstance.vue -------------------------------------------------------------------------------- /src/views/xterm/xtermPreview.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/views/xterm/xtermPreview.vue -------------------------------------------------------------------------------- /src/views/xterm/xtermSession.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/views/xterm/xtermSession.vue -------------------------------------------------------------------------------- /src/views/xterm/xtermTheme.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/views/xterm/xtermTheme.js -------------------------------------------------------------------------------- /src/views/xterm/xzmodem.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/src/views/xterm/xzmodem.js -------------------------------------------------------------------------------- /svgo.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/svgo.config.js -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/tsconfig.json -------------------------------------------------------------------------------- /vue.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/vue.config.js -------------------------------------------------------------------------------- /webpack.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxshell/shell/HEAD/webpack.conf.js --------------------------------------------------------------------------------