simple
You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
Luke Smith 23a6f74157
Merge pull request #1 from PhilipNelson5/patch-1
spelling
7 years ago
patches fixed transparency patch added 7 years ago
.travis.yml Enable travis build 8 years ago
FAQ tic -s -> tic -sx (Treat unknown capabilities as user-defined.) 8 years ago
LEGACY LEGACY: typo. 13 years ago
LICENSE Update the LICENSE. 9 years ago
Makefile Clean generated config.h 8 years ago
README.md spelling 7 years ago
TODO Remove old TODO entry. 10 years ago
arg.h arg.h: fixed argv checks order 9 years ago
config.def.h alt-u & alt-d: up & down in history; readme update 7 years ago
config.mk 0.7 release 9 years ago
st.1 st.1: add an entry for ISO-14755 shortcut 8 years ago
st.c Solarized support + switch with F6 8 years ago
st.info Add tmux capabilities to st.info 8 years ago

README.md

Luke's build of st - the simple (suckless) terminal

Forked from https://github.com/shiva/st for simplicity's sake, which is the suckless terminal (st) with some patches added:

  • copy to clipboard
  • solarized colors (light and dark toggleable)
  • vertcenter
  • scrollback with keyboard
  • scrollback with mouse

My own additions

  • Default font is system "mono" at 14pt
  • Fixed transparency patch (see below for installation)
  • Toggle light/dark mode now Alt-Tab instead of the frequently conflicting F6
  • Alt-k and Alt-j scroll back/foward in history one line at a time
  • Alt-u and Alt-d scroll back/foward in history a page at a time

Terminal-specific mappings

(Additions before me.)

  • Scroll through history -- Shift+PageUp/PageDown or Shift+Mouse wheel
  • Increase/decrease font size -- Shift+Alt+PageUp/PageDown
  • Return to default font size -- Shift+Alt+Home
  • Paste -- Shift+Insert

Installation for newbs

make
sudo make install

Transparency

If you want transparency, run the following. (You will also need to have a composite manager, such as compton or xcompmgr running for the transparency to appear.)

make clean
patch < patches/transparency.diff
make
sudo make install

And to remove transparency, just unapply the diff patch and reinstall.

make clean
patch -R < patches/transparency.diff
make
sudo make install