• Stars
    star
    139
  • Rank 261,480 (Top 6 %)
  • Language
    Python
  • License
    GNU Lesser Genera...
  • Created almost 2 years ago
  • Updated about 2 months ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

JigsawWM is a dynamic window manager for Windows10/11 just like the suckless dwm for the X

JigsawWM

JigsawWM is a free and open-source project that aims to increase your productivity by offering a set of automation facilities, including the jmk module as an AHK alternative, a Tiling Window Manager to free you from managing windows manually and the Daemon to support any customization you may have in mind.

What Can I Do?

Service: jmk

Software-defined keyboard/mouse automation which mimics the QMK as an alternative to AutoHotkey

  1. My pinky is hurting - the dual-role key You should try using F as the Control key, the following code would turn it into a dual-role key: it acts as the LControl when held, F when tapped:
        Vk.F: JmkTapHold(tap=Vk.F, hold=Vk.LCONTROL),

What if I need to enter a bunch of F? Tap it and then hold it down within quick_tap_term(default 120ms)

  1. I use F12 a lot, can I tap it without looking at the keyboard? - the layers Sure, the problem with modern keyboards is they are enormous, 104 or even more. It is inconvenient when the keys you use frequently are far away from the Home Row (a, s, d, f, ...). With layer you may "move" the needed key into your reach:
layers = [
    { # layer 0
        # activate layer 3 when held
        Vk.T: JmkTapHold(tap=Vk.T, hold=3),
    },
    { # layer 1
      ...
    },
    { # layer 2
      ...
    },
    { # layer 3
        Vk.Z: JmkKey(Vk.F1),
    }

Now, hold the key T and press Z, you get F1

  1. I would like to press Win+Q to close the active Window. hotkey at your service, furthermore, you may press Win+N to minimize or Win+M to maximize the active window
hotkeys = [
    ("Win+q", "LAlt+F4"),
    # Win+n to minimize active window
    ([Vk.WIN, Vk.N], minimize_active_window),
    # Win+m to maximize active window
    ([Vk.WIN, Vk.M], toggle_maximize_active_window),
]
  1. For browsing smoothingly with the Mouse, try the following setup
  • Mouse Forward + Left Button: send Ctrl + w (close tab in Chrome and other apps)
  • Mouse Forward + Wheel Up: send Ctrl + PageUp (previous tab in Chrome and other apps)
  • Mouse Forward + Wheel Down: send Ctrl + PageDown (next tab in Chrome and other apps)
  1. Check out the examples/jmk.pyw to find out more

Service: tiling window manager

The WindowManager follows the suckless philosophy and works just like the dwm. All windows are treated as an Ordered List, they will be moved into places based on their Order and specified Layout automatically, save you from arranging them manually.

Demo

2023-01-01_18-56-36.mp4

Default keybindings

  • Win + j: activate next window and move the cursor to its center
  • Win + k: activate the previous window and move the cursor to its center
  • Win + Shift + j: move the active window down in the list (swap with the next one)
  • Win + Shift + k: move the active window up in the list (swap with the previous one)
  • Win + /: swap the active window with the first window in the list or the second window if it is the first window already
  • Win + Space: next theme, Theme consists of Layout, Background, gap, etc. to determine how windows should be placed
  • Win + i: activate the first window of the next monitor if any or move cursor only
  • Win + u: activate the first window of the previous monitor if any or move cursor only
  • Win + Shift + i: move the active window to the next monitor
  • Win + Shift + u: move the active window to the previous monitor

Service: run console program in the background

Sometimes, software that should be run as a system service may not offer an installer to do the job, worse, it may ship as a Console Program. Nobody wants a Console Window stays on their desktops, and yes, I'm talking about SyncThing. I love it but I would like it to run in the background quietly.

class SyncthingService(daemon.ProcessService):
    name = "syncthing"
    args = [
        r"C:\Programs\syncthing-windows-amd64-v1.23.2\syncthing.exe",
        "-no-browser",
        "-no-restart",
        "-no-upgrade",
    ]
    log_path = r"C:\Programs\syncthing-windows-amd64-v1.23.2\syncthing.log"


daemon.register(SyncthingService)

Task: automate your workflows with tasks

  1. I would like to open a folder inside the Chromium Bookmark on the first boot-up every day.
class DailyRoutine(daemon.Task):
    name = "daily routine"

    def run(self):
        chrome.open_fav_folder("bookmark_bar", "daily")

    def condition(self):
        # trigger only once on daily-basis
        return smartstart.daily_once("daily websites")


daemon.register(DailyRoutine)
  1. I would like to launch my IM / Mail Client on workdays
class WorkdayRoutine(daemon.Task):
    name = "workday routine"

    def __init__(self) -> None:
        super().__init__()
        self.holiday_book = ChinaHolidayBook()

    def run(self):
        smartstart.start_if_not_running(
            r"C:\Users\Klesh\AppData\Local\Feishu\Feishu.exe"
        )
        smartstart.start_if_not_running(
            r"C:\Program Files\Mozilla Thunderbird\thunderbird.exe"
        )

    def condition(self):
        return self.holiday_book.is_workhour(extend=timedelta(hours=2))


daemon.register(WorkdayRoutine)

Installation

Tested on Windows 11 Build 22000 and Python 3.11.1. Should work on Windows 10 and Python 3.8

Install from pypi

pip install jigsawwm

Install from Github repo

pip install git+https://github.com/klesh/JigsawWM.git

Quick Start

Step 1: Create a .pyw file as your "Configuration"

Choose services you like from the examples folder, you may use any of the following directly.

Step 2: Launch your .pyw file and manage your services

Double-click the .pyw file and a tray icon should appear, right-click the icon to manage your services. image

Step 3: Launch at startup

  1. Open your Startup folder by pressing Win + r to activate the Run dialog and type in shell:startup, a FileExplorer should pop up.
  2. Create a shortcut to your .pyw file. Done!

Document

Read the Docs

More Repositories

1

fu

fu stands for File to URL, a utility design to help you upload images/files and produce Markdown/HTML snippets with couple of clicks.
C++
409
star
2

cnodejs-swift

CNode.js app written in Swift for iOS
Swift
26
star
3

pskeeb

Portal Split Keyboard with trackpoint and rotary encoder support
23
star
4

nvim-runscript

Neovim users, you may not need Postman
Shell
20
star
5

ergodone-3d-printing-case

A 3D printing case for ergodone keyboard
18
star
6

dactyl-manuform-micro

Ergonomic split keyboard modified from Dactyl-Manuform-Mini
Clojure
16
star
7

dict.sh

Translate with style
Shell
10
star
8

kaptcha

simple 6 digit captcha image middleware for express, modified from captcha middleware
JavaScript
8
star
9

libqcurl

Using cUrl easily on Qt
C++
6
star
10

f360-split-keyboard-case-generator

3d print 63 keys handwire keyboard base on default-60 layout
Python
5
star
11

qt-phash

pHash implementation on Qt with no other dependency.
C++
4
star
12

emmo-model

flexible lightweight model manager, for generating sql script/validation/create/update/findOrCreate etc...
JavaScript
4
star
13

klesh_swfupload

swfupload plugin for rails, makes your swfupload integration most easily
JavaScript
3
star
14

dotfiles

Shell
3
star
15

density-trie

Trie tree implementation with keywords density calcuation functionality
JavaScript
3
star
16

dwcli

CLI tool of digital-watermarking package
JavaScript
2
star
17

ks63

A handwired 63 keys split keyboard compatible with Default 60% layout. Let you keep your magic power while muggles can still use it as an ordinary keyboard
C
1
star
18

klesh.github.io

HTML
1
star
19

mailcalaid

A Python library to provide aid to accomplish tasks related to mail and calendar.
Python
1
star