16 lines
297 B
Nix
16 lines
297 B
Nix
|
{ ... }: {
|
||
|
text = ''
|
||
|
# Find currently active SWAYSOCK paths.
|
||
|
function _sway_find_sockets() {
|
||
|
ls /run/user/1000/sway-ipc.1000.*.sock
|
||
|
}
|
||
|
|
||
|
function _sway_iterate_sockets() {
|
||
|
local IFS=$'\n'
|
||
|
for socket in $(_sway_find_sockets); do
|
||
|
SWAYSOCK="''${socket}" ''${1}
|
||
|
done
|
||
|
}
|
||
|
'';
|
||
|
}
|