mirror of
https://github.com/Swarsel/.dotfiles.git
synced 2025-12-06 00:57:22 +01:00
10 lines
249 B
Nix
10 lines
249 B
Nix
{ name, writeShellApplication, sway, ... }:
|
|
|
|
writeShellApplication {
|
|
inherit name;
|
|
runtimeInputs = [ sway ];
|
|
text = ''
|
|
swaymsg '[app_id=at.yrlf.wl_mirror] move to workspace 14:T'
|
|
swaymsg '[app_id=at.yrlf.wl_mirror] fullscreen'
|
|
'';
|
|
}
|