dots


commit
8229995
parent
678bc47
author
chasinglightning
date
2025-06-04 11:10:09 -0400 EDT
conky adjustments; new scripts
5 files changed,  +14, -5
M config/.config/conky/themes/strip-clear/dark-strip-l-clear-1920-1080.conf
+3, -3
 1@@ -17,13 +17,13 @@ conky.config = {
 2     own_window_class = 'Conky',
 3     own_window_type = 'normal',
 4     -- Colors
 5-    font = 'IPAGothic,IPAゴシック:style=regular:size=13',
 6-    font1 = 'IPAGothic,IPAゴシック:style=regular:size=13',
 7+    font = 'JetBrainsMonoNFNerdFont-Regular:style=regular:size=13',
 8+    font1 = 'JetBrainsMonoNFNerdFont-Regular:style=regular:size=13',
 9     color1 = '#c6d0f5',                        -- accent
10     color2 = '#c6d0f5',                        -- accent dimmed
11     own_window_transparent = false,             -- transparency
12     own_window_argb_visual = true,            -- transparency
13-    own_window_argb_value = 50,               -- transparency [0 -255]
14+    own_window_argb_value = 10,               -- transparency [0 -255]
15     own_window_hints = 'below,undecorated,sticky,skip_taskbar,skip_pager',                  -- if own_window true - just hints - own_window_type sets it
16     own_window_colour = '#a1a6be',             -- bg color [comment to full transparency]
17     default_color = 'white',                   -- default colors
A config/.local/bin/passgen-40
+3, -0
1@@ -0,0 +1,3 @@
2+#!/bin/bash
3+
4+date +%s | sha256sum | base64 | head -c 40 ; echo
M config/.local/bin/resizeimg
+2, -2
1@@ -4,6 +4,6 @@ WORKDIR=$(pwd)
2 
3 TMPDIR="/home/kat/Pictures/Camera/tmp-resize"
4 
5-cd ${WD}
6+cd ${WORKDIR}
7 
8-for f in *.jpg; do mv *.jpg ${TMPDIR} && cd ${TMPDIR} && magick -size 3000x4000 $f -resize 40% "../${f%.*}-resized.jpg" && rm -rf $f; done
9+for f in *.jpg; do mv $f ${TMPDIR} && cd ${TMPDIR} && magick -size 3000x4000 $f -resize 40% "../${f%.*}-resized.jpg" && rm -rf $f; done
A config/.local/bin/unzip-jp
+3, -0
1@@ -0,0 +1,3 @@
2+#!/bin/bash
3+
4+unzip -O CP932 $1
A config/.local/bin/unzip-kr
+3, -0
1@@ -0,0 +1,3 @@
2+#!/bin/bash
3+
4+unzip -O CP949 $1