Go to file
Shourai b55750c2b0 Use suckless scroll for scrollback 2020-07-18 12:55:27 +02:00
patches Add patches for st 0.8.4 2020-07-18 12:54:54 +02:00
FAQ Initial commit 2020-07-18 12:47:46 +02:00
LEGACY Initial commit 2020-07-18 12:47:46 +02:00
LICENSE Initial commit 2020-07-18 12:47:46 +02:00
Makefile Apply font2 2020-07-18 12:48:28 +02:00
README.md Initial commit 2020-07-18 12:47:46 +02:00
TODO Initial commit 2020-07-18 12:47:46 +02:00
arg.h Initial commit 2020-07-18 12:47:46 +02:00
config.def.h Use suckless scroll for scrollback 2020-07-18 12:55:27 +02:00
config.mk Apply alpha 2020-07-18 12:48:15 +02:00
st.1 Initial commit 2020-07-18 12:47:46 +02:00
st.c Initial commit 2020-07-18 12:47:46 +02:00
st.h Apply alpha 2020-07-18 12:48:15 +02:00
st.info Initial commit 2020-07-18 12:47:46 +02:00
win.h Initial commit 2020-07-18 12:47:46 +02:00
x.c Apply clipboard 2020-07-18 12:48:58 +02:00

st - simple terminal

st is a simple terminal emulator for X which sucks less.

Notes about this fork

This is a fork of st, the original repo can be found here: https://git.suckless.org/st/ The original st webpage is here: https://st.suckless.org/

Patches applied

  • Alpha : This patch allows users to change the opacity of the background. Note that you need an X composite manager (e.g. compton, xcompmgr) to make this patch effective.
  • Scrollback : Scroll back through terminal output using Shift+{PageUp, PageDown} and Shift+MouseWheel.
  • Clipboard : This trivial patch sets CLIPBOARD on selection.
  • font2 : This patch allows to add spare font besides default.
  • Fix Keyboard Input : Add a few previously undefined keys.
Applying/Removing Patches
# Add custom patch
patch -Np1 -i patches/custom.diff
or
patch < patch.diff

# Remove st-alpha-201806-16-0.81 patch
patch -R patches/st-alpha-20180616-0.8.1.diff

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.

Keyboard

Action Key Combination
Copy ctrl + shift + c
Paste ctrl + shift + v
Zoom In alt + shift + +
Zoom Out alt + shift + -
Reset Zoom alt + shift + 0
Scroll up shift + page up
Scroll down shift + page down

Mouse

Scroll is implemented using scroll

Action Modifier
Scroll mouse wheel

Credits