scripts.nix
author Tomas Zeman <tomas@functionals.cz>
Sun, 09 Jul 2023 13:00:41 +0200
changeset 26 3d5c050af88c
parent 9 ae433b7676e2
permissions -rw-r--r--
idea: fix for 23.1

{ pkgs, ... }:

let

  wt = pkgs.writers.writeBashBin "window-title" ''
    exec echo -ne "\033];$@\007"
  '';

in {
  home.packages = [
    wt
  ];
}

# vim: ts=2 sw=2 et