All Projects → yqrashawn → Gokurakujoudo

yqrashawn / Gokurakujoudo

Licence: gpl-3.0
config karabiner with ease

Programming Languages

clojure
4091 projects

Projects that are alternatives of or similar to Gokurakujoudo

Duckhunt
🎯 Prevent RubberDucky (or other keystroke injection) attacks
Stars: ✭ 386 (-16.09%)
Mutual labels:  keyboard
Annotated Webpack Config
This is the companion github repo for the "An Annotated webpack 4 Config for Frontend Web Development" article.
Stars: ✭ 425 (-7.61%)
Mutual labels:  config
Romplayer
AudioKit Sample Player (ROM Player) - EXS24, Sound Font, Wave Player
Stars: ✭ 445 (-3.26%)
Mutual labels:  keyboard
React Key Handler
React component to handle keyboard events 🔑
Stars: ✭ 386 (-16.09%)
Mutual labels:  keyboard
Conf For Surge Shadowrocket
Surge Shadowrocket conf
Stars: ✭ 405 (-11.96%)
Mutual labels:  config
Uitextfield Navigation
🏄‍♂️ UITextField-Navigation makes it easier to navigate between UITextFields and UITextViews
Stars: ✭ 436 (-5.22%)
Mutual labels:  keyboard
Ppstickerkeyboard
iOS 表情键盘
Stars: ✭ 377 (-18.04%)
Mutual labels:  keyboard
Koanf
Light weight, extensible configuration management library for Go. Built in support for JSON, TOML, YAML, env, command line, file, S3 etc. Alternative to viper.
Stars: ✭ 450 (-2.17%)
Mutual labels:  config
Awesome Dotfiles
Dotfiles for awesome people using the awesomewm linux environment
Stars: ✭ 409 (-11.09%)
Mutual labels:  config
Airframe
Essential Building Blocks for Scala
Stars: ✭ 442 (-3.91%)
Mutual labels:  config
Ucr
Universal Control Remapper [Alpha]
Stars: ✭ 399 (-13.26%)
Mutual labels:  keyboard
Pretzel
Pretzel is Mac desktop app that shows and find keyboard shortcuts based on your current app.
Stars: ✭ 405 (-11.96%)
Mutual labels:  keyboard
Keyboardkit
KeyboardKit is a Swift library that helps you create custom keyboard extensions for iOS and ipadOS.
Stars: ✭ 438 (-4.78%)
Mutual labels:  keyboard
Sharpkeys
SharpKeys is a utility that manages a Registry key that allows Windows to remap one key to any other key.
Stars: ✭ 4,402 (+856.96%)
Mutual labels:  keyboard
Luamacros
Stars: ✭ 444 (-3.48%)
Mutual labels:  keyboard
Centraldogma
Highly-available version-controlled service configuration repository based on Git, ZooKeeper and HTTP/2
Stars: ✭ 378 (-17.83%)
Mutual labels:  config
Izumi
Productivity-oriented collection of lightweight fancy stuff for Scala toolchain
Stars: ✭ 423 (-8.04%)
Mutual labels:  config
Keyboardvisualizer
Audio visualizer and effects engine for RGB keyboards, mice, and accessories using the OpenRGB SDK. Supports Windows, Linux, and MacOS. Issue tracker on GitLab (https://gitlab.com/CalcProgrammer1/KeyboardVisualizer)
Stars: ✭ 458 (-0.43%)
Mutual labels:  keyboard
Nohboard
A Keyboard Visualizer
Stars: ✭ 441 (-4.13%)
Mutual labels:  keyboard
React Native Keyboard Aware Scroll View
A ScrollView component that handles keyboard appearance and automatically scrolls to focused TextInput.
Stars: ✭ 4,540 (+886.96%)
Mutual labels:  keyboard

GokuRakuJoudo

img img

ExamplesTutorialTelegramGoku in the wild

  1. Intro
    1. Why use Goku?
    2. Install
    3. Usage
    4. Tutorial
    5. Note
    6. Changelog
    7. Dependencies
    8. Contributing

Intro

Goku is a tool that lets you manage your Karabiner configuration with ease.

Karabiner Elements uses JSON as its config file format. This leads to thousands of lines of JSON (sometimes over 20,000 lines), which makes it really hard to edit the config file and iterate on your keymap.

But fear not! Goku brings the edn format to the rescue.

Why use Goku?

Below are two Karabiner configuration snippets that map caps lock to an escape key.

karabiner.json

karabiner.edn

In practice this means that you can see multiple Karabiner rules on you screen as you edit your config with Goku. Which speeds up the iteration speed significantly as you can create new rules as little as few characters.

Install

brew install yqrashawn/goku/goku

Usage

Make sure you have a profile named "Default" in Karabiner's GUI tool. You can specify your own profile name using :profiles keyword.

img

Goku reads the karabiner.edn file which holds your Karabiner config. This file should be placed inside ~/.config/ directory on your Mac (you can start with example.edn). Starting from version 0.2.2, you can specify your config file path using the environment variable GOKU_EDN_CONFIG_FILE.

Goku provides two commands:

goku: Will update karabiner.json once. gokuw: Will keep watching your karabiner.edn and when it changes, it will update your karabiner.json configuration.

Run command brew services start goku to use it as a service (runs gokuw in background). When Goku is running as service, the logs are kept inside ~/Library/Logs/goku.log.

Use goku -h to learn more.

Tutorial

Read through the Tutorial about how you can write the configuration in Goku.

If there's any question or advice, just open an issue or join Karabiner Telegram group and ask your questions there.

Note

  • Using #_ to comment out rules like this will leave a null rule (see below) in karabiner.json, it won't cause any error.
    {
      "description" : null,
      "manipulators" : [ ]
    }

Changelog

Check CHANGELOG file.

Dependencies

watchexec for watching the edn config file.
joker for linting the edn config file.

Contributing

Use lein repl for developing.

Change Makefile.local.example's name to Makefile.local, change GRAALVM variable in the makefile to right path, run make local to test then generate goku binary file.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].