This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from __future__ import annotations | |
import argparse | |
import json | |
import subprocess | |
from typing import Callable, Iterable, Iterator, TypedDict | |
class Workspace(TypedDict): | |
name: str |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
### Constants | |
# the index of the first layout in the primary layer | |
PRIMARY_LAYER=0 | |
# the index of the first and only layout in the secondary layer | |
SECONDARY_LAYER=2 | |
### Functions |
OlderNewer