From d2ebcdd852cc7dc6e00183fa09ca772dd5c5f710 Mon Sep 17 00:00:00 2001 From: brent s Date: Sun, 3 Nov 2019 01:36:53 -0400 Subject: [PATCH] starting over again. whoops! --- confgen.py | 32 -------------------------------- docs/TODO | 16 ---------------- meta.py | 0 storage/__init__.py | 6 ------ storage/block.py | 0 storage/filesystem.py | 0 storage/luks.py | 0 storage/lvm.py | 0 storage/mdadm.py | 0 storage/mount.py | 0 10 files changed, 54 deletions(-) delete mode 100755 confgen.py delete mode 100644 docs/TODO delete mode 100644 meta.py delete mode 100644 storage/__init__.py delete mode 100644 storage/block.py delete mode 100644 storage/filesystem.py delete mode 100644 storage/luks.py delete mode 100644 storage/lvm.py delete mode 100644 storage/mdadm.py delete mode 100644 storage/mount.py diff --git a/confgen.py b/confgen.py deleted file mode 100755 index 7a5804b..0000000 --- a/confgen.py +++ /dev/null @@ -1,32 +0,0 @@ -#!/usr/bin/env python3 - -from kivy.app import App -from kivy.uix.dropdown import DropDown -from kivy.uix.boxlayout import BoxLayout -from kivy.uix.button import Button -from kivy.uix.label import Label -from kivy.uix.popup import Popup -from kivy.uix.screenmanager import ScreenManager, Screen -from kivy.uix.textinput import TextInput - - -sm = ScreenManager() - - -class MainScreen(Screen): - name = 'foo' - l = Button() - -class MainWindow(BoxLayout): - def on_enter(self, *args): - pass - - -class MyApp(App): - def build(self): - sm.add_widget(MainScreen) - return(MainWindow()) - - -if __name__ == '__main__': - MyApp().run() diff --git a/docs/TODO b/docs/TODO deleted file mode 100644 index f61a240..0000000 --- a/docs/TODO +++ /dev/null @@ -1,16 +0,0 @@ -https://kivy.org/doc/stable/api-kivy.uix.screenmanager.html -https://kivy.org/doc/stable/api-kivy.uix.popup.html -https://kivy.org/doc/stable/api-kivy.uix.dropdown.html -https://stackoverflow.com/questions/44770222/kivy-with-menubar -https://www.geeksforgeeks.org/python-window-size-adjustment-in-kivy/ -https://stackoverflow.com/questions/26314466/get-textinput-value-in-kivy-app -https://github.com/techwithtim/Kivy-GUI-Example/blob/master/main.py#L3 -https://techwithtim.net/tutorials/kivy-tutorial/example-gui/ -https://kivy.org/doc/stable/api-kivy.uix.textinput.html -https://stackoverflow.com/questions/15689555/how-to-create-simple-kivy-app-form-with-field-name -https://github.com/kivy/kivy/wiki -https://kivy.org/doc/stable/api-kivy.html -https://kivy.org/doc/stable/guide/basic.html#quickstart -https://kivy.org/doc/stable/tutorials/firstwidget.html -https://kivy.org/doc/stable/tutorials/pong.html -https://kivy.org/doc/stable/gettingstarted/first_app.html diff --git a/meta.py b/meta.py deleted file mode 100644 index e69de29..0000000 diff --git a/storage/__init__.py b/storage/__init__.py deleted file mode 100644 index 38dc252..0000000 --- a/storage/__init__.py +++ /dev/null @@ -1,6 +0,0 @@ -from kivy.uix.screenmanager import ScreenManager, Screen - - -class Storage(Screen): - def __init__(self): - pass diff --git a/storage/block.py b/storage/block.py deleted file mode 100644 index e69de29..0000000 diff --git a/storage/filesystem.py b/storage/filesystem.py deleted file mode 100644 index e69de29..0000000 diff --git a/storage/luks.py b/storage/luks.py deleted file mode 100644 index e69de29..0000000 diff --git a/storage/lvm.py b/storage/lvm.py deleted file mode 100644 index e69de29..0000000 diff --git a/storage/mdadm.py b/storage/mdadm.py deleted file mode 100644 index e69de29..0000000 diff --git a/storage/mount.py b/storage/mount.py deleted file mode 100644 index e69de29..0000000