diff --git a/README.md b/README.md index da8a68b..bf086bc 100644 --- a/README.md +++ b/README.md @@ -17,6 +17,12 @@ Recommended: - sass-stylesheets-bulma (needed if the web front-end is to be used) - libxapp-gtk3-module +On Debian-based systems, you should get everything with the following: + +``` +apt install python3-flask python3-command-runner python3-pytest python3-dmm gettext libjs-htmx sass-stylesheets-bulma fonts-fork-awesome +``` + ## Development **Please Note:** This project is in early development, and if you have stumbled across this page, please note that it is nowhere near ready for production use yet. Hopefully that changes over the next few months! diff --git a/src/yasi-webclient b/src/yasi-webclient index b2f1bf6..9291489 100755 --- a/src/yasi-webclient +++ b/src/yasi-webclient @@ -13,7 +13,7 @@ def on_closed(): window = webview.create_window('System Installer', LOCATION, transparent=True, easy_drag=False, frameless=True, - width=1050, focus=True, zoomable=True, + width=1050, height=650, focus=True, zoomable=True, confirm_close=True, resizable=True, shadow=True, text_select=False, draggable=False ) @@ -31,4 +31,5 @@ webview.settings = { } window.events.closed += on_closed -webview.start(icon='/usr/share/icons/yasi.png') +#webview.start(icon='/usr/share/icons/yasi.png') +webview.start() diff --git a/src/yasi_applets/disks/__pycache__/__init__.cpython-312.pyc b/src/yasi_applets/disks/__pycache__/__init__.cpython-312.pyc new file mode 100644 index 0000000..bc17290 Binary files /dev/null and b/src/yasi_applets/disks/__pycache__/__init__.cpython-312.pyc differ diff --git a/src/yasi_applets/disks/__pycache__/__init__.cpython-313.pyc b/src/yasi_applets/disks/__pycache__/__init__.cpython-313.pyc new file mode 100644 index 0000000..1db37ec Binary files /dev/null and b/src/yasi_applets/disks/__pycache__/__init__.cpython-313.pyc differ diff --git a/src/yasi_applets/disks/__pycache__/routes.cpython-312.pyc b/src/yasi_applets/disks/__pycache__/routes.cpython-312.pyc new file mode 100644 index 0000000..12ba9b5 Binary files /dev/null and b/src/yasi_applets/disks/__pycache__/routes.cpython-312.pyc differ diff --git a/src/yasi_applets/disks/__pycache__/routes.cpython-313.pyc b/src/yasi_applets/disks/__pycache__/routes.cpython-313.pyc new file mode 100644 index 0000000..41c7896 Binary files /dev/null and b/src/yasi_applets/disks/__pycache__/routes.cpython-313.pyc differ diff --git a/src/yasi_applets/disks/disks.html b/src/yasi_applets/disks/disks.html index 9d61cb8..830e05c 100644 --- a/src/yasi_applets/disks/disks.html +++ b/src/yasi_applets/disks/disks.html @@ -27,10 +27,8 @@ --> -
Current layout:
- {{ disk['name'] }} ({{(disk['size']/1024000000)|round(0)|int }} GB) - Serial: {{ disk['serial'] }}
- {{ child['name'] }} ({{ (child['size']/1024000000)|round(2) }} GiB) {{ child['mountpoint'] }}
- {{ child['fstype'] }}
- {{ disk['name'] }} ({{ (disk['size']/1024000000)|round(2) }} GiB) /dev/{{ disk['name'] }}
swap
Disk Details
+ Wipe Disk
+ New Partition
+ Replicate Layout
+ Diagnostics
+
+
+
Partition
+ Type
+ Mount Point
+ Label
+ Size
+ Used
+{% for child in disk['children'] %}
+
+
+{% endfor %}
+{{ child['name'] }}
+ {{ child['fstype'] }}
+ {{ child['mountpoint'] }}
+ {{ child['label'] }}
+ {{ (child['size']/1024000000)|round(2) }} GiB
+
+