2022-09-02 18:06:00 +02:00
|
|
|
# hyprpicker
|
|
|
|
|
|
|
|
|
|
A wlroots-compatible Wayland color picker that does not suck.
|
|
|
|
|
|
2022-09-02 21:36:28 +02:00
|
|
|

|
2022-09-02 18:07:53 +02:00
|
|
|
|
2022-09-02 18:06:00 +02:00
|
|
|
# Usage
|
|
|
|
|
|
2022-09-02 10:42:07 -07:00
|
|
|
Launch it. Click. That's it.
|
2022-09-02 18:06:00 +02:00
|
|
|
|
2022-09-02 20:44:42 +02:00
|
|
|
## Options
|
|
|
|
|
|
2024-09-30 22:36:50 +01:00
|
|
|
See `hyprpicker --help`.
|
2023-04-27 14:46:16 +01:00
|
|
|
|
2025-05-17 18:00:02 +05:30
|
|
|
# Installation
|
2022-09-02 18:06:00 +02:00
|
|
|
|
2022-09-03 15:58:42 +02:00
|
|
|
## Arch
|
2024-03-12 22:06:09 +02:00
|
|
|
|
2025-05-17 18:00:02 +05:30
|
|
|
`sudo pacman -S hyprpicker`
|
2022-09-02 10:42:07 -07:00
|
|
|
|
2025-05-17 18:00:02 +05:30
|
|
|
## Manual (Building)
|
2022-09-02 18:06:00 +02:00
|
|
|
|
2024-07-17 17:08:10 +02:00
|
|
|
Install dependencies:
|
|
|
|
|
- cmake
|
|
|
|
|
- pkg-config
|
|
|
|
|
- pango
|
|
|
|
|
- cairo
|
|
|
|
|
- wayland
|
|
|
|
|
- wayland-protocols
|
|
|
|
|
- hyprutils
|
|
|
|
|
- xkbcommon
|
2024-07-01 14:18:59 +02:00
|
|
|
|
2024-03-12 22:06:09 +02:00
|
|
|
Building is done via CMake:
|
|
|
|
|
|
|
|
|
|
```sh
|
|
|
|
|
cmake --no-warn-unused-cli -DCMAKE_BUILD_TYPE:STRING=Release -DCMAKE_INSTALL_PREFIX:PATH=/usr -S . -B ./build
|
2024-05-14 16:13:12 +01:00
|
|
|
cmake --build ./build --config Release --target hyprpicker -j`nproc 2>/dev/null || getconf _NPROCESSORS_CONF`
|
2024-03-12 22:06:09 +02:00
|
|
|
```
|
|
|
|
|
|
|
|
|
|
Install with:
|
|
|
|
|
|
|
|
|
|
```sh
|
|
|
|
|
cmake --install ./build
|
|
|
|
|
```
|
2022-09-02 18:15:51 +02:00
|
|
|
|
|
|
|
|
# Caveats
|
|
|
|
|
|
|
|
|
|
"Freezes" your displays when picking the color.
|
2025-06-10 19:39:45 +03:00
|
|
|
|