diff --git a/.config/dwb/settings b/.config/dwb/settings index 8bd7756e..78f73e73 100644 --- a/.config/dwb/settings +++ b/.config/dwb/settings @@ -98,7 +98,7 @@ auto-resize-window=false zoom-step=0.10 default-font-family=sans-serif ssl-untrusted-color=#ff0000 -plugin-blocker=false +plugin-blocker=true startpage=dwb:bookmarks normal-completion-bg-color=#151515 cursive-font-family=serif diff --git a/.scripts/syncer b/.scripts/hsync similarity index 59% rename from .scripts/syncer rename to .scripts/hsync index 2d893b0a..4d37a665 100755 --- a/.scripts/syncer +++ b/.scripts/hsync @@ -1,10 +1,11 @@ #!/bin/awk -f function _printhelp() { - print "Usage: " ARGV[0] "[-vr=1] SOURCE TARGET" - print "\nMove files in TARGET identical to files in SOURCE such that they follow the same hierarchy." - print "\nSymlinks are ignored." - print "\nSet 'r' to 1 to actually run the process." + print "Usage: hsync [-vr=1] SOURCE TARGET\n" + print "Filesystem Hierarchy synchronizer." + print "Move files in TARGET identical to files in SOURCE such that they follow the same hierarchy." + print "Symlinks are ignored." + print "Set 'r' to 1 to actually run the process." } BEGIN { @@ -50,7 +51,7 @@ BEGIN { target[sum]=$0 } - print "\n==> Syncing from " ARGV[1] " to " ARGV[2] + print "\n==> Syncing hierarchy from " ARGV[1] " to " ARGV[2] for (i in target) { split(i, subi, SUBSEP) @@ -59,14 +60,22 @@ BEGIN { dirname=source[subi[1]] sub(/[^/]+$/, "", dirname) - ## We only create a new folder if necessary. - if (dirname) - cmd="mkdir -p " ARGV[2] "/" dirname " && mv " ARGV[2] "/" target[subi[1]] " " ARGV[2] "/" source[subi[1]] - else - cmd="mv " ARGV[2] "/" target[subi[1]] " " ARGV[2] "/" source[subi[1]] + ## Target -> Source + change="'" ARGV[2] "/" target[subi[1]] "' '" ARGV[2] "/" source[subi[1]] "'" - print cmd - if (run) + ## We only create a new folder if necessary. + cmd="[ ! -d '" dirname "' ] && mkdir -p \"" ARGV[2] "/" dirname "\" && mv -n " change + # if (dirname) + # { + # print "### NARJ" + # cmd="[ ! -d ] \'" dirname "\' && mkdir -p \"" ARGV[2] "/" dirname "\" && mv -n " change + # } + # else + # cmd="mv -n " change + + ## TODO: sort preview. + print change + if (r) system(cmd) } }