aboutsummaryrefslogtreecommitdiff
path: root/infra/libkookie/modules/workstation/ui/i3/core/tools/i3-rename.nix
blob: 298dd31474fee0147743cbd0347c2bbfdad585ff (plain)
1
2
3
4
5
6
7
8
9
10
/**    A utility to rename the current workspace
 *
 *  This tool relies on i3-msg, jq, and dmenu to move a window to a
 *  different workspace.  In the future, maybe the display mechanism
 *  (dmenu) could be made configurable, so not to rely on nazi code.
 */

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