diff --git a/compress.sh b/compress.sh index 159d3f0..ad13b3b 100755 --- a/compress.sh +++ b/compress.sh @@ -78,7 +78,7 @@ help () { #get all input except first argument, if first argument has a '-' and save in ARGS #ARGS="$( echo "$@" | sed 's/^-.* //g' )" -ARGS="$(echo "$2")" +ARGS="$2" echo "ARGS = $ARGS" diff --git a/installers/arch/pkgs/aur.list b/installers/arch/pkgs/aur.list index b4c320e..4468600 100644 --- a/installers/arch/pkgs/aur.list +++ b/installers/arch/pkgs/aur.list @@ -21,3 +21,4 @@ shell-color-scripts lf-sixel-git swhkd-git nerd-fonts-mononoki +autotiling diff --git a/mangaterm b/mangaterm index 410a2b9..f50e5ce 100755 --- a/mangaterm +++ b/mangaterm @@ -87,6 +87,7 @@ handleFile() { application/zip) unzip "$1" -d "$TMPDIR" && readDir "$TMPDIR" ;; application/*rar) 7z x "$1" -o"$TMPDIR" && readDir "$TMPDIR" ;; application/gzip) tar xzvf "$1" --directory="$TMPDIR" && readDir "$TMPDIR" ;; + application/x-7z-compressed) 7z x "$1" -o"$TMPDIR" && readDir "$TMPDIR";; application/pdf) pdftoppm -jpeg "$1" "$TMPDIR"/page && readDir "$TMPDIR" ;; *) help ;; diff --git a/set-wp.sh b/set-wp.sh index 3a78185..beb2a86 100755 --- a/set-wp.sh +++ b/set-wp.sh @@ -6,7 +6,7 @@ setwp() { rm ~/.config/wall cp "$1" "$HOME/.config/wall" swaymsg "output * bg ~/.config/wall fill" - swaybg --image "$HOME/.config/wall" + #swaybg --image "$HOME/.config/wall" }