dots


commit
0e927ff
parent
e3de397
author
chasinglightning
date
2025-05-09 17:54:16 -0400 EDT
change conky conf font, edit resizeimg
2 files changed,  +4, -3
M config/.config/conky/themes/strip-clear/dark-strip-l-clear-1920-1080.conf
+3, -2
 1@@ -17,8 +17,8 @@ conky.config = {
 2     own_window_class = 'Conky',
 3     own_window_type = 'normal',
 4     -- Colors
 5-    font = 'Ubuntu Mono:size=13',
 6-    font1 = 'Ubuntu Mono:size=13',
 7+    font = 'IPAGothic,IPAゴシック:style=regular:size=13',
 8+    font1 = 'IPAGothic,IPAゴシック:style=regular:size=13',
 9     color1 = '#c6d0f5',                        -- accent
10     color2 = '#c6d0f5',                        -- accent dimmed
11     own_window_transparent = false,             -- transparency
12@@ -50,6 +50,7 @@ conky.config = {
13     uppercase = false,
14     use_spacer = 'none',
15     use_xft = true,
16+    override_utf8_locale = yes
17 }
18 
19 conky.text = [[
M config/.local/bin/resizeimg
+1, -1
1@@ -6,4 +6,4 @@ TMPDIR="/home/kat/Pictures/Camera/tmp-resize"
2 
3 cd ${WD}
4 
5-for f in *.jpg; do mv $f ${TMPDIR} && cd ${TMPDIR} && magick -size 3000x4000 $f -resize 40% "${f%.*}-resized.jpg" && rm -rf $f; done
6+for f in *.jpg; do mv *.jpg ${TMPDIR} && cd ${TMPDIR} && magick -size 3000x4000 $f -resize 40% "../${f%.*}-resized.jpg" && rm -rf $f; done