darvelo / chunkwm

Tiling window manager for MacOS based on plugin architecture

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Description Build Status

chunkwm is a tiling window manager for MacOS that uses a plugin architecture, successor to kwm

click here to view current project status

Development is happening on and primarily for MacOS Sierra (10.12.3).

Older versions may or may not be compatible and will not be officially supported.

chunkwm_demo

Configuration

chunkwm itself has a very sparse configuration file, located at $HOME/.chunkwmrc.

a symlink can be made for people who wish to keep the actual file in some other location.

the config file is simply a bash script that specifies which plugins to load and how they are loaded.

plugins can be loaded and unloaded without having to restart chunkwm.

see sample config.

Development

requires Xcode-8 command line tools.

build chunkwm:

# chunkwm's makefile is in the project directory
cd <project>

make            # debug build
make install    # optimized build

the binary is placed in <project>/bin.

build chunkc:

# chunkc is a client to interact with **chunkwm** and **plugins**.
cd <project>/src/chunkc

make            # optimized build

the binary is placed in <project>/src/chunkc/bin.

build plugins:

# every plugin provides its own makefile
cd <project>/src/plugins/<plugin>

make            # debug build
make install    # optimized build

the plugin binaries are placed in <project>/plugins.

About

Tiling window manager for MacOS based on plugin architecture

License:MIT License


Languages

Language:C++ 81.9%Language:Objective-C++ 9.1%Language:C 7.3%Language:Makefile 1.2%Language:Shell 0.6%