diff options
| author | Nathan Reiner <nathan@nathanreiner.xyz> | 2023-04-11 09:17:22 +0200 |
|---|---|---|
| committer | Nathan Reiner <nathan@nathanreiner.xyz> | 2023-04-11 09:17:22 +0200 |
| commit | 76f94403f0ec5b60bbd5c14e9761e0fec3e9b067 (patch) | |
| tree | 7c493a25c0554f6cf6434d31485d58321b6cd020 | |
| parent | b9b5d5ae2be24d41f3cbd71b9b30338afdb132ee (diff) | |
add readme
| -rw-r--r-- | README.md | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/README.md b/README.md new file mode 100644 index 0000000..ebd6454 --- /dev/null +++ b/README.md @@ -0,0 +1,26 @@ +# swt - simple wayland terminal + +This is a fork of st and is a simple terminal emulator for Wayland which sucks less. + +## Requirements +In order to build swt you need the wayland-client and -protocols, freetype2 and xkbcommon. + +## Installation +Edit config.mk to match your local setup (swt is installed into +the /usr/local namespace by default). + +Afterwards enter the following command to build and install swt +(if necessary as root): +```sh +make clean install +``` + +## Running swt +If you did not install swt with make clean install you must compile the swt terminfo entry with the following command: +``` +tic -sx swt.info +``` + +## Credits +Shout-outs to the suckless team for the implementation of st on the X side. +For more information see (https://suckless.org). |