Skip to content

Instantly share code, notes, and snippets.

View HakierGrzonzo's full-sized avatar
🔪
Killing bugs

Grzegorz Koperwas HakierGrzonzo

🔪
Killing bugs
View GitHub Profile
@HakierGrzonzo
HakierGrzonzo / blendWP.sh
Created April 21, 2022 20:13
My wallpaper scripts
#!/usr/bin/bash
WALLPAPER="$HOME/Pictures/wallpaper.png"
WRKDIR="/tmp/blendWD"
STEP=10
mkdir $WRKDIR
convert $1 -resize 2560x1080 ${WRKDIR}/one.bmp
convert $WALLPAPER -resize 2560x1080 ${WRKDIR}/two.bmp
for ((i=$STEP; i < 100; i += $STEP)); do
composite -blend $i -gravity center ${WRKDIR}/one.bmp ${WRKDIR}/two.bmp "${WRKDIR}/${i}.bmp"
done
@HakierGrzonzo
HakierGrzonzo / cava.conf
Created August 30, 2021 19:24
Hyperiond music efect using cava
## Configuration file for CAVA. Default values are commented out. Use either ';' or '#' for commenting.
[general]
# Smoothing mode. Can be 'normal', 'scientific' or 'waves'. DEPRECATED as of 0.6.0
; mode = normal
# Accepts only non-negative values.
; framerate = 60
Program VcardDiv;
uses crt;
var
i:Longint;
Filepath,str:string;
source,dest:textfile;
Begin