An open API service indexing awesome lists of open source software.

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

Awesome Lists containing this project

README

          

# Simple Python Dock
screenshot

# Important: Hide OS Taskbar

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

screenshot

# 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```