Skip to content

Instantly share code, notes, and snippets.

@jn64
jn64 / xess-checksums.md
Last active March 21, 2025 15:23
Checksums of all known XeSS versions
XeSS SDK version file size sha1 sha256
1.0 dxcompiler.dll 19M cad0d4b5f4d4f4790bfe6ec5d0316eb99e55510d f57549d1df4a22839f57999d75af5473fb8df9f916a8364f1b6a721ad548130f
1.0 dxil.dll 1.5M 80610559a6285b1b88c31f8d38ef6c8773af8c5b 21be7fee9bf8c81dc8a3a28757b552fae44f9f72b50f5d9d2f5269bbe9710586
1.0 igxess.dll 59M 43d15bc693f73204ee431fd52009fe955774b6ef 943ab86256901e2c440fae5b8f395a385278050d2ad0144a7fc291672abb580e
1.0 libxess.dll 8.9M 2003868dbcad7212da516c28b0218b0aba66b746 0b423a2f733cbd25c62d15150c92fef361756183776e3d1a0ce9de569431b70b
1.0 XeFX.dll 66K 9cd334b35dcbfbe62c7caf027286081f7da
@jn64
jn64 / ncmpcpp_notify.sh
Created May 19, 2020 12:40
ncmpcpp notifications with album art
#!/bin/bash
# Send notification with album art when ncmpcpp plays a new song
# execute_on_song_change must be set in ncmpcpp config
readonly MUSIC_DIR="${HOME}/Music/Library"
readonly SONG_PATH="$(mpc --format '%file%' current)"
readonly SONG_DIR="$(dirname "${SONG_PATH}")"
readonly ALBUM_ART_PATH="${MUSIC_DIR}/${SONG_DIR}/cover.jpg"