Skip to content

Instantly share code, notes, and snippets.

View grrtej's full-sized avatar

Gurtej Saini grrtej

View GitHub Profile
@grrtej
grrtej / samba-reaper
Last active January 22, 2026 22:19
checks samba logs for socket errors, and restarts the service if failing (termux)
#!/data/data/com.termux/files/usr/bin/bash
# samba-reaper
#
# checks samba logs for socket errors, and restarts the service if failing.
#
# smbd starts failing whenever android reclaims sockets due to network changes.
# smbd keeps trying to accept() on invalid sockets causing high cpu usage.
#
# requires: termux-services, termux-api, inotify-tools, jq
@grrtej
grrtej / svg2ico.sh
Created December 21, 2023 00:37
convert svg to windows ico (to use a linux icon on windows, for example)
# svg to multiple png
for i in 16 20 24 30 32 36 40 48 60 64 72 80 96 256; do inkscape -d $i icon.svg -o icon-$i.png; done
# multiple png to ico
convert icon-*.png icon.ico