KeyboardDriven.jl

Julia package for making keyboard-driven programs
Author sjpeterson
Popularity
0 Stars
Updated Last
3 Years Ago
Started In
June 2021

KeyboardDriven.jl

Julia package for making keyboard-driven programs. Made for Linux, portability uncertain.

Linux Windows Coverage
Build Status Build status codecov.io

Example

#!/usr/bin/env julia

using KeyboardDriven

function main()
    keyboarddriven()
    while true
        c = getkeypress()
        println(string("You pressed: ", c))
        if c == ctrl | CharKey('d')
            break
        end
    end
end

main()

Used By Packages

No packages found.