mirror of
https://github.com/kmein/niveum
synced 2026-03-16 10:11:08 +01:00
12 lines
227 B
Nix
12 lines
227 B
Nix
{
|
|
writers,
|
|
xdo,
|
|
}:
|
|
# https://github.com/salman-abedin/devour/blob/master/devour.sh
|
|
writers.writeDashBin "swallow" ''
|
|
id=$(${xdo}/bin/xdo id)
|
|
${xdo}/bin/xdo hide
|
|
$("$@") > /dev/null 2>&1
|
|
${xdo}/bin/xdo show "$id"
|
|
''
|