[Linux-only] basically bloxstap for sober

github -> tangled

+20 -6
+18 -4
README.md
··· 1 1 # TuxStrap 2 2 3 - A modern Bloxstrap alternative for Linux, built with TypeScript and Bun. 3 + Something more than an FFlag manager. Built entirely with TypeScript and Bun, this manages your Roblox FastFlags and lets enable/use features which interact with your system using BloxstrapRPC. 4 4 5 - - Piggybacks Discord RPC off of Sober 5 + - Piggybacks Discord RPC off Sober 6 6 - Event driven so you can make your own plugins 7 - - Maybe moddable 8 - - Idk what else 7 + - More coming soon 9 8 10 9 wip 10 + 11 + ## How to install: 12 + 13 + Add this to your `flake.nix`: 14 + ```nix 15 + inputs.tuxstrap.url = "git+https://tangled.sh/@ocbwoy3.dev/tuxstrap"; 16 + ``` 17 + 18 + Add this to your configuration: 19 + 20 + ```nix 21 + environment.systemPackages = [ 22 + inputs.tuxstrap.packages.${pkgs.stdenv.hostPlatform.system}.default 23 + ]; 24 + ```
+2 -2
src/index.ts
··· 35 35 36 36 if (helpSwitch) { 37 37 console.log( 38 - `TuxStrap - Basically Bloxstrap for Linux! 38 + `TuxStrap 39 39 40 40 List FFlag/Plugin profiles: 41 41 \\ttuxstrap --list-plugins ··· 55 55 You can combine profiles together: 56 56 \\ttuxstrap +super +unstable -dbus 57 57 58 - GitHub: https://github.com/ocbwoy3/tuxstrap 58 + GitHub: https://tangled.sh/@ocbwoy3.dev/tuxstrap 59 59 ` 60 60 .replaceAll("\t", "") 61 61 .replaceAll("\\t", "\t")