mirror of
https://github.com/daylinmorgan/oizys.git
synced 2024-11-05 01:53:15 -06:00
use correct escape sequence
This commit is contained in:
parent
cb7f743205
commit
e246856ddb
1 changed files with 1 additions and 1 deletions
|
@ -10,7 +10,7 @@
|
|||
supportedSystems = ["x86_64-linux" "x86_64-darwin" "aarch64-linux" "aarch64-darwin"];
|
||||
runes = import ../modules/runes;
|
||||
in rec {
|
||||
mkRune = {rune, number ? "2", runeKind ? "braille"}: "\e[3${number}m" + runes.${rune}.${runeKind} + "\e[0m";
|
||||
mkRune = {rune, number ? "2", runeKind ? "braille"}: "^[[1;3${number}m" + runes.${rune}.${runeKind} + "^[[0m";
|
||||
|
||||
forAllSystems = f: genAttrs supportedSystems (system: f nixpkgs.legacyPackages.${system});
|
||||
|
||||
|
|
Loading…
Reference in a new issue