Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | add ioctl wrappers for KDGETLED / KDSETLED | Philipp Gesang | 2021-12-08 | 1 | -5/+119 |
| | |||||
* | be more specific about what “list” does | Philipp Gesang | 2021-12-08 | 1 | -1/+1 |
| | |||||
* | misc: add nix derivation | Philipp Gesang | 2021-11-25 | 3 | -1/+76 |
| | |||||
* | move archlinux stuff to subdir | Philipp Gesang | 2021-11-25 | 5 | -0/+0 |
| | |||||
* | move base64 handling out of Palette | Philipp Gesang | 2021-11-25 | 2 | -25/+26 |
| | | | | | Try and not encumber the lower level types with more dependencies than needed. | ||||
* | don’t panic!() on open(2) failure | Philipp Gesang | 2021-11-24 | 1 | -10/+10 |
| | |||||
* | add base64 input to ‘dump’ | Philipp Gesang | 2021-11-24 | 1 | -7/+23 |
| | |||||
* | add base64 input for ‘set’ | Philipp Gesang | 2021-11-24 | 2 | -0/+45 |
| | |||||
* | add base64 output for ‘get’ | Philipp Gesang | 2021-11-24 | 3 | -6/+25 |
| | |||||
* | optionally clear after each fade step | Philipp Gesang | 2021-11-23 | 2 | -6/+27 |
| | |||||
* | implement fading | Philipp Gesang | 2021-11-23 | 2 | -3/+195 |
| | | | | vtcol fade --ms 1000 --frequency 10 --to solarized & dmesg | ||||
* | get rid of useless lifetimes | Philipp Gesang | 2021-11-22 | 1 | -5/+5 |
| | |||||
* | switch RawPalette to integer representation | Philipp Gesang | 2021-11-16 | 2 | -51/+96 |
| | | | | | Introducing a simple type for RGB colors. That awkward string representation for RawPalette got unwieldy quick. | ||||
* | add KDGKBTYPE wrapper | Philipp Gesang | 2021-11-15 | 1 | -8/+14 |
| | |||||
* | namespace ioctl related symbols | Philipp Gesang | 2021-11-15 | 1 | -45/+53 |
| | |||||
* | move console handling into lib | Philipp Gesang | 2021-11-15 | 2 | -104/+162 |
| | | | | | All operations are now exposed through wrappers that are member functions of ``vtcol::Console``. | ||||
* | use idiomatic syscall error wrappers | Philipp Gesang | 2021-11-15 | 1 | -24/+48 |
| | | | | | A simplified version of the function used in std which aren’t made public. | ||||
* | turn Fd into proper wrapper | Philipp Gesang | 2021-11-15 | 2 | -21/+39 |
| | |||||
* | drop bespoke ioctl() wrapper | Philipp Gesang | 2021-11-15 | 1 | -16/+3 |
| | |||||
* | decontaminate library from clap and anyhow deps | Philipp Gesang | 2021-11-15 | 2 | -12/+28 |
| | |||||
* | lib: split out library | Philipp Gesang | 2021-11-15 | 3 | -533/+580 |
| | | | | | | | Not really a satisfactorily clean split as of yet but it’s a start. Error types have been changed from anyhow to io::Error in ``lib.rs`` so as to not force an error handling crate on downstream users. | ||||
* | add rustdoc to doc recipe | Philipp Gesang | 2021-11-12 | 1 | -1/+7 |
| | |||||
* | make rustdoc shut up about snippets | Philipp Gesang | 2021-11-12 | 1 | -0/+1 |
| | |||||
* | bring “dump” out put in line with scheme format | Philipp Gesang | 2021-11-12 | 1 | -24/+36 |
| | | | | | | | This revamps the output in a way that allows feeding the result back into vtcol: $ vtcol dump solarized |vtcol set - | ||||
* | fix argument handling for “dump” subcommand | Philipp Gesang | 2021-11-11 | 1 | -2/+2 |
| | | | | D’oh! | ||||
* | add build recipe for binary | Philipp Gesang | 2021-11-11 | 1 | -5/+14 |
| | |||||
* | fill in manpage | Philipp Gesang | 2021-11-11 | 1 | -11/+152 |
| | |||||
* | add built instructions for manpage | Philipp Gesang | 2021-11-11 | 3 | -1/+26 |
| | |||||
* | avoid hard coding builtin names | Philipp Gesang | 2021-11-11 | 2 | -48/+104 |
| | |||||
* | add green monochrome theme (phosphor) | Philipp Gesang | 2021-11-10 | 1 | -0/+21 |
| | |||||
* | add toggle subcommand | Philipp Gesang | 2021-11-10 | 3 | -1/+54 |
| | |||||
* | update readme | Philipp Gesang | 2021-11-10 | 1 | -28/+27 |
| | |||||
* | bump version | Philipp Gesang | 2021-11-10 | 1 | -1/+1 |
| | |||||
* | stick to ascii | Philipp Gesang | 2021-11-10 | 1 | -4/+4 |
| | | | | We can’t count on Unicode in the Linux console. | ||||
* | implement subcommand get (GIO_CMAP) | Philipp Gesang | 2021-11-10 | 1 | -36/+89 |
| | | | | | Get the currently active color palette using ioctl(GIO_CMAP) and attempt to match it against the builtin schemes. | ||||
* | adopt a subcommand ui | Philipp Gesang | 2021-11-10 | 1 | -60/+90 |
| | | | | | | | | Regroup the cli arguments into subcommands: $ vtcol dump $SCHEME $ vtcol list $ vtcol set $SCHEME | ||||
* | use trait for deriving Color | Philipp Gesang | 2021-11-10 | 1 | -34/+36 |
| | |||||
* | add GIO_CMAP wrapper | Philipp Gesang | 2021-11-10 | 1 | -0/+16 |
| | | | | We should be able to get the currently active palette. | ||||
* | clean up struct Palette | Philipp Gesang | 2021-11-10 | 1 | -43/+43 |
| | |||||
* | turn Palette into newtype | Philipp Gesang | 2021-11-10 | 1 | -13/+10 |
| | |||||
* | rework error handling | Philipp Gesang | 2021-11-10 | 2 | -53/+103 |
| | | | | anyhow!() ftw. | ||||
* | remove interfering --help option | Philipp Gesang | 2021-11-10 | 1 | -7/+0 |
| | |||||
* | drop unused code from get_console_fd() | Philipp Gesang | 2021-11-10 | 1 | -22/+11 |
| | |||||
* | apply some clippy lints | Philipp Gesang | 2021-11-10 | 1 | -15/+12 |
| | |||||
* | fix overblown numeric handling | Philipp Gesang | 2021-11-10 | 1 | -12/+12 |
| | | | | The ergonomics of these changed quite a while back. | ||||
* | remove redundant lifetime | Philipp Gesang | 2021-11-10 | 1 | -1/+1 |
| | |||||
* | switch from lazy_static to atomics | Philipp Gesang | 2021-11-10 | 2 | -8/+4 |
| | | | | Yeah const fn! | ||||
* | deal with bitrot and archaic idioms | Philipp Gesang | 2021-11-10 | 1 | -94/+90 |
| | | | | Mostly adapting to match ergonomics. | ||||
* | remove gratuitous use of unsafe | Philipp Gesang | 2021-11-10 | 1 | -2/+2 |
| | |||||
* | switch from getopts to clap | Philipp Gesang | 2021-11-10 | 2 | -98/+88 |
| | | | | | In addition to the glaring lack of ergonomics the getopts crate doesn’t even build anymore. |