Improve immutability and snapshots, blend-settings; Revamp blend
This commit is contained in:
parent
9f7dee08a8
commit
de7e60e65e
13 changed files with 288 additions and 247 deletions
|
@ -13,10 +13,10 @@
|
|||
<body style="height: 100%;">
|
||||
<br>
|
||||
<div class="topnav">
|
||||
<div class="btn-group" role="group" aria-label="Stores">
|
||||
<div class="btn-group" id="settings-tabs" role="group" aria-label="Stores">
|
||||
<button class="btn btn-outline-light active shadow-none" id="containers-button" onclick="page('containers')">Linux
|
||||
Containers</button>
|
||||
<button class="btn btn-outline-light shadow-none" id="android-button" onclick="page('android')">Android
|
||||
<button class="btn btn-outline-light shadow-none d-none" id="android-button" onclick="page('android')">Android
|
||||
Apps</button>
|
||||
<button class="btn btn-outline-light shadow-none" id="system-button" onclick="page('system')">System</button>
|
||||
</div>
|
||||
|
@ -41,6 +41,10 @@
|
|||
|
||||
const $ = require("jquery")
|
||||
|
||||
if (fs.existsSync('/usr/bin/waydroid')) {
|
||||
document.getElementById('android-button').classList.remove('d-none')
|
||||
}
|
||||
|
||||
function page(page) {
|
||||
switch (page) {
|
||||
case 'containers':
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue