mirror of
https://github.com/neon443/DockPhobia.git
synced 2026-03-11 06:49:12 +00:00
55 lines
1.7 KiB
Markdown
55 lines
1.7 KiB
Markdown
# DockPhobia
|
|
|
|
<div align="center">
|
|
<br/>
|
|
<p>
|
|
<img src="https://github.com/neon443/DockPhobia/blob/main/DockPhobia/Resources/Assets.xcassets/AppIcon.appiconset/DockPhobiaAppIcon.png?raw=true" title="dockphobia" alt="dockphobia icon" width="200" />
|
|
</p>
|
|
<p>
|
|
make your Dock scared of the mouse
|
|
<br/>
|
|
<a href="https://neon443.github.io">
|
|
made by neon443
|
|
</a>
|
|
</p>
|
|
<p>
|
|
<a href="https://github.com/neon443/DockPhobia/releases">
|
|
download
|
|
</a>
|
|
</p>
|
|
<br/>
|
|
</div>
|
|
|
|
Have you ever wanted to use your Dock?
|
|
well now you cant
|
|
|
|
## This masterclass of an app does the following:
|
|
- tracks your mouse
|
|
- calculates the size of your screen & Dock
|
|
- when your cursor is on the Dock (+ extra 5% of screen), the Dock moves to a different side of the screen
|
|
- it also figures out the furthest it can be, for example if your cursor is at the top left quarter of the screen and near the Dock on the left, the dock moves to the bottom as that is the furthest, etc
|
|
|
|
## Quick start Guide (Mac App)
|
|
- Go to [releases](https://github.com/neon443/DockPhobia/releases)
|
|
- Download the latest version
|
|
- That's it!
|
|
|
|
## Contributing
|
|
PRs welcome, as long as you use tabs instead of spaces lol
|
|
|
|
## Quick start Guide (Python version)
|
|
Dont use this, still here purely for archival purposes, use the native Mac app instead.
|
|
```
|
|
xcode-select --install
|
|
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
|
|
brew install python3
|
|
```
|
|
```
|
|
git clone https://github.com/neon443/DockPhobia
|
|
cd DockPhobia/DockPhobiaPy
|
|
python3 -m venv venv
|
|
. venv/bin/activate
|
|
pip3 install -r requirements.txt
|
|
python3 main.py
|
|
```
|