12 releases

0.2.1 Dec 17, 2023
0.2.0 Nov 5, 2023
0.1.10 Nov 5, 2023
0.1.8 Sep 6, 2022
0.1.4 Mar 21, 2022

#1122 in Filesystem

Download history 357/week @ 2024-01-05 252/week @ 2024-01-12 172/week @ 2024-01-19 208/week @ 2024-01-26 249/week @ 2024-02-02 201/week @ 2024-02-09 196/week @ 2024-02-16 190/week @ 2024-02-23 247/week @ 2024-03-01 134/week @ 2024-03-08 160/week @ 2024-03-15 224/week @ 2024-03-22 252/week @ 2024-03-29 285/week @ 2024-04-05 239/week @ 2024-04-12 168/week @ 2024-04-19

971 downloads per month
Used in 2 crates

BSD-3-Clause

98KB
2K SLoC

LeftHK

LeftHK - A hotkey daemon written in Rust

THIS IS BETA SOFTWARE

The configuration file should be created in ~/.config/lefthk/ and called config.ron. If the configuration file is not created the program will exit. Example config:

#![enable(implicit_some)]
Config(
    default_modifier: ["Mod4", "Shift"],
    keybinds: [
        Keybind(
            command: Execute("st -e htop"),
            key: Key("x"),
        ),
        Keybind(
            command: Executes(["st -e htop", "st -e bpytop"]),
            key: Keys(["x", "m"]),
        ),
        Keybind(
            command: Chord([
                Keybind(
                    command: Execute("st -e htop"),
                    modifier: ["Mod4"],
                    key: Key("c"),
                ),
            ]),
            modifier: ["Mod4"],
            key: Key("c"),
        ),
    ]
)

Reload, Kill, Chord, and ExitChord are the only internal commands. To run a normal command you need to call Execute or Executes, with the added value or values of the command. A chord can accept any amount and type of extra keybinds, which when started blocks previous keybinds and will exit once a sub-keybind is executed. A Chord will take the ExitChord set within it first, then if not set it will take the ExitChord from its parent (e.g. a Chord within a Chord will take the ExitChord from the previous Chord). There is a pipe which receives commands through $XDG_RUNTIME_DIR/lefthk/commands.pipe, currently only accepts Reload and Kill.

Dependencies

~6–18MB
~199K SLoC