blob: ef8ce37abd9c16566780f88ae3ea3cca7db17f1a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
|
# st - simple terminal
Forked from [https://github.com/shiva/st](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 additions
+ Default font is system "mono" at 14pt
+ 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
### Transparency
I also have redone the transparency patch diff since it would fail to apply with too many of the other patches applied. See below for installation.
## 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 dont size -- Shift+Alt+Home
+ Paste -- Shift+Insert
## Installation for newbs
```
make
sudo make install
```
### Transparency
If you want transparency, run the following.
```
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
```
|