update lalalala

This commit is contained in:
Dionysus 2024-07-09 20:50:57 -04:00
parent 965fba06d8
commit 3004c43626
Signed by: acidvegas
GPG Key ID: EF4B922DB85DC9DE
17 changed files with 366 additions and 21 deletions

26
KEYS.md Normal file
View File

@ -0,0 +1,26 @@
# DWM
| Key | Description |
| ---------------- | ----------------------------- |
| `W + h` | Toggle statusbar |
| `W + k` | Kill window |
| `W + q` | Quit |
| `W + r` | Dmenu |
| `W + #` | Switch to nth workspace |
| `W + s + #` | Move program to nth workspace |
| `W + Enter` | Spawn a terminal |
| `W + Print` | Take a scrot |
| `W + Down/Up` | Inc/Dec vertical layout |
| `W + Left/Right` | Inc/Dec horizonal layout |
# TMUX
| Key | Description |
| -------------------- | ----------------------------- |
| `C + k` | Kill tab |
| `C + n` | New tab |
| `C + t` | Name tab |
| `C + A + t` | Name session |
| `C + A + Left/Right` | Previous/Next session |
| `C + Left/Right` | Previous/Next tab |
| `C + S + Left/Right` | Move tab forwards/backwards |
| `C + Down/Up` | Horizontal/Veritcal pane |
| `C + S + Up/Down` | Previous/Next pane |

View File

@ -40,7 +40,7 @@ alias pubkey='ssh-keygen -y -f ~/.ssh/key'
alias pydebug='python -m trace -t' alias pydebug='python -m trace -t'
alias torch='curl -s https://check.torproject.org | grep "Congratulations"' alias torch='curl -s https://check.torproject.org | grep "Congratulations"'
alias y2m='youtube-dl --extract-audio --audio-format mp3 --audio-quality 0 -o "%(title)s.%(ext)s" --no-cache-dir --no-call-home' alias y2m='youtube-dl --extract-audio --audio-format mp3 --audio-quality 0 -o "%(title)s.%(ext)s" --no-cache-dir --no-call-home'
alias up='sudo xbps install -Su && sudo xbps-install -u xbps && sudo xbps-remove -O' # What is this last command alias up='sudo mount -o remount,rw /boot && sudo xbps-install -Su && sudo mount -o remount,ro /boot'
# scripts # scripts
alias dbc='~/.scripts/dbc' alias dbc='~/.scripts/dbc'

View File

@ -5,12 +5,14 @@ alias ansi='python3 ~/.scripts/irc2ansi.py ~/dev/git/ircart/ircart/ircart/ansi'
alias ascii='python3 ~/.scripts/irc2ansi.py ~/dev/git/ircart/ircart/ircart' alias ascii='python3 ~/.scripts/irc2ansi.py ~/dev/git/ircart/ircart/ircart'
alias bomber='sh $HOME/.scripts/bomber' alias bomber='sh $HOME/.scripts/bomber'
alias busy="cat /dev/urandom | hexdump -C | grep 'ca fe'" alias busy="cat /dev/urandom | hexdump -C | grep 'ca fe'"
alias chess='gambit'
alias cmatrix='cmatrix -ab -u 1 -C magenta -s' alias cmatrix='cmatrix -ab -u 1 -C magenta -s'
alias crypto="curl rate.sx" alias crypto="curl rate.sx"
alias donut="curl ascii.live/donut" alias donut="curl ascii.live/donut"
alias fireworks='confetty fireworks' alias fireworks='confetty fireworks'
alias lavat='lavat -c magenta -s 10 -r 1 -R 1 -k cyan -b 20' alias lavat='lavat -c magenta -s 10 -r 1 -R 1 -k cyan -b 20'
alias mapscii='telnet mapscii.me' alias mapscii='telnet mapscii.me'
alias minesweeper='go-sweep'
alias rmatrix='cmatrix -ab -u 1 -C red' alias rmatrix='cmatrix -ab -u 1 -C red'
alias pipes='sh $HOME/.scripts/pipes' alias pipes='sh $HOME/.scripts/pipes'
alias pokemon='curl pkmn.li' alias pokemon='curl pkmn.li'
@ -32,6 +34,7 @@ fun() {
echo "ascii | Play ASCII art in your terminal" echo "ascii | Play ASCII art in your terminal"
echo "bomber | Bomberman in your terminal" echo "bomber | Bomberman in your terminal"
echo "busy | Make your terminal busy" echo "busy | Make your terminal busy"
echo "chess | Play chess in your terminal"
echo "confetty | Confetti in your terminal" echo "confetty | Confetti in your terminal"
echo "cmatrix | Matrix-style animation" echo "cmatrix | Matrix-style animation"
echo "crypto | Show cryptocurrency rates" echo "crypto | Show cryptocurrency rates"
@ -41,6 +44,7 @@ fun() {
echo "fireworks | Fireworks in your terminal" echo "fireworks | Fireworks in your terminal"
echo "lavat | Lava lamp style animation" echo "lavat | Lava lamp style animation"
echo "mapscii | Maps in your terminal" echo "mapscii | Maps in your terminal"
echo "minesweeper | Play minesweeper in your terminal"
echo "pipes | Pipes in your terminal" echo "pipes | Pipes in your terminal"
echo "pokemon | Random Pokémon" echo "pokemon | Random Pokémon"
echo "scene | Play ANSI scene art in your terminal" echo "scene | Play ANSI scene art in your terminal"

37
bash/.bash_thin Normal file
View File

@ -0,0 +1,37 @@
[[ $- != *i* ]] && return
# colors
alias diff='diff --color=auto'
alias dmesg='dmesg --color=auto'
alias dir='dir --color=auto'
alias egrep='egrep --color=auto'
alias grep='grep --color=auto'
alias fgrep='fgrep --color=auto'
alias ip='ip -color=auto'
alias ls='ls --color=auto'
alias ncdu='ncdu --color dark -rr'
alias tree='tree -C'
alias vdir='vdir --color=auto'
# rewrites
alias cp='cp -i'
alias mv='mv -i'
alias vlock='vlock -a'
alias wget='wget -q --show-progress'
# scripts
alias dbc='~/.scripts/dbc'
alias pass='~/.scripts/pass'
# random
alias up='sudo mount -o remount,rw /boot && sudo xbps-install -Su && sudo vkpurge rm all && sudo mount -o remount,ro /boot'
rnd() {
cat /dev/urandom | tr -dc 'a-zA-Z0-9' | fold -w $1 | head -n 1
}
if [ "$(id -u)" -eq 0 ]; then
export PS1="\e[38;5;237m\T\e[0m \e[38;5;196m\u@\h\e[0m \e[38;5;226m\w \e[0m: "
else
export PS1="\e[38;5;237m\T\e[0m \e[38;5;41m\u@\h\e[0m \e[38;5;69m\w \e[0m: "
fi

View File

@ -3,9 +3,14 @@
export LC_CTYPE=en_US.UTF-8 export LC_CTYPE=en_US.UTF-8
export LC_ALL=en_US.UTF-8 export LC_ALL=en_US.UTF-8
export GPG_TTY=$(tty) export GPG_TTY=$(tty)
export PATH=$HOME/.local/bin:$PATH export GOPATH=$HOME/dev/go
export PATH=$HOME/.local/bin:$PATH:$GOPATH/bin
[ -f $HOME/.bash_aliases ] && source $HOME/.bash_aliases [ -f $HOME/.bash_aliases ] && source $HOME/.bash_aliases
[ -f $HOME/.bash_functions ] && source $HOME/.bash_functions [ -f $HOME/.bash_functions ] && source $HOME/.bash_functions
if [ "$(id -u)" -eq 0 ]; then
export PS1="\e[38;5;237m\T\e[0m \e[38;5;196m\u@\h\e[0m \e[38;5;226m\w \e[0m: "
else
export PS1="\e[38;5;237m\T\e[0m \e[38;5;41m\u@\h\e[0m \e[38;5;69m\w \e[0m: " export PS1="\e[38;5;237m\T\e[0m \e[38;5;41m\u@\h\e[0m \e[38;5;69m\w \e[0m: "
fi

View File

@ -15,7 +15,7 @@ static const int resizehints = 0;
static const int lockfullscreen = 1; static const int lockfullscreen = 1;
static const Layout layouts[] = { { "", tile } }; static const Layout layouts[] = { { "", tile } };
static const Rule rules[] = { { NULL, NULL, NULL, 0, False, -1 } }; static const Rule rules[] = { { NULL, NULL, NULL, 0, False, -1 } };
static const char *tags[] = { "chat", "dev", "media", "work", "www", "other" }; static const char *tags[] = { "chat", "dev", "irc", "recon", "supernets", "work", "www", "other" };
static const char *fonts[] = { "Misc Ohsnap.Icons:style=Regular:size=11" }; static const char *fonts[] = { "Misc Ohsnap.Icons:style=Regular:size=11" };
static const char dmenufont[] = "Misc Ohsnap.Icons:style=Regular:size=11"; static const char dmenufont[] = "Misc Ohsnap.Icons:style=Regular:size=11";
static const char *colors[][3] = { static const char *colors[][3] = {

View File

@ -1,5 +1,6 @@
#!/bin/bash #!/bin/bash
# enter the zoid (zfs on root with zraid) - developed by acidvegas (https://git.acid.vegas/void) # enter the zoid (zfs on root with zraid) - developed by acidvegas (https://git.acid.vegas/void)
# boot: https://github.com/leahneukirchen/hrmpf
# reference: https://docs.zfsbootmenu.org/en/v2.2.x/guides/void-linux/uefi.html # reference: https://docs.zfsbootmenu.org/en/v2.2.x/guides/void-linux/uefi.html
# https://docs.zfsbootmenu.org/en/v2.3.x/guides/void-linux/uefi.html (do we need to make any updates?) # https://docs.zfsbootmenu.org/en/v2.3.x/guides/void-linux/uefi.html (do we need to make any updates?)
@ -83,7 +84,12 @@ setup_chroot() {
ln -sf /etc/sv/dhcpcd /etc/runit/runsvdir/default/ ln -sf /etc/sv/dhcpcd /etc/runit/runsvdir/default/
hwclock --systohc hwclock --systohc
printf "$HOSTNAME\n" > /etc/hostname printf "$HOSTNAME\n" > /etc/hostname
printf "HOSTNAME=\"$HOSTNAME\"\nHARDWARECLOCK=\"UTC\"\nTIMEZONE=\"America/New_York\"\nKEYMAP=us\n" > /etc/rc.conf
# CGROUP_MODE="unified" is required on Void to fix a bug with incus expecting systemd (https://github.com/lxc/incus/issues/625#issuecomment-2153154219)
# Temporary solution:
# mkdir /sys/fs/cgroup/systemd
# mount -t cgroup -o none,name=systemd systemd /sys/fs/cgroup/systemd
printf "HOSTNAME=\"$HOSTNAME\"\nHARDWARECLOCK=\"UTC\"\nTIMEZONE=\"America/New_York\"\nKEYMAP=us\nCGROUP_MODE=\"unified\"" > /etc/rc.conf
printf "en_US.UTF-8 UTF-8\nen_US ISO-8859-1\n" > /etc/default/libc-locales printf "en_US.UTF-8 UTF-8\nen_US ISO-8859-1\n" > /etc/default/libc-locales
xbps-reconfigure -f glibc-locales xbps-reconfigure -f glibc-locales

28
scripts/art/cowboy.txt Normal file
View File

@ -0,0 +1,28 @@
8▓█▀▀▀▀▀▀▀▀▀▀█7▓░8 7██8,7 ▄▄▄▓▓▒░░7,1██15,7░8░▓8,1█0▓8 ▐█████████0██8████0███8,15▀8,1██████████8,15▓▓8,1███8,15▌0░▓0,1█████
8▀1███████████7░1█ 7▐8▀▀15 7▄▄▄▄▓▓15,7░░8░▓0,1█1█ 8▐████████0██8██0████8█0███8█████8,15██▀▀▀0,1███8,15▀ 0▄0,1███0,15▓▓▓
1████████████████7▓██15,7░░░░░7,1██15,7 ▄▄▒8░▓0,1█▌8 █████████0█8██0██████8██0█8█████8,15▀0▄0,1██████████0,15█▓░8▄▄
0 1███████████████14▀▀14,7▄▄▄7,1█8,7░░░8,1▀▀▀▀8,7░░▓▓██0,1▌1█8█████████████0████8██0█8,15▓8,1███▀▀0,15▐0,1████0,15█▓▓▓0,1██0,15██▒8,1██8,15▓
0 1██████7■▀8 1██7░░1███████7▀▀14,7▄▄7,1████8,7░8,1▄▄ ▀0█1█8▐██████████8,15▓▓8,1████8,15▀0,1█8,15▓8,1███ 14,15▀14,1██0,15▀0,1█0,15▀▒▒8 ▄▄0▀▀░8▄8,1█8,15▓▓
8█0▄▄1██ 8░ 1██7▓▓0,7░░7,1▓▓▄▄▄ 1███7▀▀▀▀▀8,7░░▓8,1 1█8████████████8,15▄▄▄▄8,1█████ 15██14,15▓8,1 14░8 0,15░8 ▐8,1█████8,15▓▓▓▓8,1█
8█████▄▄▌1███7▐█8,7░8,1░7▄▄8 ▀▀█8,7▄░░7,1▄▄▄ 1██████8░░░1██8███████████████████ 15█14,15░▓8,1 14▓ 8▄8,15▄▄8,1███████████
8████████1██7▐█8,7░▓▓░7,1▀▀14 8 8,7░8,1▓██▓7██▄▄░1████ ████8▀▀1███████8▀█████ 15█14,15░▓8,1 14▓ 8▓██████████████
8███████8,15▓8,1▓░░8,7░▒▓█▀7,1█14▄ 8 8,7 ▒8,1██0▌8▀▀▀▀7█0,7░7,1░15 ░14▓▄▄▄▄▄14,7▀▀▀7,1█14,7▀8░1,1█8████ 0█15█14,15░8,1 14▐8 ▐███████████████
8,15▓▓8,1███8,15▓░15,1█1██7█8 8,7▒0,1█8,7█8,1██8,7▄▄▄░░▓8,1█0▌8 7░14 8 7▀▄░1█ 15░14▓█15▒▒14,7██7,1█████8,7▓1,1█8████ 0█15█14,15▒8,1 14▓8 ▐████████████████
8,15▀ 15,1██▓1█7█7,6▓7,1▓░8,7▓8,1███8,7▀▀▓▓▓8,1█0█ 8░▒8,7▄▄░0░1,1██ 15░░14▓▓14,7███7,1████8,7░░8,1▀▀1█8████ 0█15█14,15▓8,1 14█8 ▐████8,6▌13░░░8 ▀▀█8,1██
8,15 15,1▓░1 7░█6▐7,6▓7,1▓8▐8,7▓█░14,1▄8 ▀▀0███8▓▓8,15██▓0,1█7▌8 ▒▓▄▄▄▄▄▄▄▄▄▄▄▄▄▄██8,15▓▓▓8,1 0█15█14,15▓8,1 14,15▓8,1 ▐██8,15▓▓▓8,6▌13▄▄▄▄▀4▀▀▓█8█8,15▓▓
8 15░▀8 6░1█7░▓8,7░1,1█7,6░▓7,1█8,7▓▒8,15█8,7▓░15,1 8,7▒█8,15█▓0▓0,1▌1█8▒▓█8,15▀▀▄▄▓▓▓▓▓8,1██8,15▀▀▄▄▄▄░8,1 0█14,15░▓8,1 14,15▓8,1 ▐██8,15 ▄░░8,6 6 ██4░░░▒13░8,15▓░░
1█6▄▄8▄ 6█8 7█8,7░1,1█7░7,6▓7,1█8,7▒7,1▌8▀▀8,7░7,1░8 8,7░▐8,15█▓0▓0,1▌8 ░▓█████8,15▀ ░▓▓8,1██8,15▓▒░15,1▀ 14██0▄15▄14▀8 14█8 ▐█8,15▄▄8,1█8,15▓▓▓8,1█0,6░▄13▄▄█4▀▀▄8 8,15
8 4,6 6,1█8,6▓8,1▌ 6█8 7▐█1█ 13▐7▓8,7░8,1▄▄7▄▄▄8 ░7▀8,7▐8,15█0▒0,1▀8 ▄8,15 ▀▀▀ ▄▄8,1███8,15▓▀15,1██ █14██0█0,15▌14░0░15,1░8 ▐██8,15▀▀▀░░15,1█15,6▌8 0▄13▄▄▄▓▓4░░15▐8,15 ░
4▐4,6 ░8░▓8,1 8,6░6,1█8 7▐▌1██7░▓8,7▒▒8,1▀▀▀▀▀7█▄8▓▀1█8▄████8,15▄▄▄8,1█████8,15▓▓▒░15,1███ █14█0▄█14,15▓15,1█0,15▓14█8,1 15██████████0,6░13░░░▒▒▓▓4▀▀░6,1▓15,6▀
8 4▓4,6 ░8░▓4,1▐8,6░6,1▌8 7▐░1███7▀8,7░░░7,1█8,7░7,1██▀8 1█8▒8,15▄▄▄▀▀▀8,1██0,6░8 4▀▀▀15▀▀15,1███ █14█0██14,15█15,1█0,15█14█15,1░14░▄▄15▀█8,15░░15,1██15,6▀▀0▄▄13▄▄▄▄6█13▀4▀▀░░6,1░
8 4░4,6░4,1█4,6░8░4,1█8,6▓8,1▄ 7░░1███████████5░8░15█8,15 ▀▀▀8,6▀▀0░13░8 4▀▀▀▓▓░8░ 15,1 █14█0█0,15█14█15,1█0,15█14▓15,1░8 7▄▄8 14▌15▐▓▓8,6░15▀■8 ▀▀■ 4░░░▒▒▓▓▄▄
14░░8 4░4,6░4,1██4,6▒4,1██8,6▀8,1█▄▄ 1███7░░1█4▄█8█1██15,6▀▀▀▀6,1▓▓▓▓8,6▀13▀▀▀6,1▓▓▓▓▓▓░14▐0█0,15█14▌15,1█0,15█14▒14,1▌8 7█8,7░7,1█8 14░6▓▓▓0,6░░8 4 ░░░░6,1▓
6▄▄14▄8 4,6▒4,1█▓▓▓██8,6▀▀▓8,1█▓▓▄4▄▄▄8█▀1████6▀8,6 6,1▓▓▓▒▒▒▒▒░8 15▄░8 15▀▓0,15█14▓14,1▌8 7▐8,7░8,5▓8,1▌ 7▄▄8 6▀▓▓▓▓▓▓▓8,6
14,6▓14,1▓14,15█▓8,1 4,6▓4,1█4,6▓░8,1 4▀▀▀▀▀█4,6▓▒8░▒▓▓8,1███0▄1█8▐█8,6▄▄▄▄8,1█8,6▀▀6,1▓▓▓░15▄▄0,15░15,1▀█0▄15▄8 14▀7■▀8 ▀ 7▐█8,7░8,1 7▄6░░░▒▒▒▒▓▓▓▓▓▓▓▓▓▓
14,15░░▒▓8,1 4,6▓▓▓▒░8▀8,1▄▄▄▄ 4▀████4,6▄▄░8▀8,1█0▌1██8▀█8,6 8,1▄▄15 ▐0,15▓0,1█15█7░▄8▄8,5▓▓8,1█0█▄7█8,5▒8,1▌7█8,5░7,1 ▄8 ████8,6▀▀▀▀▀▀▀
14▄▄8 15▀▀14,15░▓8,1 4▀█4,6▓▒░░░6,1█8,6░▓8,1▄4,6▀▀4,1▄8 4▀4,6▓8░8,1 14,6▓8,1█1██8▀████████8,6▀▀8,1▓15 0,15▀▀15,1░7▐8,7░░7,1█▀░█8,5▓8,1▌█7█8,5░8,1▓7█8,5░7,1▌8█8,6▄▄▄▄▄▄▄▄ 6,1▓▓
0,15▀▀14▀▀▀▀15,1▄▄▀▓8 4▀█4,6▓▒░░░6,1██8,6░▒▓8,1 14█14,6░8,15░▓8,1▄1██8▓███8,6▄▄▄8,1███▓ 15▐8 ░7██▄▀8 7█8,5░8,1▌ 7▀8▀7▐8,5░▓8,1 ▀▀▀█8,6▀▀▀▀▀ ░░░
0,15▀▀▀▓▓▒▒░░15,1██▓▓8 4▀▀6▀▀4,6░░6,1█8▌ 14▐▄8 6,15▓░8░▓8,1█0▄1█8▀▀█████████▓░ 7▓▓██▄▄░▀8 ░░7▀8▀ 7█4,7░▓4,1▄8 ▐██████8,6▓▓▓
0,15▄▄▄▀▀▀▀ ▀▀8░░░▒▓8,1▄▄ 6▀■8 6▀8,6░6,1░14▐14,6▓14,1▌6,15░15,1███8,15░▓0,1█1█15░8 ▀███▓▓▓▓▓▒ 15,7░8,1 7▓15,7░░7,1█████8▄▄0▄8 7▐8,5░░7,1▄▐4▌8▐8,6████▄▄8,1█8,6▄░
6,15 8▓▓▓▓▄▄▀▀░8,1 6▀█▄8 14,6▒░6,15▓░15,1█6,15░░15,1██8,15░0,1█1█15▓8█ ░▓▓▓▒▒░ 15,7░7,1█▌ ▀░░░░8▀▀▀0▀8 7▄▀▀▓▓░8▓▓▓▓▓▓▓▓██
1███████████

99
scripts/art/htp.txt Normal file
View File

@ -0,0 +1,99 @@
14The15 FBI 14is closed until further notice..
5▄4▒
5░15 5▀█▒
5■15 5▐▌15 14░░
5▀15 4░15 5 15 5▀15 5 14 5▄▒ 14 5▄4░5▀4 15 4░░
14 4 ░15 5▄4▒15 5■15 5▄▄▀▀ ▐█▌ ▄4▒▒5▒
14 4░▒5█▀4░ 5▐█▒15 5 4▒▒5▀15 4░░5▄▄█▄▄▄15 5▀▒ ▐4,5░░5,1█ 15 14░░
14 4▒▒14 5▄█▀15 4░5▄██▌15 5░░ ▄4▒5▀ 14 4░5▀ ▄█▌ ▐███ 15 4 14 4░5▄▀▀■
5 ▐█▌ ▀ 4▒▒15 4▒5█4,5░░15,1 5▓▓4,5░5,1█▌15 4,5░░░5,1█▄▄▄█8,5░░5,1█▄ 15 5▐4▒
14 5▐4,5░5,1▌▒▒14 5▄██▀▀ ▐██4,5░5,1▌15 5░█4,5░░░15,1 5▄▄▄███4,5░░5,1█8,5▒▒▒5,1█▀15 5▐█
14 5▐4,5░5,1▌▐▄4,5▒▒░5,1█▀ ▄ █8,5░░5,1█▌15 5▓██4,5░5,1█15 5▄▄8,5▒▒▒▒▒▒▒5,1█8,5▒▒5,1█8,5 ███5,1█▀ ▄▀▀▀▄ 4,5░5,1█▒▒▒▒▀
14 5 ███4,5░░5,1██▌ ▐█▄8,5▓▓░5,1▌ 14░░░░ 5░8,5░░5,1███▌ ▄8,5▄████▓5,1▀▀▀▀█8,5██▄8,1█▓8,5▀5,1▀ 14░ 5 14 5▐██4,5░░8▒▒▒5,1▓
14 5▐█8,5░░░░5,1█15 4▒8████5█ ░░░14░ 5▓8,5▒▒5,1█8,5░░5,1▌ █8,5███8,1▓5▀15 5▐8,5██▀8,1▀5▀ 14░░░15 5█8,5▒ ▐███5,1 8,5▒15,1
5 4▒8,5▒▒▒▒5,1█15 5▐8█████▄▄▓▓5░14░ 5▐█8,5▓▓5,1▓8,5▓▓5,1█▐8,5▐█8,1██5▌15 5▀▀15 14░5░░░15 5█8,5▒ ██▌5,1 8,5▄█5,1▌
5 4▒8,5█8,1██8,5▒5,1█15 8 ▀5▄8,5▄8,1█████▓5░14░ 5█8██8,5▌5,1░8,5▐8,1█8,5▒ 8,1███▒15 5░░▓▓▓15 14░5█8,5▒▐█▌5,1 8,5▄██5,1░
5 8▐███8,5█5,1█▌ 8 5▄8▄8,5▄8,1████████8,7▀8,1 5▐8,5▓8,1██8,5▌8,1 8,5▐8,1██8,5 8,1███▌15 5▓8,5▒▒▒5,1█15 5░██8█8,5█▌5,1 ▄8,5▄██▒15,1
5 8▐██8,5▀▀8,1▄▄▄8,5▄8,1██████████7▀ 8▓███5▌ ▐8,5█8,1█8,5 8,1███▌15 5▐8,5▒▒▒4░5,1▄▌ ▓█8█8,5█▌5,1░▄8,5▄███▀5,1▌
5 8▐█8,15▓▓▓8,1██████████████ 7▐8█8,15▓8,1██ 7▐8██8,5▓8,15▓▓8,1██15 5▐8,5███▌5,1▌ 14░5▓8,5 8,1█8,5█▌5,1▓8,5▄8,1███8,5▀5,1▀
8 ░▓▓█0█████8█▓▓▀7▀8▐███8,15▓▓8,1█ █0██8█▌ █8,15▓▓0,1███8██▄15 8▄▄▄ ░░███8,5▌5,1▌ █8,5▄▓8,1████8,15▓▓▓5,1▀
8 0░█████████8░░ ██0███8█ 0░▓███8█ ░7▄8█0███▓▓▓██8▓█▄▄▄▄7 8████▒▒████5▌8░8,5▄█8,1████0██████5▄
0▀▀▀ ▀▓15 8█0█████15▌0░▓█████▄█████▀15 0▀███8█8,15▓▓▓▓▓▓8,1███████5▌8▓███0███▓▓▀████▌
4 15 14░░░░ 4 0█▀ ▀▌▓▀ ▀▀██▓▓ 12░░░░░ 0███████████8███████0████▀▀ ▓███▓
4 15 14▓█▓▓▓░░ 4 15 12░░░░ ░░░ 0▀▀ 2▀▀12▓▓▓▓▓░░2▄0▀▀▓▓▓▀ ▀▀▓▓8,15██0,1████▀ 4 15 0▐▀ ▀▌
4 15 14▌▀▀▀7▐▄▄8▄ 4 15 12▒▓▓▓▓░░░▓▓▓░ 15 12░░▀12,2▓12,1█▓▓12,2▓2,1░ 4 15 12░░░░ 0█████▀ 15 12░░░
4 15 14▄14,15▀▀▀14,1▄ 8▀7▀14▄ 4 2▐12▓████▓▓▓███ 15 2░█12,2░░░2,1▓ 4 15 2▀▀▀12▒▒▒ 0▓▀ ▀ 15 12░▓▓▓░
14▀14,15▒15,1▀ 4 15 14▌▀▄ 2█12,2░▓▓▀12,1█▀██▓▓ 4 7▄▄▓▓▓░░ 2▀▀▀▀▀ 7░░░░ 12,2░12,1 ░░░░ 4 12▓████░
14▄ 4 15 14█▄▀4 15 2██12,2░░2,1█12,2░12,1 4 15 7▄▄█7,3▓▀9▄▄▄▄▄▄3,1██9,3▄▄▄▄▄▄░7,1▒▒▒░░░ 12░▒▒▒▒░ 4 15 12██12,2▓▓12,1█▒
4 15 14▄14,15▓14,1▀4 14▄▀▀4 15 2▓▓█▀▀▀ 7▄▄7,3▓▓▀3,1█9,3▓▓▓▓▀▀▀3,1███▓▀▀▀█9,3▀▀▓▓9,1█9,3▄▄▄9,1▒▒▒3▄2▀▀12▒▒2█▌ 4 12▐12,2▓░░▓12,1▓
4 15 14░▄▀4 14▄▀15 2░░░█12,2░░2,1█▄14▀3▄7,3░9▓▓░░3,1▀▀▀7▀▀2▄14▀3▓ 2▓12,2▄2,1█▄▄▄3▀▀▀▀9,3▓▓9,1█9,3▓▓▄▄9,1▒3▄▄15 4 12,2░2,1██12,2░░░2,1▓░░
4 15 14▓▀ ▄▀15 2▄▄█12,2▄12,10▓▓12,2▓▓░2,1▌3▓▓9,3░3,1▀▀2▄▄▄▓11,2░░░2,1█▄▄█12,2▀▓▓░░░2,1█▀3▄█9,3▄9,1██9,7▓▓9,1██9,3█▄░7▀7,1▄░░ 4 2░▓███████
4 15 14▓ ▄█ 4 15 2░░█12,2▄▓▀▀2,1▀▀▀▄██▄3▀2▄▓▓12,2░░░▓▓▓12,1██12,2░░2,1█▀▀▀12,2░▓▓2,1▀7▄9,3▄▓9,1█9,7▓▓▒▒▓9,1███9,3▓3,1█7,3▓▓7,1▀2░░ ░12▒▒2████▓░
4 15 14,15▓14,1█▀ 4 15 2▓▓▀█▀3▄▄14▀2▄█▀7▄ 2██0,2░░12,1█12,2▓▓▓12,1█████12,2▓▓2,1▄▄3▀▀2▄12,2░░2,1▄7▀▀9,3░▀9,7██▓▓9,1█9,3▓▓▓9,1██7,3░3,1▀2▄▓▓░░ 12░░12,2░░2,1█▓▓░
4 15 14▀█▄ 2░░█12,2░░2,1█ 3▄9▒9,3▓▓░3,1▄▄7,3▓7,1 2██12,2░▓▓12,1████12,10▓▓▓12,1█12,15▓▓12,2▓▓▓2,1█▀▀3▄▄2▀▀█▄14▀3▓9,3░░9,1██▒▒3█9,3▀▓▓3,1█▄14▄2▀▀▀ 4 15 2░░░░
4 15 14░░▀8▄▓7▀ 14▄2▀12,2▄2,1█▄3▀█9,3▓█9,1█7,3▒7,1 2█0,2░12▄▓12,1███11,10░░12▓▒▒▒▓11░░12,2█2,1▀▀12,2▀▄2,1█▄ 3▀█ 12,2░░12,1 3▓█9█9,3░3,1█▄▀▀▀▀▓▓█9▒▒3▓▓14▄
4 15 7▀8▀14▄▄▀2▄█▀▀7▄9,3░3,1▄▄9,3░9,1▒ 12▒▒████11,10▒▒12,1███12,10▓▓▓12,1██12,2█2,1▄3▀█▄2▀12,2▀▓░2,1█▄▄▀3▄9,3░░█9,1█9,3▓░3,1█ 12▀▓▄2▄▄3▀█9,3▄▓▓3,1█▓
14▀▀2▄▄2,2 2,1▓ 7▄9,3░░▓9,1█9,3▓ 3,1▌2▐█12,2▐12,1██11,10░░12,1███12,2▓▀▀▀░░▀▄2,1▄▄ 3▀2▄12,2▄12,10▓12,2▓2,1▓▀7░3▓█9,3▓▓9,1███9,3▓3,1█7,3▒▒7,1▄12▀▀2▀3▄█9,3▓▓9,1█9,3▓3,1█▓14▄
4 15 2▓█12,2░░ 2,1█ 7█3█9,3▓▓9,1█9,7▓▓9,3▓3,1█7▄2▀▓12,2▐12,1██11,10░12,1██11,2░░2,1▀▀14▄3▄▄2▀▀12,2▀▓▄2,1▄12,2▒▓12,1█12,2░2,1░3░▓█9,3██9,1█9,7▓▓9,1██9,3▌3,1█7,3░7,1▌ 3▓▓7,3▄▄▓▓░9,1██9,3▄3,1█░
4 15 2░██12,2▓▓ 2,1█ 7,3▓3,1█9███9,7▓▒▒9,1█9,3▓▓7,1▓ 2█12█12,2▓▓▓2,1█▀ 14▀3▀▀9,3▒▒▒7▀7,1▄2█12,2░▀▀▓▓2,1█ 3▓9,3░▓█▓9,1███9,3▓▓░3,1█7,3▓7,1 14▀3▀2▄▄▄▄3▀▀9▒9,3▀▓▓3,1▓
4 15 2░▓█12█12,2░░ 9,1░7,3░3,1█9,3▀▀▓▓9,1███9,3▓▓3,1▀▄2▀12▒▒12,2░2,1▓▓▀▀▀▀▀ 3▀▀9,3░9,1 2▀▀▀▀ 7▀3▀▀▀9,3▒▓▓▓░░3,1▓▀7▀▄ 2█12,2▄11,10▒▒░12,2▄2,1█▄ 3█9,3░░3,1█░
3 2▓█12,2▓2,1▀▀▀▀ 3▀▀▀▀▀▀▀▀▀▀▀▀▀▀ 2▀▓ 4░▒████████ 2▓▄ 4▒███0█████ 9,3▒3,1▀▀▀▀▀ 7▀ 2▀12▀▀▀▀▀▀2▀ 3▀▀▀▀█▓14▄
14 2▓█12,2▒12,1 4░▒4,5▓4,1█████████████0████ 2▓ 4░▒4,5▓▓▓▓4,1████ 12,2░░12,1 4░██████0██ 9,3▒9,1 4░▒4,5▓4,1█████████████0████ 9░3▀█
3 2█12,2░2,1█ 4░▒4,5▓▓4,1██████████████0██ 4░▒4,5▒▒▒▒▒▒▒4,1█ 2▀█ 4░████████ 9,3░9,1 4░▒4,5▓▓▓▓4,1████████████0██ 2▀12▒▄
2░██▒ 4░▒4,5▒▒▒▒▒▒4,1███████████▓ 3▓ 5░▒4,5▒4,1▓▓▓▓▓▓█▄▄▄▄▄█▓▓▓▓▓▓4,5▒4,1 9,3░9,1 5░▒4,5▒▒▒▒▒▒▒4,1▀▀▀▀▀▀▀▀▀▀▀ 3█▄12▀2█
2▓12▒2█░ 5░░▒▒▒▒▓4,5░4,1▓▓▓▓▓▓4,5▒5,1▒▒▒▒░ 5,3▒5,1 ░▒4,5░4,1▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓4,5▒4,1 3█ 5░▒█4▓▓▓▓▓4,5░4,1 3█████9,3▒▒▒▒▒▄▄░3,1█▄
12▒▒ 3▓▄ 5░░░░░▒4,5░4,1▓▓▓▓▓▓4,5▒4,1 7▄▄▄3▄▄5,3░5,1 ░▒█4▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓4,5░4,1 3█ 5░▒█4▓▓▓▓▓5█▄▄▄▄▄▄ 9,3▐9,1█9,3▓▓9,1██9,3▓░3,1█
2█▓ 3█7▀ ▄14▄ 5░▒4,5░4,1▒▒▒▒▒▒4,5░4,1 7▀ 2▄▄▄5,3▒5,1 ░▒█4▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒4,5░4,1 3▓ 5░▒█4▒▒▒▒▒▒▒▒▒▒▒5█ 9,3▐█9,1█████9,3▌3,1█
2█░3▓ 2██ 7,3▀▓7,1 5░▒5,5 4,1▒▒▒▒▒▒4,5░4,1 7,3▀3,1▄▄2▀▀▀ 5░▒█4▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒4,5░4,1 3▓ 5░▒█4▒▒▒▒▒▒▒▒▒▒▒5█ 3█9██████9,3▌3,1█
2█ 3░2█12,2░2,1█ 3▓7,3░7,1 5░▒11,5▒4,1░░░░░░4,5░4,1 9,3░▓▓░3,1█5,3▒5,1 ░▒█4░░░░░░5█▀▀▀▀▀█4░░░░░░5█ ░▒█4░░░░░5█ 2▄ 3▄▄▄▄█3,3 9▀▓▓▓9,1█3█▓
3 2██12,2░▓2,1█░3▒█ 5░▒11,5█4,1░░░░░░▒ 3█9██9,3▓5░3,1▌ 5░▒█4░░░░░░5█ 2░ 5░▒█4░░░░░░5█ 2░ 5░▒█4░░░░░5█ 2▀▀ 3▀▀▀▀▀▀▀9,3░▓3,1█▓
3 2█12,2░▓12,1█2█▓ 3█ 5░▒11,5█15,1 4,5░4,1 3▓█9██3█ 5░▒█15 5█ 2▓ 5░▒█15 4,5░4,1 2░ 5░▒█15 5▀▀▀▀▀▀▀▀▀▀▀4,5░4,1 3█9,3▒3,1█░
3 2█12██2██3░█ 5░▓11,10▀11,1▄▄▄▄▄5▄4,5░4,1 15░3▀▀9,3░░3,1█ 5░▒█▄▄▄▄▄▄█ 2█ 5░▒█▄▄▄▄▄▄4,5░4,1 2▒ 5░▒█▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄4,5░4,1 3█9,3░3,1█
3 2██12,2▓2,1█ 3▓█ 5░░▒▒▒▒▒▒▒▓ 2▄██▄3▀█ 5░░▒▒▒▒▒▒▒▓ 2█ 5░░▒▒▒▒▒▒▒▓ 2▒ 5░░▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▓ 3██
3 2█12,2░ 2,1░14,7▌3,1█▓▄▄▄▄▄▄ 2▄▄▄▄█12,2▒▒2,1█▄3▀▓▄ 2▄▄▄▄▄▄▄▄▄12,2░2,1▄▄▄▄▄▄▄▄▄▄▄▄▓▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ 3▄▄▄
3 14░3 2█12,2░2,1▓ 7,3▌9▓9,1██9,3▓3,1█ 2▄█12,2▄▓▓12,1██12,2▓▓░░12,1 3░ 2████12,2░░▄▄▄▄▓▓▓███████████▓▓▓▓▓▄▄▄▄▄▄▄░░2,1███▀3▄9,3░░3,1█░ 14▒
3 14░3 2██ 7,3█9░9,1██9,3░9,1 2█12,2▓▓▀2,1██12,2▀12,1███2█▌ ▄██12,2░▄▄12,1██████████████████████████████████2██ 3█9,3▓▓3,1█ 14▓
3 14░3 14▒3 2██ 7,3█9,1██3█░2▓12,2░░2,1▀░▀▀█12,2▀▓▓░░2,1█12,2▄▄▓12,1█████11,10░░12,1████████12,10▓▓▓▓▓▓▓▓▓12,1██████████12,2▓▓2,1█ 3█9,3▓9,1█3█ 14░▀▀14,15▒15,1
3 14▒3 14▓3 14░3 2██ 7,3█9,1██3▓ 2▀3▄█▓▀2▄12,2░2,1█▀▀▀███12█████11,10░░▒▒░░░12,1███12,10▓▓▓▒▒▒▒▒▒▒▒▒▓▓12,1███████12,2░░12,1 3▄9,3░░3,1▓ 14▒3 14░
3 14▓▀14,15▓3,1 14▒3 2▓▓ 9,3▓▓9,1██3█7,3▄7,1▀2▄█12,2░▓2,1█▄3▀▄▄2▀▀█12,2▀▀▓▓12,1██11,10░░░░░░░12▓▓▓▓▓▒░░░░░░░▒▒▓▓12,1███12,2▓2,1██ 3▄██▓░ 14▓15▀▄▄
3 14,15▓3,1 14,15▒3,1 14▓▓3 2▀▄ 9,3░▓9,1█ 2▄██12,2▓▓12,1██12,2▄2,1▄▄3▀▀█▄▄2▀▀12,2░▀▀12,1█████████12,10▓▓▒▒▒▒▒▒▒▒▒▓▓12,1███12,2▓▓░2,1█▀ 7,3░▒7,1▀ 14▄▄14,15▒7,1 0 █15▌
14,15▒14,1▀14,15░0,1▄ 14▀▓14,15▓7,1 3▓▓██ 2▀▀█12,2░▓▓▀2,1▀▀12,2▀▄2,1▄▄3▀▀2▄█████12,2▓▓12,1██████12,10▓▓▓▓▓▓▓▓▓▓12,1███12,2▓▓▓ 2,1██ 7,3▒7,1▀ 14░7 14,15░0,1▄0,15▄15,1▀
1 14,15░0,1 15▐0,15░0,1 14,15▒7,1 3░░▓▓█7,3▀▀7,1▄2▀▀▀██▄▄█12,2▓▀2,1▀▀▀3▄▄▄2▀▀12,2░░▓▓▓▓12,1██████████████12,2▒▒░░2,1█▓▀15 14▓2 15▄0██15▌
0 14▀0 15▄0,15▐0,1█15▌0 14,15░0,1▄15▄0 2 3░▀█9,3▓▓▓3,1█▄▄▄2▀▀██▄▄▄3▀▀▀2▄▄██████12,2▓12,1███████████12,2▓▓2,1█████▀ 15 14,15▒0,1 15▐0███0,15▄15,1
0 15▄0,15▄0,1█0,15▌15,1▀0 15▐0██15▌0 15▄0 3▀7,3▄9▀▀9,1█9,3▓░░3,1▄▄2▀▀███12,2░░2,1███████12,2▒12,1██████████12,2 ░2,1███▓▀ 15 14,15░0,1▄▄▄15▀0██0,15▄15,1▄
0,15▓0,1██0,15▓▓0,1█0,15▄0,1▄0,15▀0,1█▄15▄0 15█ 7▀3▀▓▓▓▓▓█9,3▓3,1▄▄2▀█████████12,2▒▓▓▒2,1███████▓██▀▀ 15░2 15 0 12░0,15▐0,1███████████15▌
0 15▀0,15▀▓0,1███11,10███11,15▓▓0,1██0,15▄▄12,1░0▄15▄▓ 3▒▒▒▓▓▓░2▀▀▀█████12,2░░░░2,1▓▓▓▓▀▀▀▀15 ▓2 0 15▄0████████████0,15▀15,1
11 0 0,15░0,1█11,10████▀▀███0,1██15▐0███▄▄15▄ ░ 1 15 █▄0▄0,15▄0,1██████0,2▓0,1█11,10██3░10,1▀
11 0▐11,10▐███11,1█10▌ ▀11,10▓█▓▌0,15▐0,1███0,15▓░14,1▓0 12░░0,15▄0,1▄▄15▄ 0 15▓ 10 0 15▐0,15▄▄15,1▌0 14▄15▄▄10 0 0,15▄▄0,1█████████14▓12░░0,2▓0,1█11,10██3▒15,1
3 10▐11,10▐█11,1█11,10█11,1█10▌3▄10▄11,10░█▌3░0,1█████15▓14░10 15▐0████████15█0███15▄12░15▄0▄▄████ 14▐15█0█████████0,2▓0,1█0,15▀0,1▀▀15▀14▀2H712,10░0,1█11,10██░15,1
11 10▐10,3▓11,10█▓▓3░10,1██11,10░░▀░11,1 0,2▓11,10░11,1██0█▌15 14▓15▀0▀████0,15██0,1███▀0,15░0,1██████12░0 █████11█0████0,2▓10,1 15 2 0 2,10░11▓▓▓3░10,1▌
10 3▐10,3▓11,10▓░░14░12░3,1▀▀10▀▀ 2,10░11░11,1██0█10▌15 14░0▐██11██▀███0███0,15▓0,2▓0,1█11,10██0,1███15▄10 0███11█10█11,10▓▓▓▓█12░11,1▄▄10▄ 0 11,10░▒▒▒▌10,1▌
10 3░░▓█11,10░ 14░▒12░15,1 12,10░10,1█11,10▓▓█ 15,1 0█11██11,10▌11,1 ▐11,10▓11,1██0,2▓0,1▀10▐2,10░11█████0,1██15▄11█11,10█11,1█11,10░10,1▌█11,10▒▓▓11,1█▀▀10▀▀11 3░░3,10░11░░░▓10,1▌
10 3░░▓▓█14,10░▒▓2░15,1 14,10▌10,1█11,10▒▒░10,1█▄▄14▄10 █11██10█▄▄11,10▄░█11,1█0,2▓14,1▌15 12,10░11▓▓▓▓▒▓█▄██11,1█11,10░10,1▌▐11,10░░▒█10,1▌11 14▄▄10▄▄▄3░░▓10█14,10░░▄14,1█
10 3░░░░10 14▀▀▀15 14▐14,10▌10,1█11,10░░░10,1█10,10 11▀▒▒▒▒▀10,1█11,10▒▓▒▀▀▀░▓▓12░10,1▌ 3,10░11▒▒▒10,1█▀11,10▒▒▓██11,1█3,10░14▐14,1▐3,10░11░▒▓██10,1████14,10░3,1░░░14▀▀
14▀▀10▀▀14,10▄▄▄10,1██████14,10░11░▒▒░10,1█14▀10▐11,10░▒▒12░3░3,1░10▐11,10░░░░10,1▌11 10▀█11,10▒▓░3░14▐10,1 3,10█░10,1██14,10░░▄14,1█▀▀▀▀
14▀▀▀▀▐14,10▄▄░░░10,1 █11,10░░3░▓3,1░14▐3,10░░10,1█14,10░▓11,1 14▐14,10░3░░█3,1▓░14▀▀▀▀
14▀▀▀15 14▀▀10▀▀▀15 14▀▀▀▀▀15 14 ▀▀15 3░░░
1 4▄▄5▄▄4▄▄▄5▄▄▄4░5▄▄▄▄▄▄▄▄▄4▄▄15 5▄4▄4,5▒5,1▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀4▀4,5░▒5,1▄
4,5░15,1 0▄▄░▄▄▄▄▄▄▄▄ 14▄5▄4,5▓15,1 ░ 4,5▓5,1▄▄▄▄ 0▀███0,5▓0,1█▀ 5▄▄░▀▀
5▀▀▀▀▄ 0█0,5▓0,1███0,5█▒0,1██▓15 5▀4,5░4,1 0▓▓▓█ 5▄▓▓▀
5▀▄ 0▀▓▓█0,5█▓0,1███▓▒15 5█▌0░▓▀ 5▓▀
5░▄ 0░░▀▀ 8▄▄▄▄▄▄██████8,7▓8,1▄▄▄▄▄5░ 0░ 5░▓
5▓ 8▄▄▄▄8,7▓▓8,1▀▀░▀▀▀▀░ ▀8,7▓8,1█ 15░8▐█▀▀▀▄▄▄
7▄░8▄8,7▓▒8,1 ▄▄▄▄█ 15░ 8███ 15░ 8▌ ▐██ 15░8▄▄ ▀8,7▓8,1▄░
8,7░░░▒▒▓8,1 15░ 8▄▄8,7▓8,1█▀ 15▒ 8▀███ 15▒ 8░8,7▓8,1█8,7▓8,1 15▒ 8▄█8,7▓▓▒░░7,1▓
7░14,7░7,1█8,7░ ░▒▓8,1 8,7▓8,1███▄▄▄▄▄8,7▓8,1███▄▄███8,7▓8,1░ ▀▀15░8,7▒▒░7,1█14,7░▒15,1
14,7▒▒░7,1█8,7░ ░8,1▄▄8,7▒8,1░▀▀▀15 0▄ ▄ 8▀▀▀▀8,7▓8,1▄▄8,7▒░ 14░▒▒▓15,1
14▐14,7▒▒░7,1▀▀▀ 5█ 14░░░░░░░░░░ ▄0▓ 14░ 5█ 7▀▀14,7░▒▒▓7,1░
14,7▒▓14,1▀ ▄▓░3▄▄▄▄▄ ▄▄ ▄▄ ▄▄▄▄▄ 5▀3▄▄▄▄▄▄ 14░14,7▓14,1▌
14,7▓▓▓▓14,1█▀3█8,3▓3,1 3,3 8░3,1█ ▀8,3▒▒3,1 8,3▓▓3,1▀ 8,3▓▓3,1 █8,3▒3,1█ 8,3▒▒14,1░ ░▒▓▄14,7▓▓15,1
14,7▓▓14,1░ 8,3▒▒3,1 3,3 3,1 8,3▒▒5,1░ 8,3▒3 8▒3,1 14▓ 8,3▒▒3,1 █ 8,3░▒3,1 8,3░░3,1▄▄▄▄ 14▀█14,7▓15,1
8,3░░3 3,1 8,3░░3,1 4▀3▄█▀8,3░░14,1▀ 8,3░░3,1█ 8,3░░3,1 ▄▄ ▀8,3░░15,1
3▀3,3 3,1▄▄▄█▀ 8,3░░3,1▀ ▀██ ▀█▄▄▄█▀ ▀8,3░3,1▄▄▄8,3░3,1▀
5▓ 14▄▄▓▓ 5▄
5█ 14▀▀ 14,5░14,1sd
14,5▒5,1▄▄▄14,5░15,1
5▀▀░
14 8 3 ansi by the textmo9de exorcist w8ith help from sudden de0ath and H7
0SAUCE00live.acid.org:14400 ansichrist + friendsACiD
0 20130420 J

View File

@ -0,0 +1,42 @@
7 0,7▒▒7,1▄ 0,7█0,15▓0,7▓▓0,1████████0,15▓0,1███0,7▓7,1▌▐█0,7░7,1 █▒ ▄0▒7░░▄▄▒█▄ █0▒█▒▒██████0,7▓0,1███0,7▓▓0,1▌███0,7▄▄▀▀0,1█ 0,7▓▓▒▒▓▓0,1█▌
7░ 0,5▒▒0,7▒▒▒7,1█0█████████0,15 ▐0,1███7▌ ▒0,7▒7,1█▀ █ 0░7▌ ▓▓ ▐█▌ ▐█0█▌ ▐████████████ ▀0,7▄▄ ▀▀█0,1▌ 0,7▓▓▓11,1░0 ▀▀█░
7▒▒▄0░7▀0,5░░7,1█0,7▄▄0,1█0,7▄0,1█▀▄11,7██0,1▀7 0,15▓0,1███7▌ 0,7 7,1▒ ▐0,7░7,1 ▄ ░░ █ ██▄ 0,7░0,1█ ░██ ▀11,7███0,1▀████▌ ██0,7▀▀▄█0,1▒0,7▓0,5▀0,7▓0,5▓0,1▌ █▄▒
0,7░░░0,1▒7 █0,7▀▄▄11█0,1▀15 0,15▒0,1███7 ▒░░█ █ ▐▒ ▐██░0,7░░7,1▒0▐▌▒██15 0▀██▄ ██0,7▓▓0,1██▓0,7▓0,5▄▄0,1█ ▀▓
7▄0,7░7,1▀0 7 0,7▀7,1█▀▄0▄█▄11▒▒▒▄▄▀0▒▄11█0██7▓▓0,7░░7,1 ▄█▌ ██▄▀██▒0,7░░▒0,1███▄█████████▄██ 7 0 ▐███0,7▓▓0,1█0,7▓0,5▓▒0,7▒0,1▌ ▒█
0,7░░0,1░ 7 ▐0,7░░▒▓▓▓0,1██▀▀▀▀████11█0,7▌7,1███▄███▄██████▓▓█0,7░0,1█████▀▀▀▀▀▀█████ 7▄▓▄0░█████0,7▓▓▒▒▒0,1█ ▓
0,7░░░7,1▄0 ░7 █0,7░░0,1▐0,7▒0,1▀7 10 7▄7,3▀▒0▄10,1▄7 0▀██0,7█▄7,1████7,10▓7,1▄███████15,7░░7,1█0,7▐0,1███▀7 ▄7,3▀▒0▄3,1▄10 7 0▀ 7█0,7░░▒▒▒0,1▀▀█0,7▓▓▒▒▒▒11,1▒0▌ ▐
0 0,7░░░0,1▒▐7 ░▄▀▀0 7 ▐3█10▌ ▐0,3░10,1▌7 0██0,7█▌7,1█10,7░7,10▓7,1█████10,7░7,1█████15,7░░0,1██ 7▐3█10▌ ▐0,3░7,1▌ 0▀▄▄░7 ▐0,7░▒▒▒▒0,1▄ ▀0,7▒▒▒▒▒▒0,1▌
0 0,7░░▒▒0,1▌7 ▒█14,7░░░7,1 0▒▄7░▀8,3▄▄▄15,1▀10 7░0▐██0,7▌10░░7,1███████10,7░░7,1█7,10▓7,1█▓▓0,7▀7,1 ░▀8,3▄▄▄15,1▀7 0▄██▀7▒▓ 0▓0,7▒▒▒▒▒0,1▌ 0,7▒▒▒▒▒▓15,1
0 ▐0,7▒▒▒0,1▌7▐███14,7░░7,1▒ 0██▄10 7 ▐ 0██10,7░░7,1█████▓▓███10,7░░7,10▓7,1▒▒ ░15 0▄▒█▀7▄███0▒▌0,7▓▒▒▒▒0,1█ ▐0,7▒▒▒0,5▒▒0,1█
0 ▐0,7▒▒▓▓7,1 ▀▀██0,7░░7,1▄ 0▀▀█11▓▓▓0▄7 ▐░░10,7░7,1█10,7░7,1████10,7░░7,1▓████10,7░░7,1▌ ▒░ 11▄▓▒▒▒▀0▀7░█▀▀▒█ 0▌0,7▓▓▒▒0,1▓█▌ █0,5▒▒0,7▓▓0,1█15▌
0 0,7▒▓▓▓0,1▓▄ 7▀█▒▒█▄ 0▀0,7▒▒7,1░▐▒▒▓10,7░7,1██10,7░░7,1█████▓███10,7░░7,1 ░░░0,7░7,1▄ 11 7▄█15,7░7,1▄██▀ 0 0,7▓▓▓▓0,1▒██▄ ▐0,7▓▓▓▓0,1█15▌
0 0,7▓▓▓▓▒▒░7,1▄0 7▀███▐14,7░░7,1 0▐0,7░░7,1▒▒▒████████████████10,7░░7,1 ░▒▒▒▓█0,7░░15░░7,1▀▀██ 0▄█0,7▓▓▓▓0,1 ██▌ █0,7▓▓0,1███
1,15▌0,1 ▀0,7▓▓▓▓▒▒░0,1▄▄▄7▄██▒█0,7░7,1█▒▒▒▓▓▓████10,7░░7,1██████████15,7░░7,1 ▐▒▒▒▓▄ ▀ ▄█ 0████0,7▓▓0,1█ ██ █0,7▓▓0,1██▌
1,15▌0,1▌ ▀▀█▓▓▓▄ 7 ▀0,7░7,1▄█▀▄0,7░7,1▓▓▓▒███10,7░░░7,1██████████▓15,7 ░░7,1 ▐▓▀▀██0,7░░15░░0,1 █████0,7▓▓0,1▌ ██░ ▐0,7▓▓0,1██▌
0 █░ ░▄ 0,15▀▀0,1███7▄ ▀ 0,7░7,1██▒██ █10,7░░7,1█0,7░7,1███████████▓▓█15,7░░7,1▒███▄▀▀▀▀ 0▄0,7▓▓▓0,1▒██0,7▓0,1█ ██▒ █████▓
0 ▐█▓ ▒█████0,15▓▓0,1▄▄7▄▒ 0░0,7░░7,1▌ ██▄█████████████0,7░░░ 7,1▓ ▐█15,7░7,1▄▀█▀▀▄▄▄0,7▒▒▒0,1▒▀▀███▌ ▄██▌ ▐0,7▓0,1███15▒
0 ░▀██ ██ ███0,15▀▓▓0,7█7,1░0▒0,7▒░7,1██▄█0,7░7,1▒▒0,7░░7,1▒▒▒███████▓▓▓0,7░░7,1▒▒15,7░7,1█▒▒█0,7░░7,1▄▀0,7░▒▒0,1▒ ███ ▐██▀ ██0,7▓0,1██15▄▀
1,15▓0,1▄▄ ▀ ▐0,15▀15,1▀7 ▀0,7▓▓0,1▀7█▄██0,7░7,1█0,7▒0,1▌7 ░░4▄▄▄7▀0,7▒11▄▄15▄4▄4,15▄▄▄4,7▄4,1▄7▌ 0,7▐15▓7,1███▄█▀▀0,7▒0,1▄▀▀▄▄▄███▌░█▀▄▒ ▐██0,15▀▀0,1█15▄▄■
7 0▀▀▒▒█▄▄▄▄ 7 0▄0,7▒▒0,1▄7▄0,7░░░ ░░7,1█0,7▐0,15▓7,1 4▐▓▓███4,7███4,1██████▀7 ▐0,7▒7,1█15,7░░░7,1████0▄█▀███████▒▒ ░ ▄0,7▓▓0,1███
0 15▀0▀▀████0,7▓▓7,1 0▀0,7▒▒▒7,1▀ 0,7░7,1 ░0,7░7,1█0,7█0,1▌7 4 7 4▀▀4,7████4,1▀7 0 15▄0,7▓▌7,1█15,7░░░░7,1█0,7░░▒▒0,1██▌▀▓▓█▒█▓▌ ▄████0,7▓0,1█
0 15▀0▀▓▓████0,7▒▒7,1░░0▀7 ▄▄▒█0,7░░7,1██0,7▐0,15▓15,1▄7 4 ▐██▌7 15▄0,15▄▓▓▓7,1▌▀▀15,7░░░░7,1███0▀0,7▓▓▓0,1 ▒██▀ 0,15▀0,1██0,7▓▓0,1██
0░░ ▄▄▒█▓▓█0,7▒▒0,1▒▒0,7░0,1 7█▀▀█▀▀0,7░▀0,15▓▒15,1▄▄7 4▒7▀▀4▀15▄0▄0,15▄0,1████0,7▌7,1█▄▄█15,7░░░░7,1██▌0 ██▄ ░▀ 0,15▀▀█▄0,1██▌15▀░
0██0,15▓0,1▀▀ 15 0 ▀▀█▓▓██0,7▓▓▒▒7,1▄▄0,7░7,1▄▄0,7▒7,1 0░0,15▓▓▒░15,1▄4 15▄0,15▄0,1█████0,7▓▀7,1█0,7░░░░░░7,1▒0,7░7,1▒▒0,7░7,1 0░▐▓▀ ▀▀▄▄▀▀0,15▄15,1▓▀0▐▌15░ 0█
0▀▄▄▓▓░▄▄▀▀▀ ▀▀▀▀█0,7▓▓▒▒▒▒▒▒▓▓0,1█▒▓▀0,15▒15,1▒7 0█▀0,15▓▓▓0,7▓▓0,1▒█▀▀░7 ░▀ 0█ 0,7▒0,1 ▀ ▄█▄▄▀▀▄▄15░0▐▌ ▄██
0,15▓▓0,1▒▀▀▀ ▄▄ 1,15▄0,1▀▄▀▄░▀ ▀ ▀▀▀▒ ░▄▒0,15▓0,1▀▒7 0▒0,15▒▒15,1▄0,15▓15,1▄0,15▓0,1▄0,7▓0,1▄▄0,7▒0,1▄▄0,7▒0,1 ▓▄▄▄▀▀▄▄█0,7▓▓0,15▓▓0,1▄▄▄ ▀▀▄▄▄ ▀█
0▄▄▄▀▀▄██0,15▓0,1█▄▀▀▄1,15▄0,1▀▓▓▄▄█▄▄█ ▄ 0,15▓▓0,1▀▒█15▌7 0 15▀0▀0,15▒15,1▄0,15▓15,1▀0,15▓▓15,1▀▀0,7▓▓▓▓0,1█0,7▓▓▓▓▓0,1 0,7▓▓0,15▓▓▓▓0,1▀ ▀▄▄ ▄▄▀▀▀▄▄
0,15▓▓0,1▌0,15▓0,1██0,15▓▓▀0,1█ ▄█ ▀ ▒▒15▀14 ░0▓14▀0▀0,15▀0,1▀0,15▀0,1▄0,15▄▀0,1█15▀14░░░░░10 15▀0,15░░░15,1▀0,15▒▒▒0,1▄█ 0,15▓0,1▀ ▀ ▀▀15 0▄███ ▄▀▀▄▄▄▄▄▄▄
0,15▓▓ 0,1█0,15▓▓▀▄0,1█ 0,15▒0,1█░▒█ ▀ 1,15▒15,1▄▄0▒15▄▄0▓█▀█▒15▀0 15 14░░15▀0▀▀0,15▒▒15,1▄▄0,15▓▓▓▓0,1█15▀0▀▄ ▄▄ ▄██0,15▓▓0,1 █0,15▓▓▓0,1▄▄▄▄▄▄▄
0,15▓ ▓▓▒▌▐0,1█ 0,15░0,1█░0,15░░0,1▒ ░ ▄ ▄15░1,15▓0,1▄▒▀15▀▀10 15 7▄10 0 15██▄0 ▄▄▄▀▄ ▀▄ ██0,15▓▓0,1▀15▄0,15 15,1▓▓0,15▀▀▀▓▓▓0,1██
0,15 ▒▒▒▀░0,1█ 0,15░0,1█░15▓▓0,15░░0,1▒▌█░░▐▌▐▌░7▐▄ 5░15 5░7▐7,5▓7,1▌5 10 7 0 ▀▄█████ ▀▄ ▀▄▀▀15▄▒0,15▄▄▄▄▀▀0,1██0,15▄▄▀▀▓
0,15░░░░░0,1▐▌15▓0█15▓0,15░░░░░0,1▒█ ▒ █ ▐▌7 ▐7,5▓▓10,1 5░15 5░░7,5▓▓5,1▌10 7 0 ▀▐▌██████▄▀▄ ▀▄▀0,15▒▒▒0,1████0,15▄▄▀▀0,1██0,15▄
0,15░░░░15,1▓0█15▓0██15▓▓0▀0,15░░0,1▓█ ▓▌▐ ▒ ▒7 5,7▓8,1░5▌15▄0▄5▀▄▄15 5 ▄▄ 0▄15▄7,5▒8,1▒5 10 14░7 0▐█ █ ███0,15▓▓▓▀0,1▄▀▄ ▀▀▄▄15░▒▒0,15▒0,1███0,15▄ ▀0,1█
0,15░░15,1▒▒0▐▌10█0█15▒0░░░15▄▄0█ 0,15░0,1▀ ░░▄ ░7 5▀7 15▀0░ ▒▒▀▒▀5 0▀5 0░15▀5 10 7 0 ▒▒▐ █0,15▓0,1█0,15▒▒▒░▀0,1▄▀▄▀▄▄▀▄▀█▓▓▓██0,15▄
0░░█ ██▐▌██████ ░░▒▒▀7 0 14░15 0 7 10 14 ▄▄▄10 7 14▄7 14░░7 0▐ █ █0,15▒0,1█0,15░░░ 0,1█▄▀▄▀0,15▒0,1▄▀▄▀██▓▓██
0███▐▌███████▐▌ ░ ▒▒██▌ 7 0░░15 7 0 ███ █0,15░ 0,1█0,15▒0,1▄▀▄▀█▄▀▄▀████
0█████▐▌████ █ ██▒ ███ 15▐ ▄▄0░░▒▒15▀▀█▀0 15▄▄▄▄▄▄0░░ 15▄▄0 ▐██▓▓█ █▓0,15 ▐0,1█0,15▒0,1█ █ ▄▀▄▀7██
0██▐▌█▐▌████▐▌████▓ ██▒15███0▒▒15█▄0▒ 15▄▒▄▄▒▄▄█▄0 15█▀▀0▒▒15█0 █░░0,7░0,1█0,7▓▓0,1 █▒0,15▄ 0,1██0,15░0,1██ █ 7▒█0▄▀▄
0██████████ █ ████▀▄ ▒██▓▓0,15░░░░░0,1▄▄▄ ▌▄▒ 15████▄▄██▄0 ░░█0,7▌0,1█0,7▒0,1██0,7▓0,1 █░█████0,15▓0,1▀ ▐▌7█▒▒██0▄▀
0█ ████████▐▌░█████▀ ▓█▒█0,15▒▒0,1▄0,15▒▒0,1▄0,15▒▒▒▒0,1▀0,15░░░░░░░░░0,1░█ ▒▒▄▀█▄0,7 0,1█0,7▓0,1██0,7▓0,1 █ ███▀ ▄ █7█▒█▒███
7█0▐▌7█0▐▌███ █ ▒▒████▄▄█ ▒ ▒▄ █0,15▓▓0,1█0,15▓▓▓▓0,1█0,15▓▓▓0,1▄0,15▒▒▒0,1 0,15▒▒0,1 ▒ ▀0,7▓0,1███0,7 0,1█0,7▓0,1███ █ ▀█ ▄7█0 ▐▌7▒█▒▒██
7█0▐▌7█0▐ ▐▌██▒▒██████▄▄██░▒▒▒██████▓▓█0,15▓▓▓0,1▌▒▒ ██▄▀ ▄▄0,7▓0,1███0,7 0,1████▀ █ █7█████0▐▌7▒▒█▒█0,7░

View File

@ -15,7 +15,7 @@
# #
# Useful commands: # Useful commands:
# Git usage : git config core.sshCommand "dbclient -i ~/.ssh/key" # Git usage : git config core.sshCommand "dbclient -i ~/.ssh/key"
# Generate private key : dropbearkey -t ed25519 -f ~/.dropbear/key # Generate private key : dropbearkey -t ed25519 -f ~/.dropbear/key | grep "ssh-ed25519"
# Get public key : dropbearkey -y -f ~/.dropbear/key | head -n 2 | tail -n 1 # Get public key : dropbearkey -y -f ~/.dropbear/key | head -n 2 | tail -n 1
load_host() { load_host() {

0
scripts/irc-post-commit-hook Normal file → Executable file
View File

View File

@ -4,7 +4,7 @@
set -xev set -xev
# Configuration # Configuration
SSH_PORT='22' PORT_SSH='22'
# Kernel hardening settings # Kernel hardening settings
mkdir -p /etc/sysctl.d mkdir -p /etc/sysctl.d
@ -45,7 +45,7 @@ iptables -A INPUT -p icmp --icmp-type port-unreachable -j DROP
iptables -A INPUT -i lo -j ACCEPT iptables -A INPUT -i lo -j ACCEPT
# Allow SSH access from the Pi server # Allow SSH access from the Pi server
iptables -A INPUT -p tcp -s $PI_SERVER --dport $PORT_SSH -j ACCEPT iptables -A INPUT -p tcp --dport $PORT_SSH -j ACCEPT
# Save rules # Save rules
iptables-save > /etc/iptables/iptables.rules iptables-save > /etc/iptables/iptables.rules

47
scripts/thinvoid Executable file
View File

@ -0,0 +1,47 @@
#!/bin/sh
# Thin Client Void Linux Setup - Developed by acidvegas (https://git.acid.vegas/void)
GIT_URL="https://raw.githubusercontent.com/acidvegas/void/master"
passwd && sv stop sshd && xbps-remove openssh
ln -sf /usr/share/zoneinfo/America/New_York /etc/localtime
xbps-install -y dropbear oath-toolkit rsync socklog-void tmux tor tree wget
ln -sfv /etc/sv/nanoklogd /var/service
ln -sfv /etc/sv/socklog-unix /var/service
touch /swapfile && dd if=/dev/zero of=/swapfile bs=1M count=2k status=progress && chmod 0600 /swapfile && mkswap /swapfile && swapon /swapfile
{
echo "/dev/mmcblk0p1 /boot vfat ro,noatime,nodev,noexec,nosuid 0 2"
echo "/dev/mmcblk0p2 / ext4 rw,noatime 0 1"
echo "tmpfs /tmp tmpfs defaults,nosuid,nodev 0 0"
echo "proc /proc proc defaults,hidepid=2 0 0"
echo "/swapfile none swap sw 0 0"
} > /etc/fstab
printf "\nnohook resolv.conf\n" >> /etc/dhcpcd.conf && sv restart dhcpcd
printf "nameserver 9.9.9.9\nnameserver 149.112.112.112\nnameserver 2620:fe::fe\nnameserver 2620:fe::9" > /etc/resolv.conf && chattr +i /etc/resolv.conf
printf "skinny-mon\n" > /etc/hostname
printf "HOSTNAME=\"skinny-mon\"\nHARDWARECLOCK=\"UTC\"\nTIMEZONE=\"America/New_York\"\nKEYMAP=us\n" > /etc/rc.conf
printf "set boldtext\nset minibar\nset nohelp\nset nowrap\nset quickblank\nset tabsize 4\nunbind ^J main\nset selectedcolor black,red\ninclude \"/usr/share/nano/*.nanorc\"\n" > /etc/nanorc
printf "\nexport HISTFILE=/dev/null\nexport LESSHISTFILE=/dev/null\n" >> /etc/profile
printf '#!/bin/sh\nexec 2>&1\n[ -r conf ] && . ./conf\nexec dropbear -p CHANGE:ME -w -s -R -F\n' > /etc/sv/dropbear/run && chattr +i /etc/sv/dropbear/run && ln -sfv /etc/sv/dropbear /var/service
wget -O $HOME/pmf $GIT_URL/scripts/pmf && chmod +x $HOME/pmf
wget -O $HOME/.bashrc $GIT_URL/bash/.bash_thin
useradd -m -s /bin/bash acidvegas && passwd acidvegas
wget -O $HOME/.tmux.conf $GIT_URL/tmux/.tmux.conf
wget -O $HOME/.bashrc $GIT_URL/bash/.bash_thin
mkdir $HOME/.gnupg && wget -O $HOME/.gnupg/gpg.conf $GIT_URL/gpg/gpg.conf && chmod 700 $HOME/.gnupg
printf "pinentry-program /usr/bin/pinentry-curses\ndefault-cache-ttl 3600" > $HOME/.gnupg/gpg-agent.conf
chmod 600 $HOME/.gnupg/*
mkdir $HOME/.scripts
wget -O $HOME/.scripts/dmc $GIT_URL/scripts/dmc && chmod +x $HOME/.scripts/dmc
wget -O $HOME/.scripts/pass https://raw.githubusercontent.com/acidvegas/pass/master/pass && chmod +x $HOME/.scripts/pass

46
scripts/tlauncher Executable file
View File

@ -0,0 +1,46 @@
#!/bin/sh
# TMUX Launcher - Developed by acidvegas (https://git.acid.vegas/void)
start_wildwest() {
SESSION="WILDWEST"
tmux new-session -d -s $SESSION -n PI
tmux new-window -t $SESSION -n POWEREDGE
tmux split-window -h -t $SESSION:POWEREDGE
tmux split-window -v -t $SESSION:POWEREDGE.0
tmux split-window -v -t $SESSION:POWEREDGE.2
tmux send-keys -t $SESSION:POWEREDGE.0 "dbc r320-1" C-m
tmux send-keys -t $SESSION:POWEREDGE.1 "dbc r320-2" C-m
tmux send-keys -t $SESSION:POWEREDGE.2 "dbc r430" C-m
tmux send-keys -t $SESSION:POWEREDGE.3 "dbc r620" C-m
tmux select-layout -t $SESSION:POWEREDGE tiled
tmux set-window-option -t $SESSION:POWEREDGE synchronize-panes on
tmux new-window -t $SESSION -n TUNNEL
tmux send-keys -t $SESSION:TUNNEL "dbc tunnel" C-m
tmux attach-session -t $SESSION
}
start_supernets() {
SESSION="SUPERNETS"
tmux new-session -d -s $SESSION -n HUB
tmux new-window -t $SESSION -n WILDWEST
tmux new-window -t $SESSION -n NODES
tmux split-window -h -t $SESSION:NODES
tmux split-window -v -t $SESSION:NODES.0
tmux split-window -v -t $SESSION:NODES.2
tmux send-keys -t $SESSION:NODES.0 "dbc super-lux" C-m
tmux send-keys -t $SESSION:NODES.1 "dbc super-miami" C-m
tmux send-keys -t $SESSION:NODES.2 "dbc super-zooyork" C-m
tmux send-keys -t $SESSION:NODES.3 "dbc super-vegas" C-m
tmux select-layout -t $SESSION:NODES tiled
tmux set-window-option -t $SESSION:NODES synchronize-panes on
}
start_recon() {
SESSION="RECON"
tmux new-session -d -s $SESSION -n scan
tmux new-window -t $SESSION -n box2
tmux new-window -t $SESSION -n box3
tmux new-window -t $SESSION -n box4
tmux new-window -t $SESSION -n box5
tmux attach-session -t $SESSION
}

27
setup
View File

@ -14,6 +14,8 @@ REMOTE_PORT=2023 # CHANGE THIS
GIT_URL="https://raw.githubusercontent.com/acidvegas/void/master" GIT_URL="https://raw.githubusercontent.com/acidvegas/void/master"
setup_root() { setup_root() {
setup_packages
useradd -m -s /bin/bash acidvegas && gpasswd -a acidvegas wheel && passwd acidvegas useradd -m -s /bin/bash acidvegas && gpasswd -a acidvegas wheel && passwd acidvegas
wget -O /usr/share/kbd/consolefonts/ohsnap6x11r.psfu $GIT_URL/font/ohsnap6x11r.psfu wget -O /usr/share/kbd/consolefonts/ohsnap6x11r.psfu $GIT_URL/font/ohsnap6x11r.psfu
@ -32,9 +34,10 @@ setup_root() {
printf '#!/bin/sh\nexec 2>&1\n[ -r conf ] && . ./conf\nexec dropbear -p CHANGE:ME -w -s -R -F\n' > /etc/sv/dropbear/run printf '#!/bin/sh\nexec 2>&1\n[ -r conf ] && . ./conf\nexec dropbear -p CHANGE:ME -w -s -R -F\n' > /etc/sv/dropbear/run
printf "\nhsts=0\n" >> /etc/wgetrc printf "\nhsts=0\n" >> /etc/wgetrc
ln -sfv /etc/sv/lxd /var/service
ln -sfv /etc/sv/socklog-unix /var/service ln -sfv /etc/sv/socklog-unix /var/service
ln -sfv /etc/sv/nanoklogd /var/service ln -sfv /etc/sv/nanoklogd /var/service
ln -sf /etc/sv/dropbear /var/service/ ln -sfv /etc/sv/dropbear /var/service
} }
@ -43,7 +46,7 @@ setup_packages() {
if [ $CPU = "intel" ]; then if [ $CPU = "intel" ]; then
xbps-install -y intel-ucode xbps-install -y intel-ucode
xbps-reconfigure -f $(xbps-query -s linux | grep pkgver | cut -d " " -f 2) # Must regenerate initramfs xbps-reconfigure -f $(xbps-query -s linux | grep pkgver | cut -d " " -f 2) # Must regenerate initramfs (This is broken right now)
elif [ $CPU = "amd" ]; then elif [ $CPU = "amd" ]; then
xbps-install -y linux-firmware-amd xbps-install -y linux-firmware-amd
fi fi
@ -53,7 +56,7 @@ setup_packages() {
xbps-install -y linux-firmware-intel mesa-dri vulkan-loader mesa-vulkan-intel intel-video-accel xbps-install -y linux-firmware-intel mesa-dri vulkan-loader mesa-vulkan-intel intel-video-accel
fi fi
xbps-install -y xorg libX11-devel libX11 libXft-devel libXft libXinerama-devel libXinerama libXrandr-devel libXrandr xbps-install -y xorg libX11-devel libX11 libXft-devel libXft libXinerama-devel libXinerama libXrandr-devel libXrandr
xbps-install -y alacritty dmenu dunst firefox pinentry-dmenu scrot signal-desktop unclutter xclip xbps-install -y alacritty dmenu dunst firefox pinentry-dmenu redshift scrot Signal-Desktop unclutter xclip
xbps-install -y ohsnap-font font-unifont-bdf freefont-ttf noto-fonts-ttf noto-fonts-ttf-extra noto-fonts-cjk noto-fonts-emoji xbps-install -y ohsnap-font font-unifont-bdf freefont-ttf noto-fonts-ttf noto-fonts-ttf-extra noto-fonts-cjk noto-fonts-emoji
xbps-install -y alsa-utils cmus ffmpeg id3v2 eyeD3 youtube-dl # Revamp audio setup at some point xbps-install -y alsa-utils cmus ffmpeg id3v2 eyeD3 youtube-dl # Revamp audio setup at some point
xbps-install -y vscode xbps-install -y vscode
@ -63,15 +66,15 @@ setup_packages() {
xbps-install -y checkbashisms gcc go make patch pkg-config python3 python3-pip shellcheck xbps-install -y checkbashisms gcc go make patch pkg-config python3 python3-pip shellcheck
# Essentials # Essentials
xbps-install -y curl dropbrear git lxc lxd socklog-void tmux tor tree unzip zip xbps-install -y curl dropbear git lxc lxd socklog-void tmux tor tree unzip zip
xbps-install -y bandwhich glow gnupg2-scdaemon lazygit oath-toolkit progress rsync tmate xbps-install -y bandwhich glow gnupg2-scdaemon lazygit oath-toolkit progress rsync tmate
xbps-install -y earlyoom && ln -sfv /etc/sv/earlyoom /var/service/ #xbps-install -y earlyoom && ln -sfv /etc/sv/earlyoom /var/service/
# Alternatives # Alternatives
xbps-install -y bat btop delta exa xbps-install -y bat btop delta duf exa procs
# Recon # Recon
xbps-install -y masscan termshark xbps-install -y bpfmon masscan termshark
} }
@ -89,10 +92,8 @@ setup_configs() {
wget -O $HOME/.gitconfig $GIT_URL/git/.gitconfig wget -O $HOME/.gitconfig $GIT_URL/git/.gitconfig
mkdir $HOME/.gnupg && wget -O $HOME/.gnupg/gpg.conf $GIT_URL/gpg/gpg.conf mkdir $HOME/.gnupg && wget -O $HOME/.gnupg/gpg.conf $GIT_URL/gpg/gpg.conf
if [ $DISPLAY_SERVER = "xorg" ]; then printf "pinentry-program /usr/bin/pinentry-curses\ndefault-cache-ttl 3600" > $HOME/.gnupg/gpg-agent.conf
printf "pinentry-program $HOME/.gnupg/pinentry-wrapper\ndefault-cache-ttl 3600\n" > $HOME/.gnupg/gpg-agent.conf #printf "pinentry-program /usr/bin/pinentry-dmenu\ndefault-cache-ttl 3600" > $HOME/.gnupg/gpg-agent.conf
printf "if [ \"\$PINENTRY_USER_DATA\" = \"dmenu\" ]; then\n\texec /usr/local/bin/pinentry-dmenu \"$@\"\nelse\n\texec /usr/bin/pinentry-curses \"$@\"\nfi\n" > $HOME/.gnupg/pinentry-wrapper && chmod +x $HOME/.gnupg/pinentry-wrapper
fi
chmod 700 $HOME/.gnupg && chmod 600 $HOME/.gnupg/* chmod 700 $HOME/.gnupg && chmod 600 $HOME/.gnupg/*
mkdir $HOME/.ssh && touch $HOME/.ssh/config && chown -R $USER $HOME/.ssh && chmod 700 $HOME/.ssh && chmod 600 $HOME/.ssh/config mkdir $HOME/.ssh && touch $HOME/.ssh/config && chown -R $USER $HOME/.ssh && chmod 700 $HOME/.ssh && chmod 600 $HOME/.ssh/config
@ -129,7 +130,9 @@ setup_fun() {
git clone https://github.com/pythops/bouncinamation $BUILD/bouncinamation git clone https://github.com/pythops/bouncinamation $BUILD/bouncinamation
cargo build --release --manifest-path $BUILD/bouncinamation/Cargo.toml # Need to install cargo build --release --manifest-path $BUILD/bouncinamation/Cargo.toml # Need to install
go install github.com/maaslalani/confetty@latest # Need to revise go install github.com/maaslalani/confetty@latest # Animations
go install github.com/maaslalani/gambit@latest # Chess
go install github.com/maxpaulus43/go-sweep@latest # Minesweeper
} }

View File

@ -9,4 +9,6 @@ $HOME/.scripts/statusbar.sh &
# Example of dual monitor setup # Example of dual monitor setup
#{ sleep 2; xrandr --output HDMI1 --mode 1920x1080 --output DP1 --mode 1920x1080 --above HDMI1; } & #{ sleep 2; xrandr --output HDMI1 --mode 1920x1080 --output DP1 --mode 1920x1080 --above HDMI1; } &
redshift -P -O 3000 &
exec dwm exec dwm