Giter VIP home page Giter VIP logo

sxcs's Introduction

sxcs - Simple X Color Sniper

CodeBerg

Color picker and magnifier for X11.

preview

Usage

Button1 will select and print the color to stdout, the output is TAB separated hex, rgb, and hsl. Scroll Up/Down will zoom in and out. Any other mouse button will quit sxcs.

Output format can be chosen via cli argument. Zoom/magnification can be disabled via --mag-none.

$ sxcs --rgb --mag-none
rgb:	22 158 111

Copying the hex output to clipboard (using xclip):

$ sxcs -o --hex | cut -f 2 | xclip -in -selection clipboard

Color output can be disabled via --color-none, which more or less turns sxcs into a magnifier.

The magnifying window can be customized via using --mag-filters <filter-list>, where filter-list is a comma separated list of filters to apply. The filter-list will be applied in order, as given by the user.

The default filter list is the following:

$ sxcs --mag-filters "grid,circle,xhair"

Following are a couple more examples:

$ sxcs --mag-filters "square,xhair"

$ sxcs --mag-filters "grid,xhair"

Consult the manpage to see a list of all available cli arguments and filters:

$ man sxcs

Dependencies

  • Build Dependencies:

    • C89 compiler
    • Necessary library headers (on some distros you need to install *-dev packages to get header files)
  • Runtime Dependencies:

    • Xlib
    • Xcursor
    • POSIX 2001 C standard library

Building

  • Simple build:
$ cc -o sxcs sxcs.c -O3 -s -l X11 -l Xcursor

The above command should also work with gcc, clang or any other C compiler that has a POSIX compatible cli interface.

  • Debug build with gcc (also works with clang):
$ gcc -o sxcs sxcs.c -std=c89 -Wall -Wextra -Wpedantic \
    -g3 -D DEBUG -O0 -fsanitize=address,undefined -l X11 -l Xcursor
  • If you're editing the code, you may optionally run some static analysis:
$ make -f etc/analyze.mk

Installing

Just copy the executable and the man-page to the appropriate location:

# cp sxcs /usr/local/bin
# cp sxcs.1 /usr/local/share/man/man1

Or using the install utility:

# install -Dm755 sxcs /usr/local/bin/sxcs
# install -Dm644 sxcs.1 /usr/local/share/man/man1/sxcs.1

A zsh completion script is also available for zsh users under etc/zsh-completion.

Limitation

Cursor size bigger than 255x255 causes visual glitches, it seems to be a X11/Xcursor limitation.

One alternative would be using XComposite and using an override_redirect window. Which is what was being done (incorrectly) before commit 33490dd. I suspect doing this correctly would require way too much code, probably above my self imposed limit of ~800 SLoC for this project.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.