Extensible Guile bindings for SwayWM
Find a file
2024-06-18 21:00:31 +03:00
modules add auto-reload module 2024-06-18 20:45:41 +03:00
sjson init commit 2024-06-15 10:57:11 +03:00
swayipc improve documentation 2024-06-18 19:05:39 +03:00
behavior.scm fix sway output position 2024-06-17 17:01:48 +03:00
commander improve documentation 2024-06-18 19:05:39 +03:00
config fix configuring sway colors from dispatcher 2024-06-15 20:15:24 +03:00
example.scm add an easier example to quickly test the functionality 2024-06-18 19:05:48 +03:00
init.scm add auto-reload module 2024-06-18 20:45:41 +03:00
keybindings.scm improve documentation 2024-06-18 19:05:39 +03:00
README.org add exec function to readme 2024-06-18 21:00:31 +03:00

SWAYIPC

I am an Emacs user and previously used StumpWM, an X11 window manager written in Common Lisp. I believe window managers should be scriptable because the level of workflow customization required by users often exceeds what can be achieved with simple configuration parameters (see my workflow below for a clearer understanding of why this is the case). Unfortunately, Sway/i3 lacks a straightforward programmable interface for customization. This project provides complete control over Sway/i3 using Guile!

Why Sway?

I had to migrate to Wayland at some point. Being a big fan of StumpWM, I tried to replicate a similar environment in one of the Wayland window managers. I made some progress with hyprland using a set of Guile bindings I developed called hypripc, but I found that Hyprland isn't as stable as Sway.

Quick Test

After cloning this repository, you can immediately test it using the provided example.scm file, which demonstrates some of the features available in this package.

The example.scm file will:

  • Print the current focused workspace
  • Add a keybinding (Super+t) that launches Alacritty
  • Print a message when a workspace change event occurs
guile example.scm

Quick Overview

Query Sway

You can retrieve information about Sway, such as list of available workspaces or outputs. The response will be in Guile records, which you can easily manipulate! (refer to swayipc/info.scm)

;; get focused workspace from a list of workspaces
(define (focused-workspace-name workspaces)
  (cond
    ((null? workspaces) #f)
    ((equal? #t (sway-workspace-focused (car workspaces)))
    (sway-workspace-name (car workspaces)))
    (else (focused-workspace-name (cdr workspaces)))))

(format #t "output record from function #sway-get-workspaces:\n ~a\n"
        (sway-get-workspaces))

(format #t "current focused workspace is [~a]\n"
        (focused-workspace-name (sway-get-workspaces)))

Assign Keybindings

You can assign keybindings that execute Guile code! Obviously, running shell commands is straightforward since you're operating within Guile. Additionally, you have full access to Sway/i3 specific commands (refer to swayipc/dispatcher.scm).

  ;; normal sway keybindings (limited and can't easily execute guile code)
  (sway-bindsym "Mod4+t" "exec alacritty")

  ;; general.scm interface for sway keybindings
  ;; this uses sway-bindsym behind the scenes, but provides a much
  ;; user friendly interface to create complex keybindings structure
  ;; it also allows you to execute guile expressions on trigger.
  ;; requires configuring commander-path, refer to the FIXME note in keybindings.scm for more details.
  ;; refer to modules/general.scm for more about how this is done.
  ;; define leader keymap

  (define (exec command)
    "execute given shell command"
    (format #t "running: ~a\n" command)
    (system command))

  (general-define-keys
   #:prefix "s-Space" #:wk "Leader"
   `("o" (exec "rofi -show drun"))
   `("C-g" (sway-mode "default") #:wk "abort")

   ;; rofi keymap
   `(general-define-keys
     #:prefix "r" #:wk "Rofi"
     ("p" (exec "~/.config/rofi/bin/password-manager"))
     ("m" (exec "rofi-mount"))
     ("u" (exec "rofi-unmount"))
     ("w" (exec ".config/rofi/bin/wifi"))
     ("b" (exec "~/.config/rofi/bin/bluetooth"))
     ("f" (exec "~/.config/rofi/bin/finder"))
     ("k" (exec "~/.config/rofi/bin/keyboard-layout"))
     ("P" (exec "~/.config/rofi/bin/powermenu"))
     ("s" (exec "~/.config/rofi/bin/sound-input"))
     ("S" (exec "~/.config/rofi/bin/sound-output")))

   ;; window management
   `(general-define-keys
     #:prefix "w" #:wk "Window"
     ("v" (sway-layout SWAY-LAYOUT-SPLITV))
     ("h" (sway-layout SWAY-LAYOUT-SPLITH))
     ("f" (sway-fullscreen SWAY-FULLSCREEN-TOGGLE))
     ("d" (sway-layout SWAY-LAYOUT-DEFAULT))
     ("t" (sway-layout SWAY-LAYOUT-TABBED))))

Subscribe to Events

Certain scenarios necessitate subscribing to events. One example from my workflow described below requires this capability. With swayipc, you have the ability to listen for events and execute actions in response.

  ;; subscribe to events
  (define (workspace-changed workspace-event)
    (let* ((current-tree (sway-workspace-event-current workspace-event))
           (workspace (sway-tree-name current-tree)))

      (format #t "workspace changed to ~a!\n" workspace)))

  (add-hook! sway-workspace-hook workspace-changed)

Note: To receive any events, you must subscribe to them. You can subscribe to individual events that interest you or to all avilable events. Without subscribing and running the event listener in your init.scm, your hooks will not receive any events.

The event listener thread is a Unix socket that waits for sway events. This must be executed, preferably as the last expression in your init.scm file, because thread-join will block execution. This blocking is necessary to keep the listener active and prevent the script from exiting.

  ;; subscribe to all events
  (sway-subscribe-all)

  (start-event-listener-thread)
  (thread-join! LISTENER-THREAD)

Documentation (WIP)

Most of the source code is documented. You can refer to init.scm for a configuration sample. Here are some important points to consider before hacking your Sway setup:

Quick Start

Clone this repository to your ~/.config/sway

Project Structure

File Description
init.scm Main entry point for configuring Sway using Guile.
behavior.scm Loaded by init.scm; modifies parameters and behavior of Sway.
keybindings.scm Loaded by init.scm; adds custom keybindings to Sway.
commander Guile script to send commands to swayipc (facilitates keybinding functionality).
config Sway configuration file; typically used to invoke init.scm.
sjson A patched version of guile-json; planned to be a separate dependency in the future (not embedded).
modules/ Directory containing modules for extending Sway using swayipc.
modules/auto-reload.scm Watcher to automatically reload Sway when Guile files change.
modules/general.scm Inspired by Emacs general package; provides an easy interface for assigning keybindings.
modules/kbd.scm Translates Emacs-like keybindings to be compatible with Sway.
modules/which-key.scm TODO: Inspired by Emacs which-key package; enhances keybinding discovery and management.
modules/workspace-grid.scm Configures workspaces in a grid and enables movement between them in specified directions (see workflow).
modules/workspace-groups.scm Spans/synchronizes workspaces across monitors (see workflow).
swayipc/ Directory containing the core code for swayipc, facilitating communication with Sway.
swayipc/connection Establishes IPC connection for handling events and commands with Sway.
swayipc/dispatcher Provides Guile functions for all available Sway commands.
swayipc/events Provides Gulie Hooks for all available Sway events.
swayipc/info Provides Guile functions for querying Sway's current state and information.
swayipc/records Provides Guile records representing Sway's data structures.

1- You can start your swayipc configurations from the REPL, terminal, or a configuration file. Remember: for debugging or displaying output, it's best to run Guile from the REPL or terminal. You can also pipe the output to a file if you desire.

# from sway config file
exec_always "~/.config/sway/init.scm"

2- I plan to publish a module for swayipc, it's currently not hosted anywhere. You'll need to add the module to your load path. Additionally, swayipc includes another patched Guile library called guile-json, which is embedded for now. In the future, this will be included as a separate dependency rather than embedded.

(add-to-load-path
 (dirname (or (current-filename)
              (string-append (getenv "HOME") "/.config/sway/init.scm"))))

Workflow

Workspace Grid

I arrange my workspaces in a grid format. Typically, workspaces are laid out horizontally. With nine workspaces, navigating from workspace 1 to 9 using only horizontal directions can be cumbersome. Assigning a key to each workspace would be efficient but would clutter default mode keybindings. Some might create another mode or submap, but pressing multiple keys to move between workspaces becomes inefficient . I find the optimal solution is organizing workspaces in a grid format, enabling both horizontal and vertical navigation. Currently, I use a 3x3 grid with wraparound navigation.

Horizontal vs Grid 9 workspaces

Horizontal

  1 2 3 4 5 6 7 8 9

Grid (3x3)

  1 2 3
  4 5 6
  7 8 9

Example navigation in a grid (cs#idx is current workspace):

  cs#1> go right
  cs#2> go down
  cs#5> go down
  cs#8> go down (notice wraparound behavior)
  cs#2> go right
  cs#3> ..

Note: this behavior is achieved via modules/workspace-grid.scm

Workspace Groups

My workspaces function as groups or tasks that span across all three monitors in my setup. For example, if I switch to my communication workspace on one monitor, I want all monitors to switch to their respective communication workspaces. This means if I have WhatsApp on monitor #1, Discord on monitor #2, and IRC on monitor #3, they should all align to their designated communication workspace when I switch tasks.

Similarly, this setup extends to projects I work on. If I focus on my dotfiles, I want all monitors to switch to the workspace dedicated to that task. The same principle applies to game development or any other specific task or project workspace I engage with.

Note: this behavior is achieved via modules/workspace-groups.scm