https://github.com/cheesecake87/gnome-terminal-loader
https://github.com/cheesecake87/gnome-terminal-loader
Last synced: 12 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/cheesecake87/gnome-terminal-loader
- Owner: CheeseCake87
- License: mit
- Created: 2023-08-08T14:53:32.000Z (almost 3 years ago)
- Default Branch: master
- Last Pushed: 2023-11-12T07:04:58.000Z (over 2 years ago)
- Last Synced: 2025-06-24T00:06:04.639Z (12 months ago)
- Language: TypeScript
- Size: 47.9 KB
- Stars: 4
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
# Gnome Terminal Loader
#### An Obsidian plugin
An Obsidian plugin that loads Gnome Terminal. It also has a Python script entry point loader, by placing a file called
main.py in the root of the vault. (Only compatible with Linux, with gnome-terminal and python3 installed)


It's best to use a CLI menu with `main.py` here's an example:
```python
def menu():
menu = -1
while menu != 0:
menu = int(input('1. Print Hello \n 2. Print World \n 0. exit \n'))
if menu == 1:
Print("Hello")
elif menu == 2:
Print("World")
elif menu == 0:
break
else:
print('null')
if __name__ == '__main__':
menu()
```