🏴☠️
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env bash | |
| # - iNFO -------------------------------------- | |
| # | |
| # Author: wuseman | |
| # FileName: matrix_wall.sh | |
| # Created: 2026-09-17 | |
| # License: WTFPL (https://www.wtfpl.net) | |
| # | |
| # --------------------------------------------- | |
| # |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| hexdump -v -e '1/1 "%02x "' /sys/firmware/dmi/tables/DMI | \ | |
| awk '{ | |
| for (i = 1; i <= NF; i++) { | |
| # Matcha endast Type 16 (0x10) med längd 23 bytes (0x17) | |
| if ($i == "10" && $(i+1) == "17") { | |
| # Läs 32-bit KB på offset 0x07 (byte i+7 till i+10) | |
| b0=$(i+7); b1=$(i+8); b2=$(i+9); b3=$(i+10); | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env bash | |
| ESC=$'\033' | |
| USERNAME="WUSEMAN" | |
| SPRITE_LEN=$(( ${#USERNAME} + 8 )) | |
| hide_cursor() { printf "${ESC}[?25l"; } | |
| show_cursor() { printf "${ESC}[?25h"; } | |
| clear_screen() { printf "${ESC}[2J"; } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| emojis=("❤️" "🧡" "💛" "💚" "💙" "💜" "🤎" "🖤" "🤍" "💖" "💗" "💘" "💝" "💞" "💟") | |
| cleanup() { | |
| tput cnorm | |
| tput sgr0 | |
| printf '\033[2J\033[H' | |
| } | |
| trap cleanup INT TERM EXIT | |
| tput civis |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #¤!/bin/bash | |
| columns=$(tput cols) | |
| lines=$(tput lines) | |
| wall_start_x=10 | |
| wall_start_y=5 | |
| wall_end_x=$((columns - 10)) | |
| wall_end_y=$((lines - 5)) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| set aaa_mode=all | |
| set altformat_current= %F | |
| set altformat_playlist= %f%= %d %{?X!=0?%3X ? } | |
| set altformat_title=%f | |
| set altformat_trackwin= %f%= %d | |
| set auto_expand_albums_follow=true | |
| set auto_expand_albums_search=true | |
| set auto_expand_albums_selcur=true | |
| set auto_hide_playlists_panel=false | |
| set auto_reshuffle=true |