This commit is contained in:
Daniella / Tove 2024-11-04 00:23:23 +01:00
parent 6cd8794938
commit 95afe343bf
Signed by: TudbuT
GPG key ID: B3CF345217F202D3
2 changed files with 9 additions and 0 deletions

View file

@ -59,6 +59,7 @@ in
jq jq
(import ./sl.script.nix) (import ./sl.script.nix)
(import ./startsync.script.nix) (import ./startsync.script.nix)
(import ./ssy.script.nix)
(import ./bright.script.nix) (import ./bright.script.nix)
(import ./nix-cmd.script.nix) (import ./nix-cmd.script.nix)
(import ./sshpc.script.nix) (import ./sshpc.script.nix)

8
ssy.script.nix Normal file
View file

@ -0,0 +1,8 @@
with import <nixpkgs> {};
pkgs.writeShellScriptBin "ssy" ''
#!/bin/sh
startsync 2>&1 > /dev/null & disown
ls ~/sync 2>&1 > /dev/null
''