mirror of
https://codeberg.org/unspeaker/tek.git
synced 2025-12-06 19:56:42 +01:00
78 lines
2.6 KiB
Markdown
78 lines
2.6 KiB
Markdown
# tek [](https://nogithub.codeberg.page)
|
|
|
|
a music making program for [24-bit unicode terminals](https://sw.kovidgoyal.net/kitty/).
|
|
|
|
written in [rust](https://www.rust-lang.org/)
|
|
with [ratatui](https://ratatui.rs/) on [crossterm](https://docs.rs/crossterm/latest/crossterm/)
|
|
for [jack](https://jackaudio.org/) and [pipewire](https://www.pipewire.org/).
|
|
|
|
**tek** is available as [source](https://codeberg.org/unspeaker/tek#building-from-source),
|
|
[statically linked binaries](https://codeberg.org/unspeaker/tek/releases), and on the
|
|
[aur](https://codeberg.org/unspeaker/tek#arch-linux).
|
|
|
|
author is reachable via [**mastodon** `@unspeaker@mastodon.social`](https://mastodon.social/@unspeaker)
|
|
or [**matrix** `@unspeaker:matrix.org`](https://matrix.to/#/@unspeaker:matrix.org)
|
|
|
|
| | |
|
|
|-|-|
|
|
||
|
|
|
|
## usage
|
|
|
|
* **requirements:** linux; jack or pipewire; 24-bit terminal (i use `kitty`)
|
|
* **recommended:** midi controller; samples in wav format; lv2 plugins.
|
|
|
|
## keymaps
|
|
|
|
* [x] `arrows/wasd`: navigate
|
|
* [x] `tab`: toggle editor
|
|
* [x] `enter`: write note
|
|
* [x] `z`: unlock zoom
|
|
* [x] `-` / `=`: zoom midi editor
|
|
* [x] space: play/pause
|
|
* [ ] esc: options
|
|
* [ ] f1: help/command list
|
|
* [ ] f2: rename
|
|
* [ ] f6: save
|
|
* [ ] f9: load
|
|
|
|
## installation
|
|
|
|
### from distro repositories
|
|
|
|
[](https://repology.org/project/tek/versions)
|
|
|
|
#### arch linux
|
|
|
|
[tek](https://codeberg.org/unspeaker/tek) is available as a package in the AUR.
|
|
you can install it using an AUR helper (e.g. `paru`):
|
|
|
|
```sh
|
|
paru -S tek
|
|
```
|
|
|
|
### building from source
|
|
|
|
requires docker
|
|
|
|
```
|
|
git clone https://codeberg.org/unspeaker/tek # obtain source
|
|
cd tek # enter directory
|
|
cat bin/release-glibc.sh # preview build script
|
|
sudo bin/release-glibc.sh # run build script
|
|
sudo cp bin/tek /usr/local/bin/tek # install
|
|
```
|
|
|
|
## design goals
|
|
|
|
* inspired by trackers and hardware sequencers,
|
|
but with the critical feature that 90s samplers lack:
|
|
able to **resample, i.e. record while playing!**
|
|
|
|
* **pop-up scratchpad for musical ideas.**
|
|
low resource consumption, can stay open in background.
|
|
but flexible enough to allow expanding on compositions
|
|
|
|
* **human- and machine- readable project format**
|
|
simple representation for project data
|
|
enable scripting and remapping.
|