-
-
Notifications
You must be signed in to change notification settings - Fork 4.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
87004be
commit aebd17a
Showing
1 changed file
with
25 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
# colorpicker | ||
|
||
> A minimalist X11 colorpicker. | ||
> Any mouse gesture except left click will exit the program. | ||
> More information: <https://github.com/ym1234/colorpicker>. | ||
- Launch colorpicker and print the hexadecimal and RGB value of each clicked pixel to stdout: | ||
|
||
`colorpicker` | ||
|
||
- Only print the color of one clicked pixel and then exit: | ||
|
||
`colorpicker --one-shot` | ||
|
||
- Print the color of each clicked pixel and quit when a key is pressed: | ||
|
||
`colorpicker --quit-on-keypress` | ||
|
||
- Only print the RGB value: | ||
|
||
`colorpicker --rgb` | ||
|
||
- Only print the hexadecimal value: | ||
|
||
`colorpicker --hex` |