๐ดโโ ๏ธ
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 | |
| tput smcup | |
| tput civis | |
| clear | |
| ROWS=$(tput lines) | |
| COLS=$(tput cols) | |
| symbols=("@ " "# " "% " "& " "* " "+ " "- " "= " "! " "? " "/ " "\\ " "| " "( " ") " "[ " "] " "{ " "} " "< " "> " "^ " "~ " ", " ". " ": " "; " " ") |
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 |