Created
July 6, 2022 22:22
-
-
Save heywoodlh/31bd735634a0de7bf36b1a0f4cb38e00 to your computer and use it in GitHub 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
cd /tmp | |
# Download the st source: | |
curl -LO 'https://dl.suckless.org/st/st-0.8.4.tar.gz' | |
tar xzf st-0.8.4.tar.gz | |
cd st-0.8.4 | |
# Nord theme: | |
curl -LO 'https://st.suckless.org/patches/nordtheme/st-nordtheme-0.8.2.diff' | |
patch -Np1 -i st-nordtheme-0.8.2.diff | |
# Scrollback: | |
curl -LO 'https://st.suckless.org/patches/scrollback/st-scrollback-0.8.4.diff' | |
patch -Np1 -i st-scrollback-0.8.4.diff | |
# Hide Cursor: | |
curl -LO 'https://st.suckless.org/patches/hidecursor/st-hidecursor-0.8.3.diff' | |
patch -Np1 -i st-hidecursor-0.8.3.diff | |
# Copy URL: | |
curl -LO 'https://st.suckless.org/patches/copyurl/st-copyurl-0.8.4.diff' | |
patch -Np1 -i st-copyurl-0.8.4.diff | |
# Clipboard: | |
curl -LO 'https://st.suckless.org/patches/clipboard/st-clipboard-0.8.3.diff' | |
patch -Np1 -i st-clipboard-0.8.3.diff | |
# Blinking Cursor: | |
curl -LO 'https://st.suckless.org/patches/blinking_cursor/st-blinking_cursor-20211116-2f6e597.diff' | |
patch -Np1 -i st-blinking_cursor-20211116-2f6e597.diff | |
# Universal Scroll: | |
curl -LO 'https://st.suckless.org/patches/universcroll/st-universcroll-0.8.4.diff' | |
patch -Np1 -i st-universcroll-0.8.4.diff | |
# Default Font Size: | |
curl -LO 'https://st.suckless.org/patches/defaultfontsize/st-defaultfontsize-20210225-4ef0cbd.diff' | |
patch -Np1 -i st-defaultfontsize-20210225-4ef0cbd.diff | |
# Desktop Entry: | |
curl -LO 'https://st.suckless.org/patches/desktopentry/st-desktopentry-0.8.4.diff' | |
patch -Np1 -i st-desktopentry-0.8.4.diff | |
# Install: | |
sudo make install clean |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment