Skip to content

Tanish2002/st-tanish2002

Repository files navigation

Suckless st Build

About This Build

  • This is my personal build of st
  • All patches were applied manually till this commit.
  • After That commit I've switched to st-flexipatch with flexipatch-finalizer.
  • st-flexipatch has come a long way and it's the best way to patch st currently in my opinion. It takes care of merging upstream so I don't have to deal with merge conflicts.
  • The patches.def.h file can found in the root of repo.

Installation

  • Any Normal Linux Distro
git clone https://gitlab.com/Tanish2002/st-tanish2002.git
cd st-tanish2002
sudo make install
  • NixOS
# flake.nix
inputs.st-tanish2002.url = "github:Tanish2002/st-tanish2002";

# home-manager.nix
home.packages = [ inputs.st-tanish2002.defaultPackage.x86_64-linux ];