https://github.com/amnweb/python-dock
Simple Python Dock
https://github.com/amnweb/python-dock
Last synced: 4 months ago
JSON representation
Simple Python Dock
- Host: GitHub
- URL: https://github.com/amnweb/python-dock
- Owner: amnweb
- License: mit
- Archived: true
- Created: 2024-06-30T15:43:34.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-06-30T22:41:02.000Z (over 1 year ago)
- Last Synced: 2024-10-27T23:35:29.048Z (over 1 year ago)
- Language: Python
- Homepage:
- Size: 422 KB
- Stars: 6
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Simple Python Dock

# Important: Hide OS Taskbar
- Automatically hide the taskbar: Enabled
- Show my taskbar on all displays: Disabled
- In ```main.py``` set ```HIDE_TASKBAR = True```

# How to Add Apps or Links in Dock
Open config.json and edit the list or add new entries.
Example of an App
```
"Arc Browser": {
"icon": "./icons/svg/arc.svg",
"type": "open_app",
"exec": "Arc.exe"
}
```
Example of a Link
```
"YouTube": {
"icon": "./icons/svg/youtube.svg",
"type": "open_url",
"url": "https://www.youtube.com"
}
```
Type can be ```open_app``` or ```open_url```
# How to run
Clone this repository and run ```pip install -r requirements.txt```, run dock ```python .\main.py```