summaryrefslogtreecommitdiff
path: root/pkgs/dfmodsync.nix
diff options
context:
space:
mode:
authortriethyl <triethylammonium@pm.me>2025-08-20 20:03:01 -0400
committertriethyl <triethylammonium@pm.me>2025-08-20 20:03:01 -0400
commitaa63ba907a1094f9e9c4ff7ed877bda275383c34 (patch)
treee8d04118de77bd32296c646ced8a09b0b837db58 /pkgs/dfmodsync.nix
parent35bf3a338950be2eedcef539f2c1e147278f1766 (diff)
created dfmodsync package
Diffstat (limited to 'pkgs/dfmodsync.nix')
-rw-r--r--pkgs/dfmodsync.nix19
1 files changed, 19 insertions, 0 deletions
diff --git a/pkgs/dfmodsync.nix b/pkgs/dfmodsync.nix
new file mode 100644
index 0000000..fd6e18c
--- /dev/null
+++ b/pkgs/dfmodsync.nix
@@ -0,0 +1,19 @@
+{pkgs}:
+pkgs.writers.writeNuBin "dfmodsync"
+/*
+nu
+*/
+''
+
+ let workshop_dir = "~/.local/share/Steam/steamapps/workshop/content/975370"
+ let df_dir = "~/.local/share/Steam/steamapps/common/Dwarf Fortress/mods"
+
+ let workshop_dir = $workshop_dir | path expand
+ let df_dir = $df_dir | path expand
+
+ glob $"($df_dir)/*" | each {rm -rf $in ; print $"deleted ($in | path basename)"}
+ glob $"($workshop_dir)/*" | each {cp -r $in $df_dir; print $"copied ($in | path basename)"}
+
+ print "Synced Mods!"
+
+''