summaryrefslogtreecommitdiff
path: root/themer.sh
diff options
context:
space:
mode:
authorAdam T. Carpenter <atc@53hor.net>2020-12-09 18:27:45 -0500
committerAdam T. Carpenter <atc@53hor.net>2020-12-09 18:27:45 -0500
commita8a22fd752cc2a095be34c5f9007c4f6516831c5 (patch)
tree697944764f5fc27d677e39773fb6c25837227bf3 /themer.sh
parentcfb2e53ee1bbe747a10ceb3e0eca25daa454382b (diff)
downloadscripts-a8a22fd752cc2a095be34c5f9007c4f6516831c5.tar.xz
scripts-a8a22fd752cc2a095be34c5f9007c4f6516831c5.zip
fixed docking detach not being able to see screen
Diffstat (limited to 'themer.sh')
-rwxr-xr-xthemer.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/themer.sh b/themer.sh
index f195d1a..07d7182 100755
--- a/themer.sh
+++ b/themer.sh
@@ -8,7 +8,7 @@ add_theme() {
[ ! -d "$outdir" ] && mkdir -p "$outdir"
sxiv -rot "$indir" | while read infile; do
outfile=$outdir/$(basename "$infile" | tr ' ' '_' | tr '[:upper:]' '[:lower:]')
- convert "$infile" -geometry '1920x1080^' -gravity center -crop 1920x1080+0+0 "$outfile"
+ convert "$infile" -geometry '2560x1440^' -gravity center -crop 2560x1440+0+0 "$outfile"
wpg -a "$outfile"
done
}
@@ -17,7 +17,7 @@ set_theme() {
theme=$(sxiv -rot ~/.config/wpg/wallpapers)
[ -z "$theme" ] && exit 4
wpg -s "$theme"
- #convert -verbose -background black -vignette 100x65000 "$theme" ~/.local/share/wallpapers/lock.png &
+ #convert -verbose -background black -vignette 100x65000 "$theme" ~/pictures/wallpapers/lock.png &
}
reapply_theme() {