diff options
| author | Rishi-k-s <rishikrishna.sr@gmail.com> | 2025-07-03 21:31:52 +0530 |
|---|---|---|
| committer | Rishi-k-s <rishikrishna.sr@gmail.com> | 2025-07-03 21:31:52 +0530 |
| commit | 8c938226c9e186dc3770c31046b50cb45a56197f (patch) | |
| tree | 60928089bc8f4a68c557d59e3f65240586ac609a | |
first commit
| -rw-r--r-- | .gitignore | 1 | ||||
| -rw-r--r-- | main.py | 13 | ||||
| -rwxr-xr-x | main.sh | 2 |
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 @@ -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 @@ -0,0 +1,2 @@ +#dpkg --get-selections | grep +ls /usr/share/applications/ |
\ No newline at end of file |
