aboutsummaryrefslogtreecommitdiff
path: root/infra/libkookie/modules/workstation/ui/i3/core/tools/i3-rename.nix
blob: 329b916d2f3d9c15fdca3f303242f97b0db6d68a (plain)
1
2
3
4
5
6
7
8
9
/**    A utility to rename the current workspace
 *
 *  This tool relies on i3-input to change the name of the current
 *  workspace.
 */

{ pkgs, ... }: with pkgs; writeShellScript "libkookie-i3-rename" ''
  exec i3-input -F 'rename workspace to %s' -P 'New name: '
''