This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| rvm pkg install openssl | |
| rvm install 2.5.1 --with-openssl-dir=$HOME/.rvm/usr |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| From a7eedc85e0609177cdb1ed3f6203fa37e6420012 Mon Sep 17 00:00:00 2001 | |
| From: Matias Lang <[email protected]> | |
| Date: Wed, 17 Jul 2019 01:10:44 -0300 | |
| Subject: [PATCH] Add shortcut to spawn new terminal in the current dir | |
| Ctrl-Shift-Return now creates a new ST terminal, whose CWD is the same | |
| as the parent st's CWD | |
| --- | |
| config.def.h | 1 + | |
| st.c | 21 +++++++++++++++++++++ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| diff -u a/config.def.h b/config.def.h | |
| --- a/config.def.h 2020-06-19 12:29:45.000000000 +0300 | |
| +++ b/config.def.h 2021-03-22 12:19:09.951353976 +0200 | |
| @@ -5,7 +5,7 @@ | |
| * | |
| * font: see http://freedesktop.org/software/fontconfig/fontconfig-user.html | |
| */ | |
| -static char *font = "Liberation Mono:pixelsize=12:antialias=true:autohint=true"; | |
| +static char *font = "RobotoMono Nerd Font Mono:pixelsize=30:antialias=true:autohint=true"; | |
| static int borderpx = 2; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| From 0ba2850930d2ef22a1774f3dc78884c978f2d8be Mon Sep 17 00:00:00 2001 | |
| From: aleks <[email protected]> | |
| Date: Wed, 27 May 2020 01:20:00 +0200 | |
| Subject: [PATCH] Create a desktop-entry for st | |
| --- | |
| Makefile | 3 +++ | |
| st.desktop | 7 +++++++ | |
| 2 files changed, 11 insertions(+) | |
| create mode 100644 st.desktop |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| diff -u orig/config.def.h mod/config.def.h | |
| --- orig/config.def.h 2020-06-19 12:29:45.000000000 +0300 | |
| +++ mod/config.def.h 2021-03-23 07:05:38.656594165 +0200 | |
| @@ -199,6 +199,7 @@ | |
| { TERMMOD, XK_Y, selpaste, {.i = 0} }, | |
| { ShiftMask, XK_Insert, selpaste, {.i = 0} }, | |
| { TERMMOD, XK_Num_Lock, numlock, {.i = 0} }, | |
| + { TERMMOD, XK_N, newinstance, {.i = 0} }, | |
| }; | |
OlderNewer