diff options
author | Adam T. Carpenter <atc@53hor.net> | 2020-12-09 18:27:45 -0500 |
---|---|---|
committer | Adam T. Carpenter <atc@53hor.net> | 2020-12-09 18:27:45 -0500 |
commit | a8a22fd752cc2a095be34c5f9007c4f6516831c5 (patch) | |
tree | 697944764f5fc27d677e39773fb6c25837227bf3 /themer.sh | |
parent | cfb2e53ee1bbe747a10ceb3e0eca25daa454382b (diff) | |
download | scripts-a8a22fd752cc2a095be34c5f9007c4f6516831c5.tar.xz scripts-a8a22fd752cc2a095be34c5f9007c4f6516831c5.zip |
fixed docking detach not being able to see screen
Diffstat (limited to 'themer.sh')
-rwxr-xr-x | themer.sh | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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() { |