summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRishi-k-s <rishikrishna.sr@gmail.com>2025-07-03 21:31:52 +0530
committerRishi-k-s <rishikrishna.sr@gmail.com>2025-07-03 21:31:52 +0530
commit8c938226c9e186dc3770c31046b50cb45a56197f (patch)
tree60928089bc8f4a68c557d59e3f65240586ac609a
first commit
-rw-r--r--.gitignore1
-rw-r--r--main.py13
-rwxr-xr-xmain.sh2
3 files changed, 16 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore
new file mode 100644
index 0000000..1d17dae
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1 @@
+.venv
diff --git a/main.py b/main.py
new file mode 100644
index 0000000..7b9483b
--- /dev/null
+++ b/main.py
@@ -0,0 +1,13 @@
+from textual.app import App
+
+
+class MyApp(App):
+ pass
+
+
+def main():
+ app = MyApp()
+ app.run()
+
+if __name__ == "__main__":
+ main() \ No newline at end of file
diff --git a/main.sh b/main.sh
new file mode 100755
index 0000000..4c392d3
--- /dev/null
+++ b/main.sh
@@ -0,0 +1,2 @@
+#dpkg --get-selections | grep
+ls /usr/share/applications/ | \ No newline at end of file