old-st

[ARCHIVED] my build of st
git clone git://git.ckyln.com/~cem/old-st.git
Log | Files | Refs | README | LICENSE

commit cc6bc9b3cdc5d4d9902c140cb9c154ffa353fbd8
parent 400d9fe687a80a41e3b1a91502e52ebe0cd09113
Author: Cem Keylan <cem@ckyln.com>
Date:   Wed, 26 Jun 2019 15:11:51 +0300

New README

Diffstat:
DREADME | 34----------------------------------
AREADME.md | 44++++++++++++++++++++++++++++++++++++++++++++
2 files changed, 44 insertions(+), 34 deletions(-)

diff --git a/README b/README @@ -1,34 +0,0 @@ -st - simple terminal --------------------- -st is a simple terminal emulator for X which sucks less. - - -Requirements ------------- -In order to build st you need the Xlib header files. - - -Installation ------------- -Edit config.mk to match your local setup (st is installed into -the /usr/local namespace by default). - -Afterwards enter the following command to build and install st (if -necessary as root): - - make clean install - - -Running st ----------- -If you did not install st with make clean install, you must compile -the st terminfo entry with the following command: - - tic -sx st.info - -See the man page for additional details. - -Credits -------- -Based on Aurélien APTEL <aurelien dot aptel at gmail dot com> bt source code. - diff --git a/README.md b/README.md @@ -0,0 +1,44 @@ +# Cem Keylan's fork of suckless.org's simple terminal + +## Features and Patches +Dracula Theme +Solarized Light Theme +Scrollback +externalpipe (having some issues atm) +alpha + +## Keybindings + +### Theme +* F6 to switch theme + +### Zoom +* Meta+Shift+J to zoom in +* Meta+Shift+K to zoom out +* Meta+Shift+H to reset zoom + +### Scroll +* Ctrl+Shift+U to scroll up +* Ctrl+Shift+D to scroll down + +### External Pipe +* Meta+Shift+O to open url +* Meta+Shift+C to copy url +* Ctrl+Shift+O to copy output (does not work unless you launch st from another st for some reason) +* Ctrl+Shift+E to get the terminal screen on $EDITOR (broken) + +## Installation + +### Requirements ++ make ++ libxft + +Arch Users can use +AUR: [st-ckyln-git](https://aur.archlinux.org/packages/st-ckyln-git/) + +You can also install it via +``` +git clone https://git.ckyln.com/st +cd st +sudo make install +```