├── .dockerignore ├── .env ├── .env.production ├── .env.staging ├── .github └── workflows │ ├── on-push.yml │ └── on-tag.yml ├── .gitignore ├── CONTRIBUTING.md ├── Dockerfile ├── Dockerfile.dev ├── LICENSE.md ├── README.md ├── babel.config.js ├── package.json ├── public ├── favicon.ico ├── favicon.png ├── fonts │ ├── Inter-Black.woff │ ├── Inter-Black.woff2 │ ├── Inter-BlackItalic.woff │ ├── Inter-BlackItalic.woff2 │ ├── Inter-Bold.woff │ ├── Inter-Bold.woff2 │ ├── Inter-BoldItalic.woff │ ├── Inter-BoldItalic.woff2 │ ├── Inter-ExtraBold.woff │ ├── Inter-ExtraBold.woff2 │ ├── Inter-ExtraBoldItalic.woff │ ├── Inter-ExtraBoldItalic.woff2 │ ├── Inter-ExtraLight.woff │ ├── Inter-ExtraLight.woff2 │ ├── Inter-ExtraLightItalic.woff │ ├── Inter-ExtraLightItalic.woff2 │ ├── Inter-Italic.woff │ ├── Inter-Italic.woff2 │ ├── Inter-Light.woff │ ├── Inter-Light.woff2 │ ├── Inter-LightItalic.woff │ ├── Inter-LightItalic.woff2 │ ├── Inter-Medium.woff │ ├── Inter-Medium.woff2 │ ├── Inter-MediumItalic.woff │ ├── Inter-MediumItalic.woff2 │ ├── Inter-Regular.woff │ ├── Inter-Regular.woff2 │ ├── Inter-SemiBold.woff │ ├── Inter-SemiBold.woff2 │ ├── Inter-SemiBoldItalic.woff │ ├── Inter-SemiBoldItalic.woff2 │ ├── Inter-Thin.woff │ ├── Inter-Thin.woff2 │ ├── Inter-ThinItalic.woff │ ├── Inter-ThinItalic.woff2 │ ├── Inter-italic.var.woff2 │ ├── Inter-roman.var.woff2 │ └── Inter.var.woff2 ├── index-staging.html ├── index.html ├── testnet-meta-image.png └── wallpapers │ ├── 1.jpg │ ├── 10.jpg │ ├── 11.jpg │ ├── 12.jpg │ ├── 13.jpg │ ├── 14.jpg │ ├── 15.jpg │ ├── 16.jpg │ ├── 2.jpg │ ├── 3.jpg │ ├── 4.jpg │ ├── 5.jpg │ ├── 6.jpg │ ├── 7.jpg │ ├── 8.jpg │ └── 9.jpg ├── src ├── App.vue ├── assets │ ├── dock │ │ ├── app-store.png │ │ ├── home.png │ │ ├── logout.png │ │ ├── moon.png │ │ ├── settings.png │ │ └── sun.png │ ├── fake-qr.png │ ├── icon-app-bitcoin.svg │ ├── icon-app-btcpay.svg │ ├── icon-app-chaind.svg │ ├── icon-app-lightning.svg │ ├── icon-app-lnd.svg │ ├── icon-app-tor.svg │ ├── icon-block.svg │ ├── icon-dead-sd-card.svg │ ├── icon-search.svg │ ├── icon-system.svg │ ├── icon-wifi-1.svg │ ├── icon-wifi-2.svg │ ├── icon-wifi-3.svg │ ├── logo.png │ ├── logo.svg │ ├── moon.svg │ ├── no-search-results.gif │ ├── sun.svg │ └── umbrel-qr-icon.svg ├── components │ ├── AuthenticatedVerticalNavbar.vue │ ├── BitcoinWallet.vue │ ├── Blockchain.vue │ ├── CardWidget.vue │ ├── Channels │ │ ├── Bar.vue │ │ ├── Channel.vue │ │ ├── List.vue │ │ ├── Manage.vue │ │ └── Open.vue │ ├── ConnectWallet │ │ ├── ConnectionDetails.vue │ │ ├── Step.vue │ │ ├── StepList.vue │ │ ├── TorSetup.vue │ │ └── Wallets │ │ │ ├── BitBoxApp.vue │ │ │ ├── BitcoinCoreP2P.vue │ │ │ ├── BitcoinCoreRPC.vue │ │ │ ├── BlockstreamGreen.vue │ │ │ ├── BlueWallet.vue │ │ │ ├── ElectrumAndroid.vue │ │ │ ├── ElectrumDesktop.vue │ │ │ ├── ElectrumServer.vue │ │ │ ├── FullyNoded.vue │ │ │ ├── LNDConnectGRPCLocal.vue │ │ │ ├── LNDConnectGRPCTor.vue │ │ │ ├── LNDConnectRESTLocal.vue │ │ │ ├── LNDConnectRESTTor.vue │ │ │ ├── LilyWallet.vue │ │ │ ├── NunchukDesktop.vue │ │ │ ├── Phoenix.vue │ │ │ ├── SamouraiWallet.vue │ │ │ ├── Sparrow.vue │ │ │ ├── SpecterDesktop.vue │ │ │ ├── Wasabi.vue │ │ │ ├── ZapAndroid.vue │ │ │ ├── ZapDesktop.vue │ │ │ ├── ZapiOS.vue │ │ │ └── Zeus.vue │ ├── Dock.vue │ ├── DockApp.vue │ ├── InstalledApp.vue │ ├── LightningWallet.vue │ ├── Loading.vue │ ├── Logo.vue │ ├── Seed.vue │ ├── Shutdown.vue │ ├── Template.vue │ ├── ToggleSwitch.vue │ └── Utility │ │ ├── CircularCheckmark.vue │ │ ├── CountUp.vue │ │ ├── FeeSelector.vue │ │ ├── InputCopy.vue │ │ ├── InputOtpToken.vue │ │ ├── InputPassword.vue │ │ ├── QrCode.vue │ │ ├── SatsBtcSwitch.vue │ │ ├── ScrambledText.vue │ │ ├── Seed.vue │ │ ├── Stat.vue │ │ └── Status.vue ├── global-styles │ ├── _variables.scss │ ├── _variablesOld.scss │ ├── custom.scss │ ├── design-system.scss │ ├── fonts.scss │ └── responsive.scss ├── helpers │ ├── api.js │ ├── delay.js │ ├── size.js │ └── units.js ├── layouts │ ├── ContentLayout.vue │ ├── DashboardLayout.vue │ ├── HomeLayout.vue │ └── WrapperLayout.vue ├── main.js ├── router │ └── index.js ├── store │ ├── index.js │ └── modules │ │ ├── apps.js │ │ ├── bitcoin.js │ │ ├── lightning.js │ │ ├── onboarding.js │ │ ├── system.js │ │ └── user.js └── views │ ├── AppStore │ ├── AppStore.vue │ ├── AppStoreApp.vue │ ├── AppStoreAppGalleryImage.vue │ ├── CommunityAppStoreListItem.vue │ ├── CommunityAppStores.vue │ ├── ReleaseNotes.vue │ └── UpdateAppsApp.vue │ ├── Apps.vue │ ├── Bitcoin.vue │ ├── ConnectWallet.vue │ ├── Dashboard.vue │ ├── Home │ ├── AppDrawer.vue │ ├── AppSuggestions.vue │ ├── Home.vue │ ├── Notification.vue │ ├── WallpaperMenu.vue │ └── WallpaperMenuToggleButton.vue │ ├── Lightning.vue │ ├── Login │ └── Login.vue │ ├── Logout.vue │ ├── Settings │ ├── RamWidget.vue │ ├── Settings.vue │ ├── StorageWidget.vue │ └── TemperatureWidget.vue │ └── Start │ └── Start.vue ├── vue.config.js └── yarn.lock /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getumbrel/umbrel-dashboard/HEAD/.dockerignore -------------------------------------------------------------------------------- /.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getumbrel/umbrel-dashboard/HEAD/.env -------------------------------------------------------------------------------- /.env.production: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getumbrel/umbrel-dashboard/HEAD/.env.production -------------------------------------------------------------------------------- /.env.staging: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getumbrel/umbrel-dashboard/HEAD/.env.staging -------------------------------------------------------------------------------- /.github/workflows/on-push.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getumbrel/umbrel-dashboard/HEAD/.github/workflows/on-push.yml -------------------------------------------------------------------------------- /.github/workflows/on-tag.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getumbrel/umbrel-dashboard/HEAD/.github/workflows/on-tag.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getumbrel/umbrel-dashboard/HEAD/.gitignore -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getumbrel/umbrel-dashboard/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getumbrel/umbrel-dashboard/HEAD/Dockerfile -------------------------------------------------------------------------------- /Dockerfile.dev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getumbrel/umbrel-dashboard/HEAD/Dockerfile.dev -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getumbrel/umbrel-dashboard/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getumbrel/umbrel-dashboard/HEAD/README.md -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getumbrel/umbrel-dashboard/HEAD/babel.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getumbrel/umbrel-dashboard/HEAD/package.json -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getumbrel/umbrel-dashboard/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getumbrel/umbrel-dashboard/HEAD/public/favicon.png -------------------------------------------------------------------------------- /public/fonts/Inter-Black.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getumbrel/umbrel-dashboard/HEAD/public/fonts/Inter-Black.woff -------------------------------------------------------------------------------- /public/fonts/Inter-Black.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getumbrel/umbrel-dashboard/HEAD/public/fonts/Inter-Black.woff2 -------------------------------------------------------------------------------- /public/fonts/Inter-BlackItalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getumbrel/umbrel-dashboard/HEAD/public/fonts/Inter-BlackItalic.woff -------------------------------------------------------------------------------- /public/fonts/Inter-BlackItalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getumbrel/umbrel-dashboard/HEAD/public/fonts/Inter-BlackItalic.woff2 -------------------------------------------------------------------------------- /public/fonts/Inter-Bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getumbrel/umbrel-dashboard/HEAD/public/fonts/Inter-Bold.woff -------------------------------------------------------------------------------- /public/fonts/Inter-Bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getumbrel/umbrel-dashboard/HEAD/public/fonts/Inter-Bold.woff2 -------------------------------------------------------------------------------- /public/fonts/Inter-BoldItalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getumbrel/umbrel-dashboard/HEAD/public/fonts/Inter-BoldItalic.woff -------------------------------------------------------------------------------- /public/fonts/Inter-BoldItalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getumbrel/umbrel-dashboard/HEAD/public/fonts/Inter-BoldItalic.woff2 -------------------------------------------------------------------------------- /public/fonts/Inter-ExtraBold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getumbrel/umbrel-dashboard/HEAD/public/fonts/Inter-ExtraBold.woff -------------------------------------------------------------------------------- /public/fonts/Inter-ExtraBold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getumbrel/umbrel-dashboard/HEAD/public/fonts/Inter-ExtraBold.woff2 -------------------------------------------------------------------------------- /public/fonts/Inter-ExtraBoldItalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getumbrel/umbrel-dashboard/HEAD/public/fonts/Inter-ExtraBoldItalic.woff -------------------------------------------------------------------------------- /public/fonts/Inter-ExtraBoldItalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getumbrel/umbrel-dashboard/HEAD/public/fonts/Inter-ExtraBoldItalic.woff2 -------------------------------------------------------------------------------- /public/fonts/Inter-ExtraLight.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getumbrel/umbrel-dashboard/HEAD/public/fonts/Inter-ExtraLight.woff -------------------------------------------------------------------------------- /public/fonts/Inter-ExtraLight.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getumbrel/umbrel-dashboard/HEAD/public/fonts/Inter-ExtraLight.woff2 -------------------------------------------------------------------------------- /public/fonts/Inter-ExtraLightItalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getumbrel/umbrel-dashboard/HEAD/public/fonts/Inter-ExtraLightItalic.woff -------------------------------------------------------------------------------- /public/fonts/Inter-ExtraLightItalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getumbrel/umbrel-dashboard/HEAD/public/fonts/Inter-ExtraLightItalic.woff2 -------------------------------------------------------------------------------- /public/fonts/Inter-Italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getumbrel/umbrel-dashboard/HEAD/public/fonts/Inter-Italic.woff -------------------------------------------------------------------------------- /public/fonts/Inter-Italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getumbrel/umbrel-dashboard/HEAD/public/fonts/Inter-Italic.woff2 -------------------------------------------------------------------------------- /public/fonts/Inter-Light.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getumbrel/umbrel-dashboard/HEAD/public/fonts/Inter-Light.woff -------------------------------------------------------------------------------- /public/fonts/Inter-Light.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getumbrel/umbrel-dashboard/HEAD/public/fonts/Inter-Light.woff2 -------------------------------------------------------------------------------- /public/fonts/Inter-LightItalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getumbrel/umbrel-dashboard/HEAD/public/fonts/Inter-LightItalic.woff -------------------------------------------------------------------------------- /public/fonts/Inter-LightItalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getumbrel/umbrel-dashboard/HEAD/public/fonts/Inter-LightItalic.woff2 -------------------------------------------------------------------------------- /public/fonts/Inter-Medium.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getumbrel/umbrel-dashboard/HEAD/public/fonts/Inter-Medium.woff -------------------------------------------------------------------------------- /public/fonts/Inter-Medium.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getumbrel/umbrel-dashboard/HEAD/public/fonts/Inter-Medium.woff2 -------------------------------------------------------------------------------- /public/fonts/Inter-MediumItalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getumbrel/umbrel-dashboard/HEAD/public/fonts/Inter-MediumItalic.woff -------------------------------------------------------------------------------- /public/fonts/Inter-MediumItalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getumbrel/umbrel-dashboard/HEAD/public/fonts/Inter-MediumItalic.woff2 -------------------------------------------------------------------------------- /public/fonts/Inter-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getumbrel/umbrel-dashboard/HEAD/public/fonts/Inter-Regular.woff -------------------------------------------------------------------------------- /public/fonts/Inter-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getumbrel/umbrel-dashboard/HEAD/public/fonts/Inter-Regular.woff2 -------------------------------------------------------------------------------- /public/fonts/Inter-SemiBold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getumbrel/umbrel-dashboard/HEAD/public/fonts/Inter-SemiBold.woff -------------------------------------------------------------------------------- /public/fonts/Inter-SemiBold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getumbrel/umbrel-dashboard/HEAD/public/fonts/Inter-SemiBold.woff2 -------------------------------------------------------------------------------- /public/fonts/Inter-SemiBoldItalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getumbrel/umbrel-dashboard/HEAD/public/fonts/Inter-SemiBoldItalic.woff -------------------------------------------------------------------------------- /public/fonts/Inter-SemiBoldItalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getumbrel/umbrel-dashboard/HEAD/public/fonts/Inter-SemiBoldItalic.woff2 -------------------------------------------------------------------------------- /public/fonts/Inter-Thin.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getumbrel/umbrel-dashboard/HEAD/public/fonts/Inter-Thin.woff -------------------------------------------------------------------------------- /public/fonts/Inter-Thin.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getumbrel/umbrel-dashboard/HEAD/public/fonts/Inter-Thin.woff2 -------------------------------------------------------------------------------- /public/fonts/Inter-ThinItalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getumbrel/umbrel-dashboard/HEAD/public/fonts/Inter-ThinItalic.woff -------------------------------------------------------------------------------- /public/fonts/Inter-ThinItalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getumbrel/umbrel-dashboard/HEAD/public/fonts/Inter-ThinItalic.woff2 -------------------------------------------------------------------------------- /public/fonts/Inter-italic.var.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getumbrel/umbrel-dashboard/HEAD/public/fonts/Inter-italic.var.woff2 -------------------------------------------------------------------------------- /public/fonts/Inter-roman.var.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getumbrel/umbrel-dashboard/HEAD/public/fonts/Inter-roman.var.woff2 -------------------------------------------------------------------------------- /public/fonts/Inter.var.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getumbrel/umbrel-dashboard/HEAD/public/fonts/Inter.var.woff2 -------------------------------------------------------------------------------- /public/index-staging.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getumbrel/umbrel-dashboard/HEAD/public/index-staging.html -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getumbrel/umbrel-dashboard/HEAD/public/index.html -------------------------------------------------------------------------------- /public/testnet-meta-image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getumbrel/umbrel-dashboard/HEAD/public/testnet-meta-image.png -------------------------------------------------------------------------------- /public/wallpapers/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getumbrel/umbrel-dashboard/HEAD/public/wallpapers/1.jpg -------------------------------------------------------------------------------- /public/wallpapers/10.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getumbrel/umbrel-dashboard/HEAD/public/wallpapers/10.jpg -------------------------------------------------------------------------------- /public/wallpapers/11.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getumbrel/umbrel-dashboard/HEAD/public/wallpapers/11.jpg -------------------------------------------------------------------------------- /public/wallpapers/12.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getumbrel/umbrel-dashboard/HEAD/public/wallpapers/12.jpg -------------------------------------------------------------------------------- /public/wallpapers/13.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getumbrel/umbrel-dashboard/HEAD/public/wallpapers/13.jpg -------------------------------------------------------------------------------- /public/wallpapers/14.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getumbrel/umbrel-dashboard/HEAD/public/wallpapers/14.jpg -------------------------------------------------------------------------------- /public/wallpapers/15.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getumbrel/umbrel-dashboard/HEAD/public/wallpapers/15.jpg -------------------------------------------------------------------------------- /public/wallpapers/16.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getumbrel/umbrel-dashboard/HEAD/public/wallpapers/16.jpg -------------------------------------------------------------------------------- /public/wallpapers/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getumbrel/umbrel-dashboard/HEAD/public/wallpapers/2.jpg -------------------------------------------------------------------------------- /public/wallpapers/3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getumbrel/umbrel-dashboard/HEAD/public/wallpapers/3.jpg -------------------------------------------------------------------------------- /public/wallpapers/4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getumbrel/umbrel-dashboard/HEAD/public/wallpapers/4.jpg -------------------------------------------------------------------------------- /public/wallpapers/5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getumbrel/umbrel-dashboard/HEAD/public/wallpapers/5.jpg -------------------------------------------------------------------------------- /public/wallpapers/6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getumbrel/umbrel-dashboard/HEAD/public/wallpapers/6.jpg -------------------------------------------------------------------------------- /public/wallpapers/7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getumbrel/umbrel-dashboard/HEAD/public/wallpapers/7.jpg -------------------------------------------------------------------------------- /public/wallpapers/8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getumbrel/umbrel-dashboard/HEAD/public/wallpapers/8.jpg -------------------------------------------------------------------------------- /public/wallpapers/9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getumbrel/umbrel-dashboard/HEAD/public/wallpapers/9.jpg -------------------------------------------------------------------------------- /src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getumbrel/umbrel-dashboard/HEAD/src/App.vue -------------------------------------------------------------------------------- /src/assets/dock/app-store.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getumbrel/umbrel-dashboard/HEAD/src/assets/dock/app-store.png -------------------------------------------------------------------------------- /src/assets/dock/home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getumbrel/umbrel-dashboard/HEAD/src/assets/dock/home.png -------------------------------------------------------------------------------- /src/assets/dock/logout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getumbrel/umbrel-dashboard/HEAD/src/assets/dock/logout.png -------------------------------------------------------------------------------- /src/assets/dock/moon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getumbrel/umbrel-dashboard/HEAD/src/assets/dock/moon.png -------------------------------------------------------------------------------- /src/assets/dock/settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getumbrel/umbrel-dashboard/HEAD/src/assets/dock/settings.png -------------------------------------------------------------------------------- /src/assets/dock/sun.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getumbrel/umbrel-dashboard/HEAD/src/assets/dock/sun.png -------------------------------------------------------------------------------- /src/assets/fake-qr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getumbrel/umbrel-dashboard/HEAD/src/assets/fake-qr.png -------------------------------------------------------------------------------- /src/assets/icon-app-bitcoin.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getumbrel/umbrel-dashboard/HEAD/src/assets/icon-app-bitcoin.svg -------------------------------------------------------------------------------- /src/assets/icon-app-btcpay.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getumbrel/umbrel-dashboard/HEAD/src/assets/icon-app-btcpay.svg -------------------------------------------------------------------------------- /src/assets/icon-app-chaind.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getumbrel/umbrel-dashboard/HEAD/src/assets/icon-app-chaind.svg -------------------------------------------------------------------------------- /src/assets/icon-app-lightning.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getumbrel/umbrel-dashboard/HEAD/src/assets/icon-app-lightning.svg -------------------------------------------------------------------------------- /src/assets/icon-app-lnd.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getumbrel/umbrel-dashboard/HEAD/src/assets/icon-app-lnd.svg -------------------------------------------------------------------------------- /src/assets/icon-app-tor.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getumbrel/umbrel-dashboard/HEAD/src/assets/icon-app-tor.svg -------------------------------------------------------------------------------- /src/assets/icon-block.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getumbrel/umbrel-dashboard/HEAD/src/assets/icon-block.svg -------------------------------------------------------------------------------- /src/assets/icon-dead-sd-card.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getumbrel/umbrel-dashboard/HEAD/src/assets/icon-dead-sd-card.svg -------------------------------------------------------------------------------- /src/assets/icon-search.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getumbrel/umbrel-dashboard/HEAD/src/assets/icon-search.svg -------------------------------------------------------------------------------- /src/assets/icon-system.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getumbrel/umbrel-dashboard/HEAD/src/assets/icon-system.svg -------------------------------------------------------------------------------- /src/assets/icon-wifi-1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getumbrel/umbrel-dashboard/HEAD/src/assets/icon-wifi-1.svg -------------------------------------------------------------------------------- /src/assets/icon-wifi-2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getumbrel/umbrel-dashboard/HEAD/src/assets/icon-wifi-2.svg -------------------------------------------------------------------------------- /src/assets/icon-wifi-3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getumbrel/umbrel-dashboard/HEAD/src/assets/icon-wifi-3.svg -------------------------------------------------------------------------------- /src/assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getumbrel/umbrel-dashboard/HEAD/src/assets/logo.png -------------------------------------------------------------------------------- /src/assets/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getumbrel/umbrel-dashboard/HEAD/src/assets/logo.svg -------------------------------------------------------------------------------- /src/assets/moon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getumbrel/umbrel-dashboard/HEAD/src/assets/moon.svg -------------------------------------------------------------------------------- /src/assets/no-search-results.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getumbrel/umbrel-dashboard/HEAD/src/assets/no-search-results.gif -------------------------------------------------------------------------------- /src/assets/sun.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getumbrel/umbrel-dashboard/HEAD/src/assets/sun.svg -------------------------------------------------------------------------------- /src/assets/umbrel-qr-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getumbrel/umbrel-dashboard/HEAD/src/assets/umbrel-qr-icon.svg -------------------------------------------------------------------------------- /src/components/AuthenticatedVerticalNavbar.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getumbrel/umbrel-dashboard/HEAD/src/components/AuthenticatedVerticalNavbar.vue -------------------------------------------------------------------------------- /src/components/BitcoinWallet.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getumbrel/umbrel-dashboard/HEAD/src/components/BitcoinWallet.vue -------------------------------------------------------------------------------- /src/components/Blockchain.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getumbrel/umbrel-dashboard/HEAD/src/components/Blockchain.vue -------------------------------------------------------------------------------- /src/components/CardWidget.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getumbrel/umbrel-dashboard/HEAD/src/components/CardWidget.vue -------------------------------------------------------------------------------- /src/components/Channels/Bar.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getumbrel/umbrel-dashboard/HEAD/src/components/Channels/Bar.vue -------------------------------------------------------------------------------- /src/components/Channels/Channel.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getumbrel/umbrel-dashboard/HEAD/src/components/Channels/Channel.vue -------------------------------------------------------------------------------- /src/components/Channels/List.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getumbrel/umbrel-dashboard/HEAD/src/components/Channels/List.vue -------------------------------------------------------------------------------- /src/components/Channels/Manage.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getumbrel/umbrel-dashboard/HEAD/src/components/Channels/Manage.vue -------------------------------------------------------------------------------- /src/components/Channels/Open.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getumbrel/umbrel-dashboard/HEAD/src/components/Channels/Open.vue -------------------------------------------------------------------------------- /src/components/ConnectWallet/ConnectionDetails.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getumbrel/umbrel-dashboard/HEAD/src/components/ConnectWallet/ConnectionDetails.vue -------------------------------------------------------------------------------- /src/components/ConnectWallet/Step.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getumbrel/umbrel-dashboard/HEAD/src/components/ConnectWallet/Step.vue -------------------------------------------------------------------------------- /src/components/ConnectWallet/StepList.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getumbrel/umbrel-dashboard/HEAD/src/components/ConnectWallet/StepList.vue -------------------------------------------------------------------------------- /src/components/ConnectWallet/TorSetup.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getumbrel/umbrel-dashboard/HEAD/src/components/ConnectWallet/TorSetup.vue -------------------------------------------------------------------------------- /src/components/ConnectWallet/Wallets/BitBoxApp.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getumbrel/umbrel-dashboard/HEAD/src/components/ConnectWallet/Wallets/BitBoxApp.vue -------------------------------------------------------------------------------- /src/components/ConnectWallet/Wallets/BitcoinCoreP2P.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getumbrel/umbrel-dashboard/HEAD/src/components/ConnectWallet/Wallets/BitcoinCoreP2P.vue -------------------------------------------------------------------------------- /src/components/ConnectWallet/Wallets/BitcoinCoreRPC.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getumbrel/umbrel-dashboard/HEAD/src/components/ConnectWallet/Wallets/BitcoinCoreRPC.vue -------------------------------------------------------------------------------- /src/components/ConnectWallet/Wallets/BlockstreamGreen.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getumbrel/umbrel-dashboard/HEAD/src/components/ConnectWallet/Wallets/BlockstreamGreen.vue -------------------------------------------------------------------------------- /src/components/ConnectWallet/Wallets/BlueWallet.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getumbrel/umbrel-dashboard/HEAD/src/components/ConnectWallet/Wallets/BlueWallet.vue -------------------------------------------------------------------------------- /src/components/ConnectWallet/Wallets/ElectrumAndroid.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getumbrel/umbrel-dashboard/HEAD/src/components/ConnectWallet/Wallets/ElectrumAndroid.vue -------------------------------------------------------------------------------- /src/components/ConnectWallet/Wallets/ElectrumDesktop.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getumbrel/umbrel-dashboard/HEAD/src/components/ConnectWallet/Wallets/ElectrumDesktop.vue -------------------------------------------------------------------------------- /src/components/ConnectWallet/Wallets/ElectrumServer.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getumbrel/umbrel-dashboard/HEAD/src/components/ConnectWallet/Wallets/ElectrumServer.vue -------------------------------------------------------------------------------- /src/components/ConnectWallet/Wallets/FullyNoded.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getumbrel/umbrel-dashboard/HEAD/src/components/ConnectWallet/Wallets/FullyNoded.vue -------------------------------------------------------------------------------- /src/components/ConnectWallet/Wallets/LNDConnectGRPCLocal.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getumbrel/umbrel-dashboard/HEAD/src/components/ConnectWallet/Wallets/LNDConnectGRPCLocal.vue -------------------------------------------------------------------------------- /src/components/ConnectWallet/Wallets/LNDConnectGRPCTor.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getumbrel/umbrel-dashboard/HEAD/src/components/ConnectWallet/Wallets/LNDConnectGRPCTor.vue -------------------------------------------------------------------------------- /src/components/ConnectWallet/Wallets/LNDConnectRESTLocal.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getumbrel/umbrel-dashboard/HEAD/src/components/ConnectWallet/Wallets/LNDConnectRESTLocal.vue -------------------------------------------------------------------------------- /src/components/ConnectWallet/Wallets/LNDConnectRESTTor.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getumbrel/umbrel-dashboard/HEAD/src/components/ConnectWallet/Wallets/LNDConnectRESTTor.vue -------------------------------------------------------------------------------- /src/components/ConnectWallet/Wallets/LilyWallet.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getumbrel/umbrel-dashboard/HEAD/src/components/ConnectWallet/Wallets/LilyWallet.vue -------------------------------------------------------------------------------- /src/components/ConnectWallet/Wallets/NunchukDesktop.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getumbrel/umbrel-dashboard/HEAD/src/components/ConnectWallet/Wallets/NunchukDesktop.vue -------------------------------------------------------------------------------- /src/components/ConnectWallet/Wallets/Phoenix.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getumbrel/umbrel-dashboard/HEAD/src/components/ConnectWallet/Wallets/Phoenix.vue -------------------------------------------------------------------------------- /src/components/ConnectWallet/Wallets/SamouraiWallet.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getumbrel/umbrel-dashboard/HEAD/src/components/ConnectWallet/Wallets/SamouraiWallet.vue -------------------------------------------------------------------------------- /src/components/ConnectWallet/Wallets/Sparrow.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getumbrel/umbrel-dashboard/HEAD/src/components/ConnectWallet/Wallets/Sparrow.vue -------------------------------------------------------------------------------- /src/components/ConnectWallet/Wallets/SpecterDesktop.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getumbrel/umbrel-dashboard/HEAD/src/components/ConnectWallet/Wallets/SpecterDesktop.vue -------------------------------------------------------------------------------- /src/components/ConnectWallet/Wallets/Wasabi.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getumbrel/umbrel-dashboard/HEAD/src/components/ConnectWallet/Wallets/Wasabi.vue -------------------------------------------------------------------------------- /src/components/ConnectWallet/Wallets/ZapAndroid.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getumbrel/umbrel-dashboard/HEAD/src/components/ConnectWallet/Wallets/ZapAndroid.vue -------------------------------------------------------------------------------- /src/components/ConnectWallet/Wallets/ZapDesktop.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getumbrel/umbrel-dashboard/HEAD/src/components/ConnectWallet/Wallets/ZapDesktop.vue -------------------------------------------------------------------------------- /src/components/ConnectWallet/Wallets/ZapiOS.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getumbrel/umbrel-dashboard/HEAD/src/components/ConnectWallet/Wallets/ZapiOS.vue -------------------------------------------------------------------------------- /src/components/ConnectWallet/Wallets/Zeus.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getumbrel/umbrel-dashboard/HEAD/src/components/ConnectWallet/Wallets/Zeus.vue -------------------------------------------------------------------------------- /src/components/Dock.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getumbrel/umbrel-dashboard/HEAD/src/components/Dock.vue -------------------------------------------------------------------------------- /src/components/DockApp.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getumbrel/umbrel-dashboard/HEAD/src/components/DockApp.vue -------------------------------------------------------------------------------- /src/components/InstalledApp.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getumbrel/umbrel-dashboard/HEAD/src/components/InstalledApp.vue -------------------------------------------------------------------------------- /src/components/LightningWallet.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getumbrel/umbrel-dashboard/HEAD/src/components/LightningWallet.vue -------------------------------------------------------------------------------- /src/components/Loading.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getumbrel/umbrel-dashboard/HEAD/src/components/Loading.vue -------------------------------------------------------------------------------- /src/components/Logo.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getumbrel/umbrel-dashboard/HEAD/src/components/Logo.vue -------------------------------------------------------------------------------- /src/components/Seed.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getumbrel/umbrel-dashboard/HEAD/src/components/Seed.vue -------------------------------------------------------------------------------- /src/components/Shutdown.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getumbrel/umbrel-dashboard/HEAD/src/components/Shutdown.vue -------------------------------------------------------------------------------- /src/components/Template.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getumbrel/umbrel-dashboard/HEAD/src/components/Template.vue -------------------------------------------------------------------------------- /src/components/ToggleSwitch.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getumbrel/umbrel-dashboard/HEAD/src/components/ToggleSwitch.vue -------------------------------------------------------------------------------- /src/components/Utility/CircularCheckmark.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getumbrel/umbrel-dashboard/HEAD/src/components/Utility/CircularCheckmark.vue -------------------------------------------------------------------------------- /src/components/Utility/CountUp.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getumbrel/umbrel-dashboard/HEAD/src/components/Utility/CountUp.vue -------------------------------------------------------------------------------- /src/components/Utility/FeeSelector.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getumbrel/umbrel-dashboard/HEAD/src/components/Utility/FeeSelector.vue -------------------------------------------------------------------------------- /src/components/Utility/InputCopy.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getumbrel/umbrel-dashboard/HEAD/src/components/Utility/InputCopy.vue -------------------------------------------------------------------------------- /src/components/Utility/InputOtpToken.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getumbrel/umbrel-dashboard/HEAD/src/components/Utility/InputOtpToken.vue -------------------------------------------------------------------------------- /src/components/Utility/InputPassword.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getumbrel/umbrel-dashboard/HEAD/src/components/Utility/InputPassword.vue -------------------------------------------------------------------------------- /src/components/Utility/QrCode.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getumbrel/umbrel-dashboard/HEAD/src/components/Utility/QrCode.vue -------------------------------------------------------------------------------- /src/components/Utility/SatsBtcSwitch.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getumbrel/umbrel-dashboard/HEAD/src/components/Utility/SatsBtcSwitch.vue -------------------------------------------------------------------------------- /src/components/Utility/ScrambledText.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getumbrel/umbrel-dashboard/HEAD/src/components/Utility/ScrambledText.vue -------------------------------------------------------------------------------- /src/components/Utility/Seed.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getumbrel/umbrel-dashboard/HEAD/src/components/Utility/Seed.vue -------------------------------------------------------------------------------- /src/components/Utility/Stat.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getumbrel/umbrel-dashboard/HEAD/src/components/Utility/Stat.vue -------------------------------------------------------------------------------- /src/components/Utility/Status.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getumbrel/umbrel-dashboard/HEAD/src/components/Utility/Status.vue -------------------------------------------------------------------------------- /src/global-styles/_variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getumbrel/umbrel-dashboard/HEAD/src/global-styles/_variables.scss -------------------------------------------------------------------------------- /src/global-styles/_variablesOld.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getumbrel/umbrel-dashboard/HEAD/src/global-styles/_variablesOld.scss -------------------------------------------------------------------------------- /src/global-styles/custom.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getumbrel/umbrel-dashboard/HEAD/src/global-styles/custom.scss -------------------------------------------------------------------------------- /src/global-styles/design-system.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getumbrel/umbrel-dashboard/HEAD/src/global-styles/design-system.scss -------------------------------------------------------------------------------- /src/global-styles/fonts.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getumbrel/umbrel-dashboard/HEAD/src/global-styles/fonts.scss -------------------------------------------------------------------------------- /src/global-styles/responsive.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getumbrel/umbrel-dashboard/HEAD/src/global-styles/responsive.scss -------------------------------------------------------------------------------- /src/helpers/api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getumbrel/umbrel-dashboard/HEAD/src/helpers/api.js -------------------------------------------------------------------------------- /src/helpers/delay.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getumbrel/umbrel-dashboard/HEAD/src/helpers/delay.js -------------------------------------------------------------------------------- /src/helpers/size.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getumbrel/umbrel-dashboard/HEAD/src/helpers/size.js -------------------------------------------------------------------------------- /src/helpers/units.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getumbrel/umbrel-dashboard/HEAD/src/helpers/units.js -------------------------------------------------------------------------------- /src/layouts/ContentLayout.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getumbrel/umbrel-dashboard/HEAD/src/layouts/ContentLayout.vue -------------------------------------------------------------------------------- /src/layouts/DashboardLayout.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getumbrel/umbrel-dashboard/HEAD/src/layouts/DashboardLayout.vue -------------------------------------------------------------------------------- /src/layouts/HomeLayout.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getumbrel/umbrel-dashboard/HEAD/src/layouts/HomeLayout.vue -------------------------------------------------------------------------------- /src/layouts/WrapperLayout.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getumbrel/umbrel-dashboard/HEAD/src/layouts/WrapperLayout.vue -------------------------------------------------------------------------------- /src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getumbrel/umbrel-dashboard/HEAD/src/main.js -------------------------------------------------------------------------------- /src/router/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getumbrel/umbrel-dashboard/HEAD/src/router/index.js -------------------------------------------------------------------------------- /src/store/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getumbrel/umbrel-dashboard/HEAD/src/store/index.js -------------------------------------------------------------------------------- /src/store/modules/apps.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getumbrel/umbrel-dashboard/HEAD/src/store/modules/apps.js -------------------------------------------------------------------------------- /src/store/modules/bitcoin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getumbrel/umbrel-dashboard/HEAD/src/store/modules/bitcoin.js -------------------------------------------------------------------------------- /src/store/modules/lightning.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getumbrel/umbrel-dashboard/HEAD/src/store/modules/lightning.js -------------------------------------------------------------------------------- /src/store/modules/onboarding.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/store/modules/system.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getumbrel/umbrel-dashboard/HEAD/src/store/modules/system.js -------------------------------------------------------------------------------- /src/store/modules/user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getumbrel/umbrel-dashboard/HEAD/src/store/modules/user.js -------------------------------------------------------------------------------- /src/views/AppStore/AppStore.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getumbrel/umbrel-dashboard/HEAD/src/views/AppStore/AppStore.vue -------------------------------------------------------------------------------- /src/views/AppStore/AppStoreApp.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getumbrel/umbrel-dashboard/HEAD/src/views/AppStore/AppStoreApp.vue -------------------------------------------------------------------------------- /src/views/AppStore/AppStoreAppGalleryImage.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getumbrel/umbrel-dashboard/HEAD/src/views/AppStore/AppStoreAppGalleryImage.vue -------------------------------------------------------------------------------- /src/views/AppStore/CommunityAppStoreListItem.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getumbrel/umbrel-dashboard/HEAD/src/views/AppStore/CommunityAppStoreListItem.vue -------------------------------------------------------------------------------- /src/views/AppStore/CommunityAppStores.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getumbrel/umbrel-dashboard/HEAD/src/views/AppStore/CommunityAppStores.vue -------------------------------------------------------------------------------- /src/views/AppStore/ReleaseNotes.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getumbrel/umbrel-dashboard/HEAD/src/views/AppStore/ReleaseNotes.vue -------------------------------------------------------------------------------- /src/views/AppStore/UpdateAppsApp.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getumbrel/umbrel-dashboard/HEAD/src/views/AppStore/UpdateAppsApp.vue -------------------------------------------------------------------------------- /src/views/Apps.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getumbrel/umbrel-dashboard/HEAD/src/views/Apps.vue -------------------------------------------------------------------------------- /src/views/Bitcoin.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getumbrel/umbrel-dashboard/HEAD/src/views/Bitcoin.vue -------------------------------------------------------------------------------- /src/views/ConnectWallet.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getumbrel/umbrel-dashboard/HEAD/src/views/ConnectWallet.vue -------------------------------------------------------------------------------- /src/views/Dashboard.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getumbrel/umbrel-dashboard/HEAD/src/views/Dashboard.vue -------------------------------------------------------------------------------- /src/views/Home/AppDrawer.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getumbrel/umbrel-dashboard/HEAD/src/views/Home/AppDrawer.vue -------------------------------------------------------------------------------- /src/views/Home/AppSuggestions.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getumbrel/umbrel-dashboard/HEAD/src/views/Home/AppSuggestions.vue -------------------------------------------------------------------------------- /src/views/Home/Home.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getumbrel/umbrel-dashboard/HEAD/src/views/Home/Home.vue -------------------------------------------------------------------------------- /src/views/Home/Notification.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getumbrel/umbrel-dashboard/HEAD/src/views/Home/Notification.vue -------------------------------------------------------------------------------- /src/views/Home/WallpaperMenu.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getumbrel/umbrel-dashboard/HEAD/src/views/Home/WallpaperMenu.vue -------------------------------------------------------------------------------- /src/views/Home/WallpaperMenuToggleButton.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getumbrel/umbrel-dashboard/HEAD/src/views/Home/WallpaperMenuToggleButton.vue -------------------------------------------------------------------------------- /src/views/Lightning.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getumbrel/umbrel-dashboard/HEAD/src/views/Lightning.vue -------------------------------------------------------------------------------- /src/views/Login/Login.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getumbrel/umbrel-dashboard/HEAD/src/views/Login/Login.vue -------------------------------------------------------------------------------- /src/views/Logout.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getumbrel/umbrel-dashboard/HEAD/src/views/Logout.vue -------------------------------------------------------------------------------- /src/views/Settings/RamWidget.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getumbrel/umbrel-dashboard/HEAD/src/views/Settings/RamWidget.vue -------------------------------------------------------------------------------- /src/views/Settings/Settings.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getumbrel/umbrel-dashboard/HEAD/src/views/Settings/Settings.vue -------------------------------------------------------------------------------- /src/views/Settings/StorageWidget.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getumbrel/umbrel-dashboard/HEAD/src/views/Settings/StorageWidget.vue -------------------------------------------------------------------------------- /src/views/Settings/TemperatureWidget.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getumbrel/umbrel-dashboard/HEAD/src/views/Settings/TemperatureWidget.vue -------------------------------------------------------------------------------- /src/views/Start/Start.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getumbrel/umbrel-dashboard/HEAD/src/views/Start/Start.vue -------------------------------------------------------------------------------- /vue.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getumbrel/umbrel-dashboard/HEAD/vue.config.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getumbrel/umbrel-dashboard/HEAD/yarn.lock --------------------------------------------------------------------------------