forked from foxora/nix
Compare commits
72 commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 83bee06352 | |||
| b7d04fb7cc | |||
| 9de130a5c0 | |||
| 669128d4b6 | |||
| 662268f327 | |||
| cf23725f2f | |||
| 2a66cb0014 | |||
| be96d1dbf7 | |||
| ff97832d9f | |||
| adcfc52c60 | |||
| 7ff6be7692 | |||
| 3c203faa1e | |||
| 704d5be70b | |||
| a87d299687 | |||
| 2c4c350974 | |||
| 28ef9220d9 | |||
| 7f1f03f647 | |||
| 407e781019 | |||
| 356263a272 | |||
| e17387e800 | |||
| e29232d96c | |||
| 18f81ea61c | |||
| ea11023e98 | |||
| 67c8d10658 | |||
| 56d2fe2922 | |||
| e8c124bc16 | |||
| 6a3c29ef39 | |||
| 86fcbcbfbb | |||
| 5af73cbdd6 | |||
| df7e73c366 | |||
| b293101528 | |||
| 2c69e1f116 | |||
| 3e14220569 | |||
| 211fa03252 | |||
| 8b1a6aca39 | |||
| f925b42669 | |||
| 387cceeadc | |||
| 6827fca11c | |||
| f7a56bc7bb | |||
| 6240cdd4c6 | |||
| 42b25c30c8 | |||
| ce0ba8c002 | |||
| f3dc177ea4 | |||
| e4cd56e43d | |||
| 308b109a27 | |||
| 14507c9737 | |||
| 72767efe1f | |||
| 72b61631ce | |||
| af79d61c1b | |||
| 5c1749baa9 | |||
| 49c04f3cbd | |||
| 97611185fc | |||
| db539dbfaf | |||
| 9e6e73d2d9 | |||
| 12a9415de7 | |||
| d274bccefa | |||
| 80a3334813 | |||
| d66145df58 | |||
| c98db7bc0b | |||
| 8252c59090 | |||
| 6ba376e1f5 | |||
| 5ce35d8d36 | |||
| 0555ad18cd | |||
| e24b63b26c | |||
| 7434f51a16 | |||
| 79af2ce80f | |||
| cf5b772204 | |||
| 7d982c7ccc | |||
| fb2e2ee66b | |||
| 68cf02e366 | |||
| a354fca7f5 | |||
| 480b7a1ef2 |
93 changed files with 2838 additions and 853 deletions
598
flake.lock
generated
598
flake.lock
generated
File diff suppressed because it is too large
Load diff
72
flake.nix
72
flake.nix
|
|
@ -10,12 +10,16 @@
|
||||||
nixpkgs-master.url = "github:NixOS/nixpkgs/master";
|
nixpkgs-master.url = "github:NixOS/nixpkgs/master";
|
||||||
|
|
||||||
home-manager = {
|
home-manager = {
|
||||||
|
url = "github:nix-community/home-manager/release-25.11";
|
||||||
|
inputs.nixpkgs.follows = "nixpkgs";
|
||||||
|
};
|
||||||
|
home-manager-unstable = {
|
||||||
url = "github:nix-community/home-manager/master";
|
url = "github:nix-community/home-manager/master";
|
||||||
inputs.nixpkgs.follows = "nixpkgs-unstable";
|
inputs.nixpkgs.follows = "nixpkgs-unstable";
|
||||||
};
|
};
|
||||||
|
|
||||||
cerulean = {
|
cerulean = {
|
||||||
url = "git+https://tearforge.net/cry/cerulean";
|
url = "git+https://tearforge.net/cry/cerulean?rev=d5211287bd3cb96078f2053488d67d557848a8f2";
|
||||||
inputs = {
|
inputs = {
|
||||||
systems.follows = "systems";
|
systems.follows = "systems";
|
||||||
nixpkgs.follows = "nixpkgs";
|
nixpkgs.follows = "nixpkgs";
|
||||||
|
|
@ -24,41 +28,68 @@
|
||||||
|
|
||||||
microvm = {
|
microvm = {
|
||||||
url = "github:microvm-nix/microvm.nix";
|
url = "github:microvm-nix/microvm.nix";
|
||||||
inputs.nixpkgs.follows = "nixpkgs";
|
inputs.nixpkgs.follows = "nixpkgs-unstable";
|
||||||
};
|
};
|
||||||
|
|
||||||
cachyos.url = "github:xddxdd/nix-cachyos-kernel";
|
cachyos.url = "github:xddxdd/nix-cachyos-kernel";
|
||||||
|
|
||||||
nix-alien = {
|
|
||||||
# silly alien :3
|
|
||||||
url = "github:thiagokokada/nix-alien";
|
|
||||||
# inputs.nixpkgs.follows = "nixpkgs";
|
|
||||||
};
|
|
||||||
|
|
||||||
# wm/de/apps/theming flakes
|
# wm/de/apps/theming flakes
|
||||||
hyprland-git = {
|
hyprland-git = {
|
||||||
url = "github:hyprwm/Hyprland/25250527793eb04bb60f103abe7f06370b9f6e1c";
|
# pinned rev because color management is broken on hyprland
|
||||||
#url = "github:hyprwm/Hyprland";
|
# url = "github:hyprwm/Hyprland/25250527793eb04bb60f103abe7f06370b9f6e1c";
|
||||||
|
url = "github:hyprwm/Hyprland";
|
||||||
|
inputs.nixpkgs.follows = "nixpkgs-unstable";
|
||||||
};
|
};
|
||||||
hyprland-plugins = {
|
# hyprland-plugins = {
|
||||||
url = "github:hyprwm/hyprland-plugins";
|
# url = "github:hyprwm/hyprland-plugins";
|
||||||
inputs.hyprland.follows = "hyprland-git";
|
# inputs.hyprland.follows = "hyprland-git";
|
||||||
|
# };
|
||||||
|
|
||||||
|
mango = {
|
||||||
|
url = "github:DreamMaoMao/mangowc";
|
||||||
|
inputs.nixpkgs.follows = "nixpkgs-unstable";
|
||||||
};
|
};
|
||||||
|
|
||||||
nixcats.url = "github:BirdeeHub/nixCats-nvim";
|
nixcats.url = "github:BirdeeHub/nixCats-nvim";
|
||||||
awww.url = "git+https://codeberg.org/LGFae/awww";
|
|
||||||
zen.url = "github:0xc000022070/zen-browser-flake";
|
awww = {
|
||||||
iamb.url = "github:ulyssa/iamb";
|
url = "git+https://codeberg.org/LGFae/awww";
|
||||||
nixcord.url = "github:FlameFlag/nixcord";
|
inputs.nixpkgs.follows = "nixpkgs-unstable";
|
||||||
millennium.url = "github:trivaris/millennium?dir=packages/nix";
|
};
|
||||||
|
|
||||||
|
zen = {
|
||||||
|
url = "github:0xc000022070/zen-browser-flake";
|
||||||
|
inputs.nixpkgs.follows = "nixpkgs-unstable";
|
||||||
|
};
|
||||||
|
|
||||||
|
iamb = {
|
||||||
|
url = "github:ulyssa/iamb";
|
||||||
|
inputs.nixpkgs.follows = "nixpkgs-unstable";
|
||||||
|
};
|
||||||
|
|
||||||
|
nixcord = {
|
||||||
|
url = "github:FlameFlag/nixcord";
|
||||||
|
inputs.nixpkgs.follows = "nixpkgs";
|
||||||
|
};
|
||||||
|
|
||||||
|
millennium = {
|
||||||
|
url = "github:trivaris/millennium?dir=packages/nix";
|
||||||
|
inputs.nixpkgs.follows = "nixpkgs-unstable";
|
||||||
|
};
|
||||||
|
|
||||||
spicetify-nix = {
|
spicetify-nix = {
|
||||||
url = "github:Gerg-L/spicetify-nix";
|
url = "github:Gerg-L/spicetify-nix";
|
||||||
inputs = {
|
inputs = {
|
||||||
systems.follows = "systems";
|
|
||||||
nixpkgs.follows = "nixpkgs-unstable";
|
nixpkgs.follows = "nixpkgs-unstable";
|
||||||
|
systems.follows = "systems";
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
fenix = {
|
||||||
|
url = "github:nix-community/fenix";
|
||||||
|
inputs.nixpkgs.follows = "nixpkgs-unstable";
|
||||||
|
};
|
||||||
|
|
||||||
# temp theme until i bother creating my own </3
|
# temp theme until i bother creating my own </3
|
||||||
sddm-silent = {
|
sddm-silent = {
|
||||||
url = "github:uiriansan/SilentSDDM";
|
url = "github:uiriansan/SilentSDDM";
|
||||||
|
|
@ -70,6 +101,5 @@
|
||||||
extra-experimental-features = "pipe-operators";
|
extra-experimental-features = "pipe-operators";
|
||||||
};
|
};
|
||||||
|
|
||||||
outputs = inputs:
|
outputs = inputs: import ./snow.nix inputs;
|
||||||
import ./snow.nix inputs;
|
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
{ ... }: {
|
{...}: {
|
||||||
nix.settings = {
|
nix.settings = {
|
||||||
experimental-features = ["nix-command" "flakes"];
|
experimental-features = ["nix-command" "flakes"];
|
||||||
download-buffer-size = 524288000;
|
download-buffer-size = 524288000;
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
{ ... }: {
|
{...}: {
|
||||||
nix.settings = {
|
nix.settings = {
|
||||||
trusted-users = ["root" "@wheel"];
|
trusted-users = ["root" "@wheel"];
|
||||||
};
|
};
|
||||||
|
|
|
||||||
|
|
@ -1,8 +1,10 @@
|
||||||
# aurora's configgg!! :333
|
# aurora's configgg!! :333
|
||||||
# trans <3
|
# trans <3
|
||||||
{
|
{
|
||||||
|
config,
|
||||||
inputs,
|
inputs,
|
||||||
upkgs,
|
upkgs,
|
||||||
|
mpkgs,
|
||||||
root,
|
root,
|
||||||
system,
|
system,
|
||||||
...
|
...
|
||||||
|
|
@ -10,6 +12,7 @@
|
||||||
imports = [
|
imports = [
|
||||||
inputs.zen.homeModules.twilight
|
inputs.zen.homeModules.twilight
|
||||||
|
|
||||||
|
../modules/programs/alacritty/default.nix
|
||||||
../modules/programs/iamb/iamb.nix
|
../modules/programs/iamb/iamb.nix
|
||||||
../modules/programs/neovim/nixcats.nix
|
../modules/programs/neovim/nixcats.nix
|
||||||
../modules/programs/spicetify.nix
|
../modules/programs/spicetify.nix
|
||||||
|
|
@ -26,6 +29,7 @@
|
||||||
../modules/shell/fastfetch/fastfetch.nix
|
../modules/shell/fastfetch/fastfetch.nix
|
||||||
|
|
||||||
../modules/wm/hyprland/hyprland.nix
|
../modules/wm/hyprland/hyprland.nix
|
||||||
|
../modules/wm/mango/default.nix
|
||||||
../modules/wm/river.nix
|
../modules/wm/river.nix
|
||||||
../modules/wm/sway.nix
|
../modules/wm/sway.nix
|
||||||
|
|
||||||
|
|
@ -39,6 +43,8 @@
|
||||||
];
|
];
|
||||||
|
|
||||||
home.sessionVariables = {
|
home.sessionVariables = {
|
||||||
|
EDITOR = "avix";
|
||||||
|
|
||||||
# xdg session variables
|
# xdg session variables
|
||||||
XDG_CACHE_HOME = "$HOME/.cache";
|
XDG_CACHE_HOME = "$HOME/.cache";
|
||||||
XDG_CONFIG_HOME = "$HOME/.config";
|
XDG_CONFIG_HOME = "$HOME/.config";
|
||||||
|
|
@ -62,6 +68,12 @@
|
||||||
recursive = true;
|
recursive = true;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
# copies the ascii art into .local/share/ascii-art :3
|
||||||
|
home.file.".local/share/ascii-art" = {
|
||||||
|
source = root + "/homes/data/ascii-art";
|
||||||
|
recursive = true;
|
||||||
|
};
|
||||||
|
|
||||||
fonts.fontconfig.enable = true;
|
fonts.fontconfig.enable = true;
|
||||||
|
|
||||||
home.file.".mozilla/native-messaging-hosts/tridactyl.json".source = "${upkgs.tridactyl-native}/lib/mozilla/native-messaging-hosts/tridactyl.json";
|
home.file.".mozilla/native-messaging-hosts/tridactyl.json".source = "${upkgs.tridactyl-native}/lib/mozilla/native-messaging-hosts/tridactyl.json";
|
||||||
|
|
@ -94,8 +106,11 @@
|
||||||
popsicle # usb flasher (can be used as a gui tool too :3)
|
popsicle # usb flasher (can be used as a gui tool too :3)
|
||||||
caligula # disk burning tool like popsicle!
|
caligula # disk burning tool like popsicle!
|
||||||
exiftool # display and edit metadata on a variety of files
|
exiftool # display and edit metadata on a variety of files
|
||||||
helix # like neovim but rust /hj :333
|
|
||||||
halloy # irc tui app written in rust
|
halloy # irc tui app written in rust
|
||||||
|
pastel # color generator / manipulator :3 i love colors!! <3
|
||||||
|
eva # calculator repl
|
||||||
|
silicon # makes pretty images of code :3
|
||||||
|
wormhole-rs # send people stuff!! :3
|
||||||
|
|
||||||
# cli fun
|
# cli fun
|
||||||
pokeget-rs # prints a random pokemon to the terminal :3
|
pokeget-rs # prints a random pokemon to the terminal :3
|
||||||
|
|
@ -114,6 +129,8 @@
|
||||||
elixir
|
elixir
|
||||||
gleam
|
gleam
|
||||||
delta # git diff viewer
|
delta # git diff viewer
|
||||||
|
tlrc # tldr rust client
|
||||||
|
shellcheck
|
||||||
|
|
||||||
# apps
|
# apps
|
||||||
qutebrowser # keyboard-focused browser (chromium)
|
qutebrowser # keyboard-focused browser (chromium)
|
||||||
|
|
@ -121,7 +138,6 @@
|
||||||
tridactyl-native # for firefox browsers
|
tridactyl-native # for firefox browsers
|
||||||
chromium # (chromium)
|
chromium # (chromium)
|
||||||
obsidian # literally best notes app (i use vim mode)
|
obsidian # literally best notes app (i use vim mode)
|
||||||
kdePackages.dolphin
|
|
||||||
qimgv # image viewer!
|
qimgv # image viewer!
|
||||||
feh # other image viewer! (im indecisive)
|
feh # other image viewer! (im indecisive)
|
||||||
vesktop # modded discord client!
|
vesktop # modded discord client!
|
||||||
|
|
@ -130,9 +146,9 @@
|
||||||
imhex # hex editor
|
imhex # hex editor
|
||||||
kicad # open source electronics design program
|
kicad # open source electronics design program
|
||||||
easyeda2kicad
|
easyeda2kicad
|
||||||
libreoffice-qt # word, excel, pdf etc open source programs
|
# FIX: its fucking broken: https://github.com/NixOS/nixpkgs/pull/494721
|
||||||
|
mpkgs.libreoffice-qt # word, excel, pdf etc open source programs
|
||||||
hunspell # spell checker
|
hunspell # spell checker
|
||||||
calibre # ebook reader
|
|
||||||
obs-studio
|
obs-studio
|
||||||
cytoscape
|
cytoscape
|
||||||
element-desktop # 'official' gui matrix client
|
element-desktop # 'official' gui matrix client
|
||||||
|
|
@ -184,6 +200,7 @@
|
||||||
alsa-utils
|
alsa-utils
|
||||||
gphoto2 # for my dslr!!!
|
gphoto2 # for my dslr!!!
|
||||||
ffmpeg
|
ffmpeg
|
||||||
|
nix-index
|
||||||
];
|
];
|
||||||
|
|
||||||
programs = {
|
programs = {
|
||||||
|
|
@ -267,27 +284,36 @@
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
|
|
||||||
kitty = {
|
lazygit = {
|
||||||
enable = true;
|
enable = true;
|
||||||
package = upkgs.kitty;
|
settings = {
|
||||||
|
git.pagers = [
|
||||||
font = {
|
{
|
||||||
name = "DepartureMono Nerd Font Mono";
|
colorArg = "always";
|
||||||
size = 10;
|
pager = "delta --dark --pager=never --line-numbers --side-by-side";
|
||||||
|
}
|
||||||
|
];
|
||||||
};
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
foot = {
|
||||||
|
enable = true;
|
||||||
|
|
||||||
settings = {
|
settings = {
|
||||||
scrollback_lines = 16384;
|
main = {
|
||||||
enable_audio_bell = false;
|
font = "DepartureMono Nerd Font Mono:size=10";
|
||||||
update_check_interval = 0;
|
include = "/home/${config.home.username}/.config/foot/theme.ini";
|
||||||
allow_remote_control = "yes"; # used for scripts to control kitty
|
};
|
||||||
|
scrollback = {
|
||||||
confirm_os_window_close = 0; # disable close window prompt
|
lines = 131072;
|
||||||
|
};
|
||||||
|
bell = {
|
||||||
|
system = "no";
|
||||||
|
urgent = "no";
|
||||||
|
notify = "no";
|
||||||
|
visual = "no";
|
||||||
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
extraConfig = ''
|
|
||||||
include ~/.config/kitty/theme.conf
|
|
||||||
'';
|
|
||||||
};
|
};
|
||||||
|
|
||||||
zen-browser = {
|
zen-browser = {
|
||||||
|
|
|
||||||
BIN
homes/aurora/profile.png
Normal file
BIN
homes/aurora/profile.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 196 KiB |
19
homes/data/ascii-art/blackhole-1.txt
Normal file
19
homes/data/ascii-art/blackhole-1.txt
Normal file
|
|
@ -0,0 +1,19 @@
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠈⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠖⠃⠀⠀⠀⡁⠀⠀⠀⠀⠀⠐⠆⠀⠀⠀⠀⠀⠀⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡠⢔⡤⠊⠁
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠁⠀⠀⠀⠁⠀⠀⠘⠁⢀⠀⠀⠀⠀⢈⠓⠂⠠⡄⠀⠈⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⣠⣶⠿⠞⠋⠁⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠒⠁⠀⠠⡚⠁⢀⣙⣀⣈⡩⠬⢁⠀⢑⠶⠤⡆⠤⡀⠀⠀⠀⠀⠀⠀⢀⠴⢲⣋⣽⣷⠟⠃⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠁⠀⢠⠀⠀⣶⠃⠗⣡⣶⣮⣿⡿⠿⠿⢿⣿⣷⣶⣤⣤⠤⠴⠦⠬⣤⣤⠄⣉⠉⠝⢲⣿⡷⠻⠂⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠈⠀⠀⠀⠀⠁⡀⡸⠁⣰⣿⡿⠛⠋⣁⡀⠤⠤⢄⡀⠈⠛⢯⣿⣟⣾⣶⣶⣮⣭⣵⣾⣿⣟⠿⠉⢨⠖⠃⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢠⠀⢠⠳⡧⣻⡿⠋⢀⠒⠉⠀⠀⠀⠀⠀⠀⠉⠢⠀⠀⠙⠛⣻⣿⣿⣿⢿⣿⣿⠟⡱⠖⠊⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠁⢠⣧⠓⣾⣿⠁⠀⠃⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠉⢦⣠⣾⣿⠿⣿⣿⣿⡿⣫⠏⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡀⠀⠂⢃⣸⣿⠇⢠⠃⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⣠⣴⣿⠟⢿⠁⠸⡿⣿⣯⡶⠃⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠁⢘⡄⠘⣿⣿⠀⠸⡀⠀⠀⠀⠀⠀⢀⣀⣴⣾⣿⡿⡟⡋⠐⡇⠀⢸⣿⣿⠃⠀⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢡⠘⢰⣿⡿⡆⠀⣇⠀⣀⣠⣤⣶⣿⢷⢟⠻⠀⠈⠀⠀⠀⡇⠀⣼⣿⣿⠂⠀⡀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⠔⢀⡴⢯⣾⠟⡏⢀⣠⣿⣿⣿⣟⢟⡋⠅⠘⠉⠀⠀⠀⠀⢀⠀⠁⢠⣿⣟⠃⠀⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢠⠞⣻⣷⡿⢙⣩⣶⡿⠿⠛⠉⠑⢡⡁⠀⠀⠀⠀⠀⠀⢀⠔⠁⠀⣰⣿⣿⡟⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⣡⣾⣥⣾⢫⡦⠾⠛⠙⠉⠀⠀⢀⣀⠀⠈⠙⠓⠦⠤⠤⠀⠘⠁⢀⡤⣾⡿⠏⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠔⣴⣾⣿⣿⢟⢝⠢⠃⢀⣤⢴⣾⣮⣷⣶⢿⣶⡤⣐⡀⠀⣠⣤⢶⣪⣿⣿⡿⠟⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⡀⣦⣾⡿⡛⠵⠺⢈⡠⠶⠿⠥⠥⡭⠉⠉⢱⡛⠻⠿⣿⣿⣿⣿⣿⠿⠿⠿⠟⠭⠛⠂⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⢀⢴⠕⣋⠝⠕⠐⠀⠔⠉⠀⠀⠀⠀⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠉⠁⠉⠁⠁⠁⠁⠈⠀⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⢀⣠⠁⠈⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
||||||
22
homes/data/ascii-art/boykisser-1.txt
Normal file
22
homes/data/ascii-art/boykisser-1.txt
Normal file
|
|
@ -0,0 +1,22 @@
|
||||||
|
⠀⠀⠀⠀⠀⡀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡀⠀⠀
|
||||||
|
⠀⠀⠀⢠⠞⠙⢦⡀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⡠⠞⠙⡆⠀
|
||||||
|
⠀⠀⢠⠏⠀⠀⠀⠑⢄⠀⠀⠀⢠⣀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⡴⠋⠀⠀⠀⢸⡄
|
||||||
|
⠀⢀⡎⠀⠀⠀⠀⠀⠀⠳⣄⠀⠸⡄⠉⠉⠒⠢⣄⠀⠀⠀⠀⡴⠋⠀⠀⠀⠀⠀⠀⢧
|
||||||
|
⠀⢸⠀⠀⠀⠀⠀⠀⠀⠀⠈⠣⡀⠳⣀⣀⠀⠀⠀⠙⢦⣠⠎⠀⠀⠀⠀⠀⠀⠀⠀⢸
|
||||||
|
⠀⢸⠀⠀⠀⠀⠀⠀⠀⠀⣀⡴⠋⠉⠉⢁⠀⠀⠀⠀⠀⠙⠶⠀⠀⠀⠀⠀⠀⠀⠀⢸
|
||||||
|
⠀⢸⠀⠀⠀⠀⠀⠀⠀⠈⠉⠑⠒⠚⠉⠉⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⣼
|
||||||
|
⠀⠈⣆⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢠⠃
|
||||||
|
⠀⠀⠙⡄⠀⠀⠤⡤⠤⢤⣤⣤⣤⠄⠀⠀⠀⠀⢰⣶⣶⣶⡖⠒⢳⠛⠀⠀⠀⣠⠏⠀
|
||||||
|
⢤⣀⣀⡘⣤⠀⢸⠁⠀⢸⣿⣿⣿⠄⠀⠀⠀⠀⢸⣿⣿⣿⡇⠀⠈⡇⠀⠀⡴⠧⢤⡄
|
||||||
|
⠘⢆⠀⠉⠉⠀⢿⠀⠀⠘⣿⣿⡿⠀⠀⠀⠀⠀⠈⢿⣿⡿⠀⠀⢀⣇⠀⠀⠀⣠⠞⠀
|
||||||
|
⠀⠈⠙⢲⠀⡤⡮⣳⡀⠀⠙⠛⠁⠀⠻⠛⠀⠀⠀⠀⠁⠀⠀⡠⣮⡴⠀⠀⢾⡁⠀⠀
|
||||||
|
⠀⠀⣠⠃⠀⠀⠋⠁⠀⠀⠀⠀⠠⣀⣀⠴⠤⠤⠴⠒⠀⠀⠀⠶⠏⠀⠀⠀⠀⠹⡄⠀
|
||||||
|
⠀⠐⠧⠤⠤⠓⠦⣄⡀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⣀⣀⣠⠤⠚⠒⠒⠒⠊⠉⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠙⢟⠒⠒⠴⠇⠀⠀⠀⠀⠀⠀⠈⠉⣇⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠈⣱⠆⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠘⣆⠀⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠼⠥⣼⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠸⡄⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢰⠇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢣⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡏⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠸⡄⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠀⢸⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠀⣸⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢻⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⢠⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⣼⡆⠀⠀⠀⠀⠀
|
||||||
24
homes/data/ascii-art/butterfly-10.txt
Normal file
24
homes/data/ascii-art/butterfly-10.txt
Normal file
|
|
@ -0,0 +1,24 @@
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡤⠎⠉⠉⠓⣦⡀⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⣧⡭⣽⠀⠀⠀⣿⡆⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠉⠁⠀⠀⢠⣟⣇⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⣀⣀⣤⡤⣤⢤⣀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⣀⠤⣞⡷⡟⠣⣄⡀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⢀⣴⣫⣯⣿⠟⢛⣛⡷⢿⣿⡄⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⡶⠟⠟⠻⣟⣯⣿⡏⣯⢭⢽⣷⠆⠀⠀
|
||||||
|
⠀⠀⠀⠀⠉⣹⣿⣿⡟⠛⢏⣻⡏⣶⢙⡶⣄⠀⢠⠟⠛⢷⠀⠀⠀⠀⠀⠀⠀⠀⠀⢠⣿⠃⠀⠀⠀⠀⠀⠙⡿⣿⡟⣻⡗⠂⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⣿⣿⡿⣿⡻⡿⣗⡿⠿⣗⡙⢷⣇⠀⠀⣤⡇⠀⠀⠀⠀⠀⢀⣔⣽⡻⣤⣠⡤⣦⡤⣤⣤⣀⢹⡯⣿⠁⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⡿⡯⠁⠀⠀⠈⠈⠙⡷⡄⠀⠈⠳⡝⣆⠀⠀⠀⠀⠀⠀⠀⣼⣿⣿⡿⠛⠛⣫⡵⠋⠉⠉⣹⣿⣿⡿⡇⠀⠀⠀⠀
|
||||||
|
⠀⠀⣠⡶⠶⣶⣷⡧⡞⢀⣤⣤⣤⢤⣘⣷⣄⠀⠀⠦⡟⡇⠀⣠⣄⠀⠀⣾⡿⠈⢵⣶⡋⣗⣒⣒⣶⣾⠏⠁⢸⣿⣿⠀⠀⠀⠀⠀
|
||||||
|
⢠⡟⠁⠀⠀⠈⡷⣷⢥⣾⡿⠟⠿⢛⣻⣧⣝⣧⡀⠀⠘⣿⣼⣿⣿⣇⣿⢃⣾⠿⠟⠋⠉⠉⠫⣯⣹⣇⡀⣜⡟⡿⠀⠀⠀⠀⠀⠀
|
||||||
|
⡟⡇⠀⠀⠀⠀⠸⣟⠿⡿⡯⣧⢦⣄⠀⠈⠑⠳⣿⣷⣴⣯⠻⠹⠇⣿⢷⢏⣡⠋⠀⠀⠖⠛⠛⡣⣿⡏⡾⢹⡟⣿⣛⣓⡦⡄⠀⠀
|
||||||
|
⢟⣇⣀⣀⡇⠀⠀⠀⠳⣟⣿⣿⣇⡞⡽⢶⣦⡄⠀⠻⣧⠈⠁⠀⠀⣍⡿⢻⣻⡕⣃⣴⣶⡿⣿⢯⡷⠛⣠⣼⡞⠋⠁⠀⠈⢯⢧⠀
|
||||||
|
⠀⠙⠛⠛⠉⠀⢀⣠⡄⣈⠳⢟⣿⠷⠷⠯⡾⡿⠃⠀⢫⡀⠀⠀⠀⠃⡧⣾⡿⡷⣿⣟⣛⡿⢿⠟⣷⣿⣯⠇⠀⠠⢤⡀⠀⠀⢿⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⣟⠁⠉⠣⡝⡆⡵⡳⢳⣶⣾⣯⣮⣥⣀⠃⠀⠀⠀⠀⢛⡿⠿⣷⡶⠮⢿⣿⣺⣿⡯⠅⢭⣷⡤⠤⠜⠀⠀⣀⡼⠃
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠀⣶⣿⣿⣫⠇⣷⣗⣛⣽⠷⣿⡥⠄⠀⠀⠀⠀⠈⡏⠛⢻⣽⢿⣈⡿⡿⠃⠁⠀⠀⠀⠙⡷⡄⠀⠀⠀⠀⠁
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⡷⣬⣻⡏⠁⡿⢸⣿⣿⣿⡿⠋⠁⡀⠀⠀⠀⠀⡾⣯⢟⡌⣿⣿⣿⠿⣿⣒⠂⠀⠀⠀⡄⠘⡇⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⢰⣽⣻⡟⠁⠀⣧⣿⡿⠃⠀⣀⣀⣾⡇⡰⠀⠀⣜⢻⣇⢹⣿⡌⢿⣟⡄⣿⣿⣿⠟⠂⠙⠓⠛⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠘⢛⣿⣿⣿⡇⠀⡤⣿⡟⠁⠀⠈⣿⣿⢼⠻⠁⠀⠀⢸⠀⠹⣿⡟⣯⣿⣿⡭⠇⡻⣿⢷⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⢨⣷⣿⣿⣧⡗⠁⣿⡇⠀⠀⠀⡻⡟⠁⠀⠀⠀⠀⠘⡄⠀⠀⠛⡷⡯⣟⡏⠆⠀⣿⡿⣄⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠈⢘⣾⣿⣿⣇⣤⡷⣥⠔⣆⡼⠋⠀⠀⠀⠀⠀⠀⠀⠻⣦⡀⠀⠘⠏⢯⢁⣤⣿⣟⣃⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠏⠀⡏⡿⣿⣿⣫⣩⠿⠃⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠙⢷⣷⣶⣶⣿⣿⣿⣿⡟⠇⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠚⠁⡯⣿⡏⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠹⣿⠿⣿⣻⡿⣇⠀⠀⠀⣿⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠓⢿⣦⠀⠀⣠⣄⡀⠀⠀⠀⠀⠀⠀⠀⠀⣶⡄⠀⠀⣠⡷⢿⣿⠏⠑⠯⣛⡷⠟⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠉⠿⣦⡽⠟⠃⠀⠀⠀⠀⠀⠀⠀⠀⠻⠿⠷⣯⣽⠿⠋⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
||||||
24
homes/data/ascii-art/butterfly-11.txt
Normal file
24
homes/data/ascii-art/butterfly-11.txt
Normal file
|
|
@ -0,0 +1,24 @@
|
||||||
|
⠀⢀⣠⣤⣤⣤⣄⣀⡀⠀⠀⠀⠀⠀⠀⠀⠀⢀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⣀⣠⣤⣤⣤⣀⠀
|
||||||
|
⢰⣿⣿⣿⣿⣿⣿⣿⣿⣷⣦⣤⡀⠀⠀⠀⠀⠀⢂⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠎⠀⠀⠀⠀⠀⣀⣤⣶⣿⣿⣿⣿⣿⣿⣿⣿⣷
|
||||||
|
⠸⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣷⣦⡀⠀⠀⠈⢆⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠜⠀⠀⠀⣠⣴⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⡿
|
||||||
|
⠀⠹⣿⣿⣿⣿⣿⣿⣿⣿⣿⠿⠿⠧⠉⠻⣶⣄⠀⠈⢆⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠄⠀⢀⣠⡾⠛⠉⠿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⠃
|
||||||
|
⠀⠀⢻⣿⣿⣿⣿⣿⣿⣿⣖⡒⠀⠀⠀⠀⠈⠻⣷⣄⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠌⠀⣠⣾⠋⠀⠀⠀⠀⠀⢒⣿⣿⣿⣿⣿⣿⣿⣿⠃⠀
|
||||||
|
⠀⠀⠀⣿⣿⣿⣿⣿⣿⣿⣟⠀⠀⠀⠀⠀⠀⠀⠙⢿⣦⡀⠀⠀⠀⠀⠀⠀⠀⠀⢀⣾⠟⠁⠀⠀⠀⠀⠀⠀⢘⣿⣿⣿⣿⣿⣿⣿⡏⠀⠀
|
||||||
|
⠀⠀⠀⢸⣿⣿⣿⣿⣿⣿⠟⠂⠀⠀⠀⠀⠀⠀⠀⠀⠉⢷⡀⠀⠀⠀⠀⠀⠀⢠⡿⠁⠀⠀⠀⠀⠀⠀⠀⠐⢒⣿⣿⣿⣿⣿⣿⣿⠁⠀⠀
|
||||||
|
⠀⠀⠀⠘⣿⣿⣿⣿⡿⠟⠛⠉⡁⠀⠀⠀⠀⠀⠀⠀⠀⠈⢷⠀⠱⣀⣀⠀⢀⠟⠀⠀⠀⠀⠀⠀⠀⠀⠈⠙⠛⠿⢿⣿⣿⣿⣿⣿⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⣿⣿⣿⣿⣿⣿⠟⠋⠉⠉⠁⠀⠀⠀⠀⠀⠀⠀⠀⠃⢸⣿⣿⠀⠊⠀⠀⠀⠀⠀⠀⠀⠀⠉⠉⠙⠛⢿⣷⣿⣿⣿⣿⡟⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠸⣿⣿⣿⣿⡷⠖⠒⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠠⣤⣿⣿⣿⣇⡠⠄⠀⠀⠀⠀⠀⠀⠀⠀⠀⠑⠲⠶⣿⣿⣿⣿⣿⠁⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠙⠻⠿⠿⢿⣶⣤⣤⣤⣤⣄⠐⠒⠒⠀⠀⠀⠀⣻⣿⣿⣿⣿⡇⠀⠀⠀⠀⠐⠂⠀⣤⣤⣤⣤⣤⡾⠿⠿⠿⠛⠁⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⢀⣤⣶⣿⣿⣿⣿⠿⠁⠀⠀⠀⠀⠀⠀⠀⠈⢻⣿⣿⠃⠀⠀⠀⠀⠀⠀⠀⠀⠩⢿⣿⣿⣿⣷⣦⡄⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⣾⣿⣿⣿⣿⣯⠅⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⢼⣿⣿⢆⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢬⣽⣿⣿⣿⣿⡀⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⣿⣿⣿⣿⣏⣀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡞⠸⣿⡟⠀⡆⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⣈⣛⣿⣿⣿⡇⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⣿⣿⣿⣿⡿⢁⣤⡖⠀⠀⠀⠀⠀⠀⠀⢸⠁⠀⣿⡇⠀⢹⠀⠀⠀⠀⠀⠀⠀⠀⢤⡀⠸⣿⣿⣿⡿⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⢹⣿⣿⣿⣵⣿⣿⣤⡄⠀⠀⠀⠀⠀⠀⡌⠀⠀⠙⠁⠀⠈⡇⠀⠀⠀⠀⠀⠀⣠⣌⣿⣷⣼⣿⣿⠃⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⢻⣿⣿⣿⣿⣿⣿⣡⣴⠀⠀⠀⠀⢀⠀⠀⠀⠀⠀⠀⠀⢰⠀⠀⠀⠀⠰⣤⣹⣿⣿⣿⣿⣿⠏⠀⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠀⢿⣿⣿⣿⣿⣿⣿⣧⣤⣀⣤⢀⡎⠀⠀⠀⠀⠀⠀⠀⠀⣇⢀⡄⢀⣤⣿⣿⣿⣿⣿⣿⡟⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠘⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⠇⠀⠀⠀⠀⠀⠀⠀⠀⢸⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⣿⣿⣿⣿⣿⣿⣿⣿⣿⡿⠋⠀⠀⠀⠀⠀⠀⠀⠀⠀⠘⢿⣿⣿⣿⣿⣿⣿⣿⣿⣿⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠀⢰⡿⠛⠉⠉⠉⠛⠛⠛⠉⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠉⠛⠛⠛⠛⠉⠉⠉⠻⣷⡀⠀⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⣰⣿⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢹⣷⡄⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⢰⣿⡟⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢸⣿⣷⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠙⠃⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠻⠋⠀⠀⠀⠀⠀⠀⠀
|
||||||
44
homes/data/ascii-art/butterfly-12.txt
Normal file
44
homes/data/ascii-art/butterfly-12.txt
Normal file
|
|
@ -0,0 +1,44 @@
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⣀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⣆⠀⠀⠀⠀⠀⠀⠀⠀⠐⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢠⡾⠋⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⠸⣆⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢸⠃⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠙⣷⣄⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢸⡄⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠈⠙⢷⣤⣀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠘⣧⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠈⠙⠛⠿⣶⣶⣶⣶⣦⣤⣄⣀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢻⣆⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⢰⣿⣿⣿⣿⣿⣿⣿⣿⣿⣶⣤⡄⠂⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⣠⣿⣆⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⢸⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣷⣤⡀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⣾⣿⣿⣿⣧⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⢸⣿⣿⣿⣿⣿⣽⣻⣿⣿⣿⣿⣿⣿⣿⣿⣷⣄⡀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢸⣿⣿⣿⣿⣿⣇⠀⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠀⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣦⡀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⣾⣿⣿⣿⣿⣿⣿⡄⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠈⢿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣦⡀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⣼⣿⣿⣿⣿⣿⣿⣿⣷⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢈⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣦⡀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⣿⣿⣿⣿⣿⣿⣿⣿⣿⡄⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠈⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⡿⣿⣿⣿⣿⣿⣦⡀⠀⠀⠀⠀⠀⠀⠀⢀⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣇⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠙⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣽⣿⣿⣧⢹⣿⣿⣿⣿⣿⣿⣄⠀⠀⠀⠀⠀⠀⢸⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣷⣌⠛⠿⠋⠻⣦⣿⣿⣿⣿⣿⣿⣿⣧⡀⠀⠀⠀⣴⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⡀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠹⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣦⣄⠀⠈⠻⣿⣿⣿⣿⣿⣿⣿⣷⡄⠀⢀⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⡇⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢹⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⡟⢻⣦⣶⠀⡈⣿⣿⣿⣿⣿⣿⣿⣿⣶⣿⣿⣿⣿⣿⣿⣿⣿⣿⡟⣷⣿⣿⣿⡇⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⣸⣿⣿⣾⣿⣿⣿⣿⣿⣿⣄⣈⣿⡆⢿⡟⠻⣿⡿⠋⠉⠛⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣇⢿⣿⣿⣿⡇⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠹⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⡟⠃⣸⣿⣿⣿⡇⠀⠀⠀⠈⠻⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣽⣿⣿⣼⣿⣿⣿⡇⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠹⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣷⣤⣝⡛⢹⣇⠄⠀⠀⠀⠀⠘⢿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⠿⣿⣿⣿⡇⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⣼⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣟⣿⣿⣿⣿⣶⣿⡤⠄⠀⠀⠀⠀⣀⠻⣿⣿⣿⣿⣿⣿⣿⣿⣿⡏⠀⣿⣿⣿⡇⡀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢿⣿⣿⣿⣿⣿⣿⣿⣿⣷⣤⡟⠃⠻⣿⣛⠿⠟⢷⡛⡈⢷⡀⠀⠘⢇⠈⢿⣿⣿⣿⣿⣿⣿⣿⡅⠀⣿⣿⣿⠇⠻⣆⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠈⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣦⣀⠀⠃⠉⠛⠦⠈⢷⡀⠈⢻⣄⠀⠈⢃⠈⢿⣿⣿⣿⣿⣿⢻⡇⠀⣿⣿⣿⠀⠀⢻⡀⢀⡀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣏⠛⠻⠶⢦⣄⣃⠈⢿⡄⠀⠹⣦⢸⣿⣧⠘⣿⣿⣿⣿⣿⣸⡇⠸⣿⣿⡟⠀⠀⢸⡇⠘⡇
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⡦⠤⣤⣄⣈⠙⠻⢦⣿⣆⠀⠈⠋⣿⣿⣧⠸⣿⢿⣿⣿⣿⣠⡄⣿⣿⡇⠀⠀⣼⠀⠀⡇
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢻⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣇⡀⠀⠈⠉⠛⠶⣦⣭⣿⣦⣰⠀⠈⣿⣿⣆⢻⡌⢿⣿⣿⣿⣇⣿⣿⠀⠀⢠⡏⠀⣼⠃
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣧⣤⣔⣂⡠⠉⡙⠿⣿⣿⣦⡈⢿⣿⡌⣷⠸⣿⣿⣿⣿⣿⡏⠀⢠⡟⢀⣼⠃⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠈⢿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣷⣶⣤⣼⣮⣿⣿⣾⡿⢷⢸⡀⢿⣿⣿⣿⣿⠁⣠⠟⣠⠟⠁⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠙⠻⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣻⣿⣿⣿⣿⣆⢸⡇⠘⣿⣿⣼⠏⣴⡿⠟⠁⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⣀⣤⣽⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⢿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣧⡁⠀⢿⣿⣿⣿⣿⣆⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⣤⣾⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣷⣶⣤⣯⣭⣛⡻⠿⠿⣿⣷⣄⣼⠿⢿⣿⠛⠛⠁⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢹⣿⣿⣿⣿⣿⣿⣿⡿⠋⠉⠉⠹⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⡿⢿⣿⢶⣮⡝⠻⣿⣷⣾⠟⠀⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⣾⣿⣿⣿⣿⣿⣿⣿⣷⣶⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣶⣶⠁⢀⣤⣾⡿⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⣴⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⡴⠿⢋⣩⣭⠿⣿⡿⢿⣿⣿⣿⣿⣿⣿⡿⠿⠂⣾⣿⣿⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢻⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣏⣡⣴⣾⡿⠏⣀⣤⣴⢾⣿⣿⣿⡿⢛⠉⣀⣀⣤⠾⢻⣿⣿⣿⡄⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢘⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣯⣶⣿⢿⢿⣧⣾⣿⡟⠉⢀⣴⠞⠉⠁⠀⠀⠀⠛⠿⠿⠃⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⣼⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⢟⣁⣴⣿⣿⣿⣿⣾⣶⠟⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠂⠀⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⣀⣤⣤⣶⣶⣶⣾⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⠟⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⣠⣴⠿⣿⣿⣻⣿⣟⠝⠛⠻⣿⣿⣿⣿⣿⣟⣿⣿⣿⣿⣿⣷⣿⣿⣿⣿⣿⣿⣿⡿⠋⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠉⠛⠁⠀⠀⠀⠀⠈⣿⣿⣿⣿⣿⣿⣿⣛⣷⣿⣿⠟⢋⣽⣿⣿⣿⠟⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠛⠻⢿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⢿⣿⡿⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢻⣿⣿⣿⣿⣿⡿⣿⣿⡿⠟⠋⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠈⠀⠀⠀⠀⠀⠀⠀⠀⠀⠛⢿⣿⠛⠉⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠄⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
||||||
28
homes/data/ascii-art/butterfly-13.txt
Normal file
28
homes/data/ascii-art/butterfly-13.txt
Normal file
|
|
@ -0,0 +1,28 @@
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⣀⡀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⢀⣠⣀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⡴⠛⢦⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⣰⠏⠁⠉⠳⣄⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⡾⠀⠈⠳⣄⠀⠀⠀⠀⠀⢀⣴⠟⠁⠀⠘⣦⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⣄⡇⠀⠀⠀⠀⠘⢦⡀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⢠⠇⠀⠀⠀⠈⢧⡀⠀⣠⠴⠊⠀⠀⠀⠀⠀⣿⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⣿⣿⠀⠀⠀⣴⠖⠲⢬⣳⣄⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⢀⡾⠀⠀⠀⠀⠀⢉⣷⠚⠁⠀⠀⠀⠀⠀⠀⢸⠉⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠁⡇⠀⠀⢰⠃⠀⠀⠀⠈⠙⢿⡂⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⣰⠏⠀⠀⠀⠀⠀⠀⢼⠉⡇⠀⠀⠀⠀⠀⠀⢠⡎⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⣇⠀⠀⡾⠀⠀⠀⠀⠀⠀⣰⠟⠦⣀⠀⠀⠀⠀⠀
|
||||||
|
⠀⡼⠁⠀⠀⠀⠀⠀⠀⠀⠸⡄⢻⡀⠀⠀⠀⠀⢀⠞⠀⢀⣀⠀⠀⠀⠀⠀⠀⣶⡄⠀⠀⠀⠀⢸⠀⠀⡇⠀⠀⠀⠀⣠⠞⠁⠀⠀⠘⡇⠀⠀⠀⠀
|
||||||
|
⠀⢧⡀⠀⠀⠀⠀⠀⠀⠀⠀⢳⣸⡇⠀⠀⠀⣴⣏⡴⠚⠉⠙⠃⠀⠀⠀⣀⡀⠙⠦⣄⠀⠀⠀⠘⡇⢠⡇⠀⠀⢠⠜⠁⠀⢀⣀⣠⣼⣃⣀⡀⠀⠀
|
||||||
|
⠀⠀⠉⢙⣲⣤⣤⡤⠤⢤⡀⠀⢳⣧⠀⣠⢞⡷⢋⡴⠖⠙⣷⠀⠀⠀⠀⠻⢧⣀⡀⠈⠙⢦⡀⠀⣷⢸⠇⠀⡴⢃⣠⠖⣺⡭⠛⠁⠀⠀⠈⠉⠳⡄
|
||||||
|
⢠⡶⠊⠉⠀⠀⠀⠈⠉⠙⠃⠀⠈⣿⣶⣱⣿⠟⠉⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠈⠉⠙⠲⢼⣦⣽⢿⢠⣾⢟⣫⠴⠋⠁⠀⠀⠀⠀⠀⠀⠀⠈⡗
|
||||||
|
⠸⣆⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⣿⣟⠛⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⣿⣿⣿⣟⣏⣁⣀⣀⣀⡠⠤⠴⢒⣒⣷⠆⠀⢠⠇
|
||||||
|
⠀⠈⠙⠲⠤⣀⠀⠀⠀⠀⠀⢀⣾⠳⣿⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠈⠉⠉⢻⡛⢦⡛⠳⠭⣍⣉⠉⠉⠀⠀⢀⣠⠏⠀
|
||||||
|
⠀⠀⠀⠀⠀⠈⠳⢤⣀⣀⡴⠋⣇⣴⠃⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠙⢦⡙⢦⠀⠀⠉⠉⠒⠒⠒⠋⠁⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠉⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠳⣼⡖⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⣀⣀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⣀⡀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⢰⠋⠀⠙⢦⡀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢠⠏⠀⠙⣄⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⢠⢸⡄⠀⠀⠀⠙⣆⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡞⠀⠀⠀⠘⠦⣄⡀⠀⠀⢀⡤⠴⠲⠤⣤⡀⠀⠀⠀⠀
|
||||||
|
⠀⢸⣸⡇⠀⠀⠀⠀⠈⢧⠀⠀⠀⢀⠀⠀⠀⠀⠀⠀⠀⣀⣠⠤⠦⣄⠀⠀⠀⠀⠀⠀⢸⡇⠀⠀⠀⠀⠀⠀⠹⣤⠞⠉⠀⠀⠀⠀⣾⡇⠀⠀⠀⠀
|
||||||
|
⠀⢸⡏⠀⠀⠀⠀⠀⠀⠘⡆⠀⢰⡏⣠⠖⠀⠀⣠⠶⠋⠁⠀⠀⣠⠟⠀⠀⠀⠀⠀⠀⠸⡇⠀⠀⠀⠀⠀⢀⣼⠋⠀⠀⠀⠀⠀⠀⢿⡀⠀⠀⠀⠀
|
||||||
|
⠀⠈⢳⠀⠀⠀⠀⠀⠀⠀⢸⡄⢸⣻⠁⠀⣠⠞⠁⠀⠀⠀⢀⡴⠃⠀⠀⠀⠀⠀⠀⠀⠀⢳⠀⠀⠀⠀⣠⣻⠏⠀⠀⠀⠀⠀⠀⠀⠈⢧⡀⠀⠀⠀
|
||||||
|
⠀⠀⠈⠳⠤⣀⣀⠀⠀⠀⠀⣧⢸⡇⢀⠜⠁⠀⠀⠀⠀⣰⠋⠀⠀⠀⠀⠀⣀⣀⠀⠀⠀⠘⣆⠀⠀⣰⣳⠃⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⣿⠀⠀⠀
|
||||||
|
⠀⢀⣤⠒⠒⠚⠛⠻⠷⠶⣶⣾⣾⣷⠋⠀⠀⠀⠀⠀⣰⠃⠀⠀⠀⠀⠀⠀⢿⠉⠙⠲⣄⠀⠹⡄⣴⡽⠃⠀⠀⠀⠀⠀⠀⣀⣤⣤⣴⠾⣥⣀⠀⠀
|
||||||
|
⠀⢿⡅⠀⠀⠀⠀⠀⠀⠀⣼⣿⠏⠓⢶⣦⣀⣀⣀⡼⠁⠀⠀⠀⠀⠀⠀⠀⠈⣞⠉⠙⠲⢿⣶⣷⡿⠁⠀⠀⠀⣠⠴⠚⣉⠤⠞⠉⠀⠀⠀⢸⣧⠀
|
||||||
|
⠀⠸⢯⠀⠀⠀⠀⠀⢀⡾⢻⣿⠀⠀⠀⠙⢦⡀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠉⠀⠀⠀⠀⠀⠛⣿⢦⣄⡀⠘⠓⠉⠉⠀⠀⠀⠀⠀⠀⠀⣼⠟⠀
|
||||||
|
⠀⠀⠘⢦⣀⣀⡤⠞⢹⣠⠏⡇⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠈⢧⡙⠫⢟⡓⠦⠤⣄⣀⠀⠀⠀⢀⠞⠁⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠘⠻⠀⡇⠀⠀⣀⣤⠖⠃⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠙⠢⢤⣉⣦⠀⠀⠉⠙⠒⠒⠋⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠉⠉⠉⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
||||||
25
homes/data/ascii-art/butterfly-14.txt
Normal file
25
homes/data/ascii-art/butterfly-14.txt
Normal file
|
|
@ -0,0 +1,25 @@
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠀⢠⣾⣿⣶⣄⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⢀⣿⣿⣟⠻⡿⢷⣄⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⣸⣻⠿⢮⡿⣾⡖⠚⣧⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⢰⣿⣿⣄⠒⢦⠸⣿⣄⠙⣧⠀⠰⣦⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⢀⣾⣿⣿⣛⣷⣞⠳⣄⠘⡆⠙⢇⠀⠀⠰⡀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⣸⣯⡝⠻⣿⣏⠉⠻⣮⣷⣝⣶⣼⡀⠀⠀⢱⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⢀⣇⠈⠙⢤⠈⢳⡀⠀⠹⣌⢻⠀⠙⣧⠀⠀⠈⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⣼⠋⠳⢤⣄⡑⠀⠹⡄⠀⣌⠀⢳⡀⠸⡆⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⢀⣀⠀⣠⣤⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⢹⣄⠀⠂⢻⡉⠑⣦⠹⡄⠸⡄⠀⢷⡄⡇⠀⠀⡇⠀⠀⠀⠀⣀⠤⠒⠋⠁⠀⠀⠈⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠙⠿⣶⣤⣝⠀⠀⠀⢿⡶⢧⠀⠸⡇⡗⠀⢀⠃⠀⢀⡴⠊⠁⠀⠀⠀⠀⠀⠀⠀⠀⢀⣀⣀⣠⣤⣤⣤⣀⣀⡀⠀⠀
|
||||||
|
⠀⠀⠀⠀⢀⣀⣀⣀⡀⠙⢻⣷⣦⡀⠈⠋⠈⢧⠀⠀⡇⠀⠈⠀⠔⠋⠀⠀⢀⣀⣤⣤⣤⡶⢶⣿⠿⠭⢥⢽⣁⣤⠀⠒⠿⠿⣿⣷⣆
|
||||||
|
⠀⢀⡠⠚⠉⠉⠀⠀⠀⠀⠀⠙⢿⣿⣶⣤⣤⡘⣆⣼⣃⣴⣦⠀⠀⣀⡴⠞⣛⡉⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⠘⣿⣛⣖⠲⠦⣄⣸⡿
|
||||||
|
⢠⠾⠒⠶⠀⠀⠀⠀⠀⡀⠀⡙⢺⣏⠛⢿⣿⣿⣿⣿⣿⣿⣿⣶⠞⡩⠖⠋⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠓⠒⠤⣍⣙⣓⠶⣴⣶⠟⠁
|
||||||
|
⡾⠀⠂⠀⠀⠀⠀⠀⠈⠑⠉⢡⣿⣿⠛⠲⣤⣯⣿⣿⣿⣿⣿⣥⡞⠒⠒⠚⠛⠓⠠⣀⠀⠀⠀⠠⠄⠀⠠⣤⣷⣌⢙⣿⣦⡾⠋⠀⠀
|
||||||
|
⡗⠺⠤⠛⠉⠉⠁⠐⠉⠉⣹⣿⢿⢃⣠⣾⢋⣾⣿⣿⣿⣟⠻⠏⡿⣗⣦⡀⠀⠀⠀⠈⠙⠲⣄⡀⠀⠀⠀⠈⠙⠿⣿⣿⠟⠀⠀⠀⠀
|
||||||
|
⣇⣠⠤⠀⠀⠀⠀⢀⣴⡾⢛⡽⢋⣽⣟⣵⢫⣿⣿⣯⡏⢣⠀⠄⠀⠈⠉⢙⣻⠖⢦⣄⡀⠀⠤⢙⠶⣤⡀⠈⢳⣰⡟⠁⠀⠀⠀⠀⠀
|
||||||
|
⢿⠀⠀⠀⢀⡴⢪⠟⢩⠖⠋⢠⡾⢻⡟⢁⣿⣿⣿⡟⡀⠘⠀⣴⠀⣤⡐⠂⠈⠉⢗⣟⠿⣶⣤⡀⠲⣤⣹⣿⠞⠉⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⠘⣧⠀⠀⠈⠀⠀⠀⠀⡀⣠⠏⣴⠏⠀⢸⣿⠟⠻⢀⠆⠀⢀⠈⢳⡸⡗⢤⡀⠉⠪⠙⢧⡀⠉⠙⠓⠛⠛⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠘⢧⡀⠀⠀⢀⡴⢂⣜⡥⠚⠁⠀⠀⠀⠁⢠⡆⢸⣰⠀⠈⣧⠀⠑⢿⠀⠙⢦⠀⠀⡀⠻⣄⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠈⠳⣤⣖⣋⡴⠟⠉⠀⠀⠀⠀⠀⠀⠀⢸⡇⢸⢹⠆⠀⢸⡄⠀⠈⢷⡀⠀⠑⢦⡜⢦⣹⡄⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢸⠃⣼⣾⠀⠈⢀⢳⡀⢠⡈⢻⣦⡀⠀⠙⢮⣿⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠘⣇⡿⡼⠀⠄⠈⠈⣇⠀⠹⣌⠹⣿⣄⠳⢰⣿⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢿⡁⢻⠀⠀⠀⠀⠙⠂⠀⠹⡁⡈⡻⣦⠾⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠘⢧⣸⡄⠀⠀⠀⠀⠀⢰⣄⣃⡴⠛⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠉⠓⠒⠒⠒⠒⠒⠋⠉⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
||||||
7
homes/data/ascii-art/butterfly-15.txt
Normal file
7
homes/data/ascii-art/butterfly-15.txt
Normal file
|
|
@ -0,0 +1,7 @@
|
||||||
|
⢴⡦⡀⠀⠀⠀⠀⠀⠀⠀⡠⠔⢶⡄
|
||||||
|
⣨⠇⠈⢆⠀⠀⠀⢀⠔⠁⠀⠀⣮⠀
|
||||||
|
⣿⠀⠀⠀⢣⠀⡠⠃⠀⠀⠀⠀⠈⣿
|
||||||
|
⣿⡀⠀⢀⣾⣻⣧⠀⠀⠀⠀⠀⠀⣿
|
||||||
|
⠈⠻⠆⣈⣻⢭⡙⢀⣀⣀⣀⣠⠟⠀
|
||||||
|
⠀⢰⡏⠀⠀⢯⣿⠀⠀⠀⠀⢘⡆⠀
|
||||||
|
⠀⠀⢻⣄⡠⠊⠁⠑⠤⣠⠼⠟⠀⠀
|
||||||
9
homes/data/ascii-art/butterfly-2.txt
Normal file
9
homes/data/ascii-art/butterfly-2.txt
Normal file
|
|
@ -0,0 +1,9 @@
|
||||||
|
⣠⣤⣤⡤⠤⢤⣤⣀⡀⠀⠐⠒⡄⠀⡠⠒⠀⠀⢀⣀⣤⠤⠤⣤⣤⣤⡄
|
||||||
|
⠈⠻⣿⡤⠤⡏⠀⠉⠙⠲⣄⠀⢰⢠⠃⢀⡤⠞⠋⠉⠈⢹⠤⢼⣿⠏⠀
|
||||||
|
⠀⠀⠘⣿⡅⠓⢒⡤⠤⠀⡈⠱⣄⣼⡴⠋⡀⠀⠤⢤⡒⠓⢬⣿⠃⠀⠀
|
||||||
|
⠀⠀⠀⠹⣿⣯⣐⢷⣀⣀⢤⡥⢾⣿⠷⢥⠤⣀⣀⣞⣢⣽⡿⠃⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠈⢙⣿⠝⠀⢁⠔⡨⡺⡿⡕⢔⠀⡈⠐⠹⣟⠋⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⢼⣟⢦⢶⢅⠜⢰⠃⠀⢹⡌⢢⣸⠦⠴⣿⡇⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠘⣿⣇⡬⡌⢀⡟⠀⠀⠀⢷⠀⣧⢧⣵⣿⠂⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠈⢻⠛⠋⠉⠀⠀⠀⠀⠈⠉⠙⢻⡏⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⢰⡿⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⣿⠄⠀⠀⠀⠀⠀⠀
|
||||||
55
homes/data/ascii-art/butterfly-3.txt
Normal file
55
homes/data/ascii-art/butterfly-3.txt
Normal file
|
|
@ -0,0 +1,55 @@
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⣀⣤⡶⣶⠟⢿⣹⡏⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠹⡦⡀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⣠⠶⠛⠛⠛⢀⣜⠲⣀⣼⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠹⣎⢲⢀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⣠⠶⠋⠤⠀⠀⢀⠀⡸⠆⡇⢻⡌⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠘⡍⣾⠳⣄⡀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⣴⡟⠁⠀⢀⣜⣀⣀⣈⡉⠁⠀⣄⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠹⣬⡏⢈⡙⢄⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⣾⠏⠀⢀⠔⠉⠁⠀⠀⠀⠨⠫⡤⠉⡷⢧⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⢳⣥⠘⠈⢄⢣⠀⠀⠀⠀⠀⠀⠀⠀⣸⠇⠀⠐⠁⠀⠀⠀⠀⣠⣎⠀⢀⡀⣌⠐⡾⠧⠝⠀⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⢸⢸⣦⡀⠈⢂⢂⠀⠀⠀⠀⠀⠀⠀⡟⠀⠄⢠⢄⠀⠀⠠⠊⠁⠀⠉⢻⡆⠠⣷⠃⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠻⠬⢻⣱⡈⠓⢦⣀⢆⢐⠀⠀⢠⠀⢠⠇⡜⠀⠀⠊⢀⠄⠀⣀⢀⠀⠀⢸⠣⠄⣸⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡓⠳⢂⢄⠙⢎⠎⠄⠀⠀⠀⢸⢰⠃⠀⠀⡴⢁⠔⠊⠀⢈⡀⢀⡌⠛⣶⢿⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢹⡼⢮⣆⣁⠀⣈⠈⠂⢠⠀⢸⡜⡘⢀⡞⠐⡡⠔⠈⠁⠀⡠⠁⣸⡶⢇⠇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠑⢬⣿⡘⣂⣉⢿⡄⠙⡄⢸⡇⢣⣾⠗⠀⠀⣀⣤⣖⣭⡴⠾⠁⠃⠁⠀⠀⠀⠀⣀⡀⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠙⢿⡀⡄⢝⢻⣮⠻⠎⠷⡾⢁⣤⠶⠛⠛⠉⠁⠀⠀⠀⠀⠀⠀⠀⠀⢠⠈⡤⢹⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠙⣦⡀⠑⡙⢷⣷⣄⢈⢉⣁⡈⠉⠉⠉⠉⠙⠻⣖⣲⣦⣄⠀⠀⡇⠀⠀⠁⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠈⠻⣩⡛⡄⣎⢻⣮⡳⣮⡉⠛⠂⠭⣛⡛⠫⠤⢤⣧⣸⡀⠀⢡⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢰⡶⠀⠀⠀⢰⠀⢹⡄⠹⣿⣦⡙⢦⡀⠀⢀⠬⣁⠒⠤⣤⣟⠙⡆⠀⡇⠀⠀⣴⠉⠙⡄⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠳⣄⡀⠀⢸⡆⢸⡀⠀⡱⠉⠻⡆⠹⣷⢤⣁⣈⣆⡀⣀⣽⣏⠳⣤⠃⠀⠀⠉⠀⣠⠃⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡉⠟⠒⢼⣼⢠⢃⠃⢧⡰⣥⡀⠙⠦⠮⡿⣳⠕⠦⣧⠦⣟⡄⢀⡀⠤⠔⠊⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⡔⡈⣦⡇⠀⠀⠀⠟⣜⠀⡆⣗⠇⠈⢷⡄⠀⢀⣤⠶⠊⠉⠀⠀⠀⠹⣆⠙⠲⡀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢧⣁⠼⠀⠀⠀⠀⠈⢿⢧⣴⢺⠄⠀⢨⣷⡴⢛⠴⡄⠒⠄⠀⠀⠀⠀⠈⢷⡀⣽⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠓⢿⡎⠀⢀⣿⡟⠀⠘⢄⠸⠀⠆⠀⠀⠀⠀⠀⠀⢷⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⠊⠈⠑⡀⠀⠀⠈⢿⢀⣾⡿⠃⠀⠀⢸⢀⠌⠀⠀⠀⠀⠀⠀⠠⠿⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠈⠛⠀⢀⠃⠀⠀⢀⣤⡻⣛⠁⠀⠀⠀⠋⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡚⣀⠀⠀⠀⠀⠀⠀⢠⠊⣀⣤⣶⠿⠋⠀⠈⠑⢶⣶⡦⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢅⢀⠙⡄⠀⠀⢀⣴⣿⠿⠛⢹⡋⢀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠈⡌⡇⠇⣠⣾⣿⠟⠁⠀⠀⣀⣉⡀⠙⡆⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢣⣾⣿⠟⠁⠀⠀⠀⢰⠁⣆⡅⣠⠇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⢀⠤⢄⠀⢀⣼⣿⣿⠏⠀⠀⣀⡀⠀⠈⢦⡀⠴⠋⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠸⡉⠑⠲⢄⢂⣾⣿⣿⡏⢀⡄⢀⡠⠒⠉⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠑⠒⠂⠚⠸⢟⣿⣟⠐⢀⣀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⡔⠀⠁⠀⠀⠈⠹⡌⠁⠀⠉⠁⠲⡀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⢀⣀⣀⣐⠁⠀⠀⠀⠀⠰⡀⠘⠀⠀⡐⠀⠀⢸⢀⡖⠂⢧⣄⡀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⢠⠔⠋⠉⠀⠀⠉⢙⠲⣤⣀⠙⢤⢡⢠⣡⣴⠴⢂⠨⠀⡎⠌⠌⠃⠀⠂⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⣇⠀⣀⠀⠀⢀⠄⠁⠀⠩⠯⣩⡦⢬⠞⢋⣀⣂⠤⠖⠂⣁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⠙⠒⠋⠀⠀⢰⠀⠐⠊⠁⠐⠉⠀⢸⣶⣾⡿⠏⠋⢭⡀⠀⢱⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠓⠠⠄⡀⠀⡀⠐⠁⡎⣧⠹⣀⠀⠀⠀⠈⠀⢰⠀⢀⡀⠠⠢⡀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⡠⠊⡩⠟⠋⣧⠋⠀⠀⠃⠘⠄⠈⡀⠤⡀⠀⢀⡴⠂⠀⠀⠀⠀⠱⡀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⢠⠃⢀⡠⠄⠊⠀⠱⡀⠀⠀⠀⢀⢴⡄⠀⠈⠂⡬⠁⡠⢀⠀⠀⠀⠀⠱⢀⣀⡀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠘⠔⠁⠀⠀⠀⠀⠀⠑⠂⠉⠉⠈⢻⣿⠆⠠⢸⠀⢰⣱⠃⠀⠀⠀⢰⡏⡥⠐⠂⢉⠁⠆⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⣤⠀⢀⠤⠐⠂⠀⠀⡀⠃⢸⣟⡠⠀⢀⣤⣾⣧⠀⠠⠀⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⠀⡆⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⢲⠀⠀⡰⠋⠈⢠⠁⠀⠀⠀⡈⠅⠭⡕⠪⣿⣅⠘⠅⠀⠀⠈⢧⠀⠀⠀⠀⠄⠁⠉⠒⢄⢀⣀⠀⠀⢸⠟⡐⡗⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠓⢄⢣⡀⠀⠘⠤⡀⣀⢀⣠⡴⠂⡰⣾⣿⡇⠣⡒⠢⣀⠀⠀⠙⠀⡄⠀⢀⠀⠀⠀⠘⡄⠀⠑⠤⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠈⠙⠒⠲⠶⠟⠏⠁⠆⠠⠞⢞⠁⡏⠘⢤⠀⠀⠀⠁⠀⠰⠀⣇⠀⠘⠦⣸⢀⠆⡰⠀⢀⠀⡇⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢎⠀⡐⠀⠀⢸⢌⢐⢣⠀⠈⠧⢤⣠⢄⠒⠁⠀⠈⠉⠮⢁⢻⣇⠴⢃⣴⣶⣀⡁⠐⠒⡀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠉⢠⡀⠀⣾⡘⠈⠈⠂⠀⠀⠘⠗⠿⠿⣷⣶⠚⠀⠂⢀⣾⢣⣴⣯⠉⠒⠀⠒⠀⠀⠈⡄
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢇⠁⠀⡆⡇⠙⡰⢄⢀⡠⠤⠜⠀⠀⠀⠀⠀⢅⠀⠐⠁⠎⠸⣟⢓⠌⠂⢄⠀⣀⡀⠀⠄
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⡸⢌⡂⠀⠱⡘⠀⡇⠀⠁⠀⠀⠀⠀⠀⠀⢀⠤⠒⢲⡄⡀⠀⠠⠘⡌⠆⠀⠀⢻⣖⠢⡄⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠭⠀⠔⠁⠀⠀⠈⠒⠒⠀⠀⠀⠀⠀⠰⡐⠉⠀⠀⠐⡰⠁⠈⢲⡇⠀⠀⠀⠀⢀⢬⠀⢳⠘⡄
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡆⢆⠀⠀⠀⠀⠀⢀⠞⡄⠀⠀⠀⠀⠈⠐⠒⠒⠀⠁⠀⠀⢸⡷⡦⣀⣀⡔⠀⠀⠑⡌⢀⠇
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠈⠀⠀⠀⠀⠀⠀⠊⠀⢣⠀⠀⡀⣀⠀⠀⠀⠀⠀⠀⠀⢀⡞⠀⢸⠀⠀⠀⠀⠀⠀⠧⠊⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡆⢰⢀⠇⡌⢠⣼⠇⠀⠀⠀⠀⠀⣠⢞⡀⠀⡜⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠈⠂⢧⡘⡆⠀⠁⠀⠀⠀⢀⣤⠞⠁⠘⠓⠊⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠙⠛⢷⣶⣶⣶⠿⠛⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⣠⠶⠶⠟⠛⠉⢹⠃⢀⣀⡀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢸⠁⠰⡄⠀⠀⠀⢸⡀⠈⢀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠉⠋⠁⠀⠀⠀⠀⠉⠉⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
||||||
16
homes/data/ascii-art/butterfly-4.txt
Normal file
16
homes/data/ascii-art/butterfly-4.txt
Normal file
|
|
@ -0,0 +1,16 @@
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⢔⣶⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡼⠗⡿⣾⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⡼⠓⡞⢩⣯⡀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⣀⣀⣀⣀⠀⠀⠀⠀⠀⠀⠀⠰⡹⠁⢰⠃⣩⣿⡇⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠘⢷⣿⠿⣉⣩⠛⠲⢶⡠⢄⠐⣣⠃⣰⠗⠋⢀⣯⠁⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠙⣯⣠⠬⠦⢤⣀⠈⠓⢽⣾⢔⣡⡴⠞⠻⠙⢳⡄
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠘⣵⣳⠖⠉⠉⢉⣩⣵⣿⣿⣒⢤⣴⠤⠽⣬⡇
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠈⠙⢻⣟⠟⠋⢡⡎⢿⢿⠳⡕⢤⡉⡷⡽⠁
|
||||||
|
⣧⢮⢭⠛⢲⣦⣀⠀⠀⠀⠠⡀⠀⠀⠀⡾⣥⣏⣖⡟⠸⢺⠀⠀⠈⠙⠋⠁⠀⠀
|
||||||
|
⠈⠻⣶⡛⠲⣄⠀⠙⠢⣀⠀⢇⠀⠀⠀⠘⠿⣯⣮⢦⠶⠃⠀⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⢻⣿⣥⡬⠽⠶⠤⣌⣣⣼⡔⠊⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⢠⣿⣧⣤⡴⢤⡴⣶⣿⣟⢯⡙⠒⠤⡀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠘⣗⣞⣢⡟⢋⢜⣿⠛⡿⡄⢻⡮⣄⠈⠳⢦⡀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠈⠻⠮⠴⠵⢋⣇⡇⣷⢳⡀⢱⡈⢋⠛⣄⣹⣲⡀⠀⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠈⢿⣱⡇⣦⢾⣾⠿⠟⠿⠷⠷⣻⠧⠀⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠈⠙⠻⠽⠞⠊⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
||||||
13
homes/data/ascii-art/butterfly-5.txt
Normal file
13
homes/data/ascii-art/butterfly-5.txt
Normal file
|
|
@ -0,0 +1,13 @@
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⣠⣴⡦⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⡴⠏⠄⣺⠃⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⣰⡋⢚⠄⠊⣿⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⣰⢏⣔⣤⢲⣋⣿⡀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢠⠏⠁⡔⠻⣿⢡⠼⢧⠀⠀⠀⠀
|
||||||
|
⣾⣷⠶⣤⣀⠀⠀⠀⠀⠀⠀⠀⡜⠀⡰⠋⠀⣙⣀⣰⣽⡀⠀⠀⠀
|
||||||
|
⠙⠻⣤⠐⢺⡗⠤⡀⠀⠀⠀⠀⠇⢀⢃⣴⡿⢋⠤⠾⠯⢽⣄⠀⠀
|
||||||
|
⠀⠀⠀⠙⠢⢄⠀⠐⠴⣄⠀⠀⣰⣻⡿⢛⡉⠉⠀⠀⠐⠀⢿⡀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠙⢴⠁⣠⣵⢶⣿⣾⢭⡭⠤⣀⠀⠄⢀⠁⠀⢧⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠁⠿⠁⠈⠫⠻⣷⣝⡢⢄⠀⠀⠀⠈⠱⣾⠁
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠙⢦⣄⠀⠈⠻⢿⣶⣤⣄⣀⣀⣴⠉⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠙⢦⡘⡄⠹⣦⠈⠉⠉⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠈⠒⠢⠽⠀⠀⠀⠀⠀⠀⠀
|
||||||
28
homes/data/ascii-art/butterfly-6.txt
Normal file
28
homes/data/ascii-art/butterfly-6.txt
Normal file
|
|
@ -0,0 +1,28 @@
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⣀⡀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⢀⣠⣀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⡴⠛⢦⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⣰⠏⠁⠉⠳⣄⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⡾⠀⠈⠳⣄⠀⠀⠀⠀⠀⢀⣴⠟⠁⠀⠘⣦⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⣄⡇⠀⠀⠀⠀⠘⢦⡀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⢠⠇⠀⠀⠀⠈⢧⡀⠀⣠⠴⠊⠀⠀⠀⠀⠀⣿⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⣿⣿⠀⠀⠀⣴⠖⠲⢬⣳⣄⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⢀⡾⠀⠀⠀⠀⠀⢉⣷⠚⠁⠀⠀⠀⠀⠀⠀⢸⠉⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠁⡇⠀⠀⢰⠃⠀⠀⠀⠈⠙⢿⡂⠄⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⣰⠏⠀⠀⠀⠀⠀⠀⢼⠉⡇⠀⠀⠀⠀⠀⠀⢠⡎⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⣇⠀⠀⡾⠀⠀⠀⠀⠀⠀⣰⠟⠦⣀⠀⠀⠀⠀⠀
|
||||||
|
⠀⡼⠁⠀⠀⠀⠀⠀⠀⠀⠸⡄⢳⡀⠀⠀⠀⠀⢀⠞⠀⢀⣀⠀⠀⠀⠀⠀⠀⣶⡄⠀⠀⠀⠀⢸⠀⠀⡇⠀⠀⠀⠀⣠⡞⠁⠀⠀⠘⡇⠀⠀⠀⠀
|
||||||
|
⠀⢧⡀⠀⠀⠀⠀⠀⠀⠀⠀⢳⣸⡇⠀⠀⠀⣴⣏⡴⠚⠉⠙⠃⠀⠀⠀⣀⡀⠙⠦⣄⠀⠀⠀⠘⡇⢠⡇⠀⠀⢠⠜⠁⠀⢀⣀⣠⣼⣃⣀⡀⠀⠀
|
||||||
|
⠀⠀⠉⢙⣲⣤⣤⡤⠤⢤⡀⠀⢳⣧⠀⣠⢞⡷⢋⡴⠖⠙⣷⠀⠀⠀⠀⠻⢇⣀⡀⠈⠙⢦⡀⠀⣷⢸⠇⠀⡴⢃⣠⠖⣺⡭⠛⠁⠀⠀⠈⠉⠳⡄
|
||||||
|
⢠⡶⠊⠉⠀⠀⠀⠈⠉⠙⠃⠀⠈⣿⣶⣱⣿⠟⠉⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠈⠉⠙⠲⢼⣦⣽⢷⢠⣾⢟⣫⠴⠋⠁⠀⠀⠀⠀⠀⠀⠀⠈⡗
|
||||||
|
⠸⣆⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⣿⣟⠛⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⣿⣿⣿⣟⣏⣁⣀⣀⣀⡠⠤⠴⢒⣒⣷⠆⠀⢠⠇
|
||||||
|
⠀⠈⠙⠲⠤⣀⠀⠀⠀⠀⠀⢀⣾⠳⣿⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠈⠉⠉⢻⡛⢦⡛⠳⠭⣍⣉⠉⠉⠀⠀⢀⣠⠏⠀
|
||||||
|
⠀⠀⠀⠀⠀⠈⠳⢤⣀⣀⡴⠋⣇⣴⠃⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠙⢦⡙⢦⠀⠀⠉⠉⠒⠒⠒⠋⠁⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠉⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠳⣬⡖⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⣀⣀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⢰⠋⠀⠙⢦⡀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⢠⢸⡄⠀⠀⠀⠙⣆⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⢸⣸⡇⠀⠀⠀⠀⠈⢧⠀⠀⠀⢀⠀⠀⠀⠀⠀⠀⠀⣀⣠⠤⠦⣄⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⢸⡏⠀⠀⠀⠀⠀⠀⠘⡆⠀⢰⡏⣠⠖⠀⠀⣠⠶⠋⠁⠀⠀⣠⠟⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠈⢳⠀⠀⠀⠀⠀⠀⠀⢸⡄⢸⣻⠁⠀⣠⠎⠁⠀⠀⠀⢀⡴⠃⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠈⠳⠤⣀⣀⠀⠀⠀⠀⣧⢸⡇⢀⠜⠀⠀⠀⠀⠀⣰⠋⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⢀⣤⠒⠒⠚⠛⠻⠷⠶⣶⣾⣾⣷⠃⠀⠀⠀⠀⠀⣰⠃⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⢿⡅⠀⠀⠀⠀⠀⠀⠀⣼⣿⠏⠓⢶⣦⣀⣀⣀⡼⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠸⢯⠀⠀⠀⠀⠀⢀⡾⢻⣿⠀⠀⠀⠙⢦⡀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠘⢦⣀⣀⡤⠞⢹⣠⠏⡇⠀⠀⠀⠀⠀⠇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠘⠻⠀⡇⠀⠀⣀⣤⠖⠃⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠉⠉⠉⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
||||||
20
homes/data/ascii-art/butterfly-7.txt
Normal file
20
homes/data/ascii-art/butterfly-7.txt
Normal file
|
|
@ -0,0 +1,20 @@
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⣴⣾⠆⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢶⣶⡶⡴⢦⣼⣟⣻⣿⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠙⣿⡳⣋⡿⣦⡲⣺⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⠀⠀⠀⠀⠀⠸⣼⣸⠟⠀⠛⠃⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢰⣿⣽⡄⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⣀⣠⣦⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢠⣿⣷⣿⢷⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⣀⣴⣿⢿⢯⣯⡀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⣠⣿⣟⢎⣾⢻⡆⠀⠀⠀⠀⠀⠀⠀⢀⡼⢻⢛⣏⣯⢽⡿⡿⣻⡻⣤⡀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⣾⣿⣶⣆⣄⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⣾⠃⣕⠙⢧⣽⢸⣯⠀⡀⠀⠀⠀⠀⠀⠘⢯⣡⣂⣹⣎⡾⠀⠑⠛⠛⠉⠁
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠹⣷⣾⡟⣿⠻⢦⣠⠄⠀⡄⢀⣠⣴⣶⣹⣿⣿⢧⣦⣽⣿⣿⣺⠣⣄⣀⡀⠀⠀⠀⠐⣻⡿⡿⣿⢧⡆⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⢹⣿⣗⡒⠷⢦⣝⣶⣾⣟⡭⢶⣋⣲⡿⡿⠏⡿⢻⠿⠇⢹⣎⠻⡻⣳⢿⣷⣄⠀⢸⣃⢼⡐⣇⡷⢯⣆⠀⠀⠀⠀
|
||||||
|
⠀⣴⣦⣄⡀⠀⠀⠀⢈⣿⠿⢷⠶⠾⠿⣿⡿⠿⣥⣬⣭⣿⣷⠇⠀⠁⡼⠆⡰⣸⠿⣦⣷⣿⡺⠿⠿⠂⠘⠻⢾⡵⣿⡷⣞⣿⡄⠀⠀⠀
|
||||||
|
⠀⣷⡿⣿⣿⣤⠀⠀⢨⣯⢘⠆⡖⡪⣻⣿⣻⡂⢄⣑⢆⣻⡇⠀⠀⠀⠻⣷⣧⣯⠾⠋⠉⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠉⠛⠃⠀⠀⠀
|
||||||
|
⠀⡿⣿⣿⠻⣿⣷⡀⠀⠛⢷⣮⣼⠞⠋⡟⠸⣒⡈⢢⣱⣿⠃⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⣿⣿⠯⣍⣳⡈⢷⡀⠆⠀⠉⠁⠀⠀⠀⠀⠙⠛⠛⠋⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⣰⣾⠻⠷⣶⣭⣹⣤⢗⣮⡰⣃⣤⣤⣤⣤⣤⢤⣤⣄⣀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⣿⠅⣾⢉⣁⣈⣙⣻⣿⣿⣟⡶⠲⢶⡛⢭⣿⣟⣿⣿⡿⠃⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⣿⣮⣥⠊⢡⡔⣮⣿⣿⣧⠉⢻⣷⣦⡍⣿⣿⣷⠛⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⠈⠻⣷⣮⠷⠛⢹⠏⣷⡌⢢⣀⣫⢝⣿⠿⠟⠃⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠋⠀⣹⣡⠈⡎⢫⣲⣿⠃⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠘⠿⣲⣿⠿⠛⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
||||||
20
homes/data/ascii-art/butterfly-8.txt
Normal file
20
homes/data/ascii-art/butterfly-8.txt
Normal file
|
|
@ -0,0 +1,20 @@
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠠⠆⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⢠⡄⡅⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠒⠀⠀⠀⠀⠀⠸⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠘⡀⠅⠀⠦⠀⠀⠀⠃⠀⠀⢀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⡃⠀⠇⠄⠀⢨⠀⡀⣀⠀⠀⠀⡈⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠈⠀⠂⠁⠀⠀⠀⠈⠀⠂⠡⠉⢠⠄⠀⠁⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⢁⣀⠀⠀⢀⣀⠀⠀⠄⡀⠊⠀⠀⠄⠘⠀⠀⠀⠀
|
||||||
|
⠀⠆⠀⣼⣿⣿⣧⢀⣾⣿⡆⠘⠤⠄⠂⠀⠀⡒⠐⠀⠀⠀⠀
|
||||||
|
⢀⢠⢸⣿⣿⣿⣿⣿⣿⣿⣿⡄⠀⠁⠀⠀⠰⣀⠀⠀⠀⠀⠀
|
||||||
|
⢈⠀⣿⣿⠁⠈⣿⣿⣿⣿⣿⣿⣆⠁⠈⠀⢀⠀⠀⢀⠀⠀⠀
|
||||||
|
⠈⢄⣿⠻⣆⢠⣿⠿⣿⣿⣿⣿⣿⡆⠀⢀⠊⣰⢀⠜⠀⠀⠀
|
||||||
|
⠀⠀⣿⠀⢹⣦⠃⢠⣿⢿⣿⣿⣿⠇⠀⣁⢊⠀⢀⠐⠀⠀⠀
|
||||||
|
⠀⠀⢿⠀⢸⡏⢀⣾⠏⠈⣿⣿⣯⣤⣤⣤⡀⠒⠀⢀⢰⠇⠀
|
||||||
|
⠀⠀⢸⠀⢸⣧⡾⠁⠀⣠⣿⣿⣿⣿⣿⣿⣿⣷⠀⢈⠐⢠⠆
|
||||||
|
⠀⠀⠀⡆⣸⠏⠀⣠⣾⠟⣩⠋⣉⠭⠛⢿⣿⣿⣧⠈⠀⠀⠄
|
||||||
|
⠀⠀⠘⠳⣮⣴⣟⣫⠄⠚⠭⣁⣀⣤⠴⠟⢻⣿⣿⡇⠸⠀⠀
|
||||||
|
⠀⠀⠀⠀⠈⢻⣦⢭⣙⣒⣶⣶⠻⠦⠤⣤⣼⣿⣿⡆⠂⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠙⢦⣈⣉⠦⢄⡉⠑⠲⢦⣿⣿⡿⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠙⢷⡀⠐⠛⠿⠿⠿⠟⠋⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠱⡄⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
||||||
73
homes/data/ascii-art/butterfly-9.txt
Normal file
73
homes/data/ascii-art/butterfly-9.txt
Normal file
|
|
@ -0,0 +1,73 @@
|
||||||
|
⢡⢊⠐⡀⠐⠠⠐⠢⠑⠠⠃⠰⢀⠢⠄⡁⠂⠔⢈⠐⠠⠂⡁⠂⠔⢈⠐⠠⢂⠐⠄⠂⠅⡂⠥⠈⠔⡀⠆⠠⢁⠂⡐⠌⠐⡀⠢⢁⠂⡐⢈⠐⠠⠐⠂⠔⠈⠄⠣⠠⢁⠢⠐⠠⠂⡁⠂⠔⢈⠐⠠⠂⡁⠂⠔⢈⠐⡀⠂⠔⠠⠌⠢⠑⡈⠤⠁⠂⠔⠠⢁⠂⠅
|
||||||
|
⠆⠆⠓⡀⠊⡐⠈⢂⠑⠂⠑⠂⢀⠂⠐⠐⠈⠐⡀⠂⠁⢂⠐⠈⠐⡀⠊⠐⠀⠂⠌⠂⠐⡀⠂⠁⢂⠐⠠⠁⠂⠐⠀⠒⠐⠀⠒⠀⢂⠐⡀⠠⠀⢈⠀⠌⠀⡈⠀⠁⡀⠠⢈⠐⠐⠐⠈⠐⡀⠂⠁⢂⠐⠈⠐⡀⠂⠐⠈⠄⠃⠐⠂⠁⠒⠀⢂⠁⠂⠒⠀⠂⠂
|
||||||
|
⢏⡘⡐⠠⠁⢀⠂⠠⢀⠂⠐⡈⠀⠄⡈⠐⡈⠠⠐⠠⠁⡀⠂⠌⢀⠐⠠⠁⡈⠐⠠⠈⠄⠐⠈⡐⠠⢀⠂⠄⡁⠂⠌⠐⠠⢈⠠⠁⠠⠀⠀⠄⠁⣠⣤⣀⠂⢀⡐⠀⢀⠀⡀⠄⢈⠐⠈⠠⠐⠠⠁⡀⠂⠌⠀⠄⠡⠈⠐⡀⠂⠁⠄⡁⠂⠌⢀⠐⡀⢂⠁⢂⠀
|
||||||
|
⡎⠰⣀⠡⠐⢀⠠⠁⠄⠠⢁⠠⠁⡐⠠⢁⠠⢀⠁⢂⠐⢀⠡⠐⠀⠂⠄⡁⠠⠁⢂⠐⢈⠠⠁⡀⠂⠄⡐⠠⢀⠡⢀⠁⠂⠄⠐⠀⠁⡀⠡⢀⣾⣿⠿⣿⣷⡿⣿⣷⡄⠂⠀⢀⠂⠈⠄⠁⠌⠐⡀⠄⠡⢀⠡⠈⠄⠂⠁⠄⡈⠐⠠⠐⡀⠂⠄⢂⠠⠀⠌⡀⠀
|
||||||
|
⣌⠡⠄⡐⠀⢂⠠⠈⠐⡀⠂⠄⡁⠠⠐⠠⠀⢂⠈⠄⠐⠠⠐⠀⠡⠈⠠⠐⠀⡁⠂⡀⢂⠐⠠⢀⠁⢂⠠⠐⠠⢀⠂⢈⠐⠈⠀⠌⠀⡀⢀⣾⡿⢻⣴⣿⣿⣿⠿⣿⣇⠀⠐⡀⠀⠡⠈⠐⡈⠄⡀⠂⠁⠄⠠⠈⠐⠈⡐⠠⢀⠁⢂⠁⠄⡈⠐⠠⢀⠁⢂⠐⠀
|
||||||
|
⢆⠱⠐⠠⠁⠂⠠⢈⠐⠀⠌⠐⡀⠄⢁⠂⢁⠀⠂⠌⠠⠁⠌⠠⠁⠠⠁⠄⡁⠄⢁⠀⠂⠌⠀⠄⡈⠄⠠⢈⠐⡀⠐⠀⠂⠁⠠⠀⠂⢠⣾⡿⣝⣧⣿⡿⣿⠀⠀⣸⡟⠁⠀⠄⠂⡁⠌⠐⠠⠐⢀⠡⢈⠀⠂⠡⢈⠐⠀⠂⠄⡈⠠⢈⠀⠄⡁⠂⠄⡈⠄⠂⠀
|
||||||
|
⢎⠰⢁⠂⠡⠈⠐⠠⠈⠄⡈⠄⠠⠐⠠⠈⢀⠈⡐⠈⡐⠠⠄⠁⠠⠁⠂⠄⠠⢈⠀⠌⠐⡈⠄⠂⡀⠂⠁⠄⠂⡀⠁⠀⠂⠈⠀⠐⣀⣸⣿⣶⣿⡟⢻⡗⠘⣇⠀⣿⣁⠀⠂⠠⠀⠄⠂⠈⠄⡁⠂⢀⠂⠄⠁⠂⠄⠂⠁⠌⡀⠄⠡⢀⠂⠐⠠⠁⠠⠐⢀⠡⠀
|
||||||
|
⢎⡐⠂⠌⡀⠡⠈⠄⠡⢀⠐⠠⠁⠠⠁⠌⠠⠐⠠⠑⠀⠄⠐⢈⠀⢂⠡⠀⠡⠀⠌⢀⠂⠄⡐⠠⢀⠡⠈⠐⡀⠄⠀⡁⢀⣴⣾⣿⡛⢯⣽⡟⠛⣧⡀⢻⣀⣿⣠⡟⠀⠀⠐⠀⠁⠄⠡⡈⠢⠐⠀⢂⠠⠈⠠⠁⠂⠌⠐⠠⠐⢀⠂⠄⠂⢁⠂⢁⠂⢁⠂⠠⠀
|
||||||
|
⡆⡘⢐⠠⢀⠁⡐⠈⠄⡀⠂⢁⠂⢁⠐⡈⠄⢈⠐⠠⠈⠠⢈⠀⡐⠠⠀⠌⡀⢁⠂⠄⠐⠠⢀⠐⡀⠂⠌⠐⠠⠀⡁⠀⣾⣍⣿⣤⣟⡦⣿⣇⠀⠈⢻⣝⣿⠁⣿⠁⢠⣨⡄⠈⠄⠊⡐⠀⠄⠠⠁⠠⠀⠌⢀⠡⠈⡀⠌⠠⢁⠀⠂⠄⡁⠂⡈⠄⠐⡀⠄⠂⠀
|
||||||
|
⢆⠱⢀⠂⠄⠂⠠⠈⠄⠐⢈⠠⠐⢀⠂⠄⠐⡀⠂⠄⠁⠂⠄⠂⢀⠂⠡⢀⠐⡀⠂⠈⠄⠡⠀⢂⠐⡈⠄⠂⡁⠄⠀⠸⣿⣿⣤⣴⣾⡿⠷⣿⣦⠀⠀⣿⠁⣸⠃⣠⣟⡞⠁⠀⠂⠄⠐⠈⡀⠂⠌⢀⠡⠈⡀⠄⡁⠠⢀⠡⢀⠈⡐⠠⠐⢀⠐⡈⠁⠄⠂⡈⠀
|
||||||
|
⢎⠰⢈⠀⢂⠡⠀⠡⠈⠄⢂⠀⡉⢀⠠⠈⢀⠐⢈⠠⠁⡈⠐⡈⠀⠌⠐⡀⠄⡐⠈⠐⡈⠠⠁⡀⠢⠐⠀⢂⠀⠀⡁⢀⣿⣿⣉⣳⣤⣹⣧⣤⣛⣷⣄⡟⢰⣧⣼⠗⠉⡀⠌⠐⠈⠀⠂⢁⠐⡀⠂⠄⡐⠠⢀⠂⠄⢁⠀⠂⠄⠂⡀⠡⠐⠠⠐⠀⢂⠈⡀⠐⠀
|
||||||
|
⢎⠰⢈⠐⠠⠀⠌⠠⠁⠌⠠⠐⢀⠠⠀⠌⢀⠂⠄⠂⡐⢀⠡⠀⠌⡀⠡⠀⡐⠠⠈⠄⠠⠁⠄⡀⢁⠠⠁⢀⠀⠂⠀⣾⣿⣦⠴⢖⣚⣧⢤⣄⣈⣙⣻⣷⠟⠋⠀⢀⠂⢀⠀⠄⠂⠁⠌⢀⠂⠐⡀⢂⠐⠠⠀⠂⠌⢀⠈⡐⢀⠂⠄⡁⢂⠂⠡⠈⠀⠄⠠⠁⠀
|
||||||
|
⢎⠰⢈⠀⢂⠁⠄⢂⠁⠌⢀⠂⠠⠀⠂⠌⡀⠄⠂⡁⢀⠂⡐⠈⡀⠐⠠⠁⡀⢂⠐⠄⡁⠄⢂⠀⢂⠠⠈⡀⠠⠀⡀⢻⣿⣷⣋⣩⣴⣾⠿⣿⣿⠟⠋⠁⢀⠂⠌⠂⠁⢀⠠⠀⢂⠡⠈⠀⠄⠡⠀⠄⠂⡁⠄⢁⠂⠄⢂⠐⡀⠂⢀⠐⠠⠀⢂⠠⠁⡈⠐⡈⠀
|
||||||
|
⢎⠰⢈⠐⠠⠈⡀⠄⠐⠈⡀⠐⡀⠁⠌⠀⠠⠀⠁⠄⠂⠠⢀⠁⠠⠁⢂⠐⠀⡂⢈⠐⢀⠂⠠⠐⠠⠐⠀⠄⠀⠄⠀⠀⠙⠛⠛⠉⠀⠀⡀⠉⠀⢀⠠⠈⠀⠠⠀⡀⠂⠠⠐⠈⡀⠄⡈⠐⡈⠐⠠⠈⠐⡀⠐⡀⠂⠄⠂⡐⠠⠁⠄⡈⠄⠂⠠⠐⠀⠄⡁⠄⠀
|
||||||
|
⢎⠰⢈⠐⠠⠁⡀⠂⡁⠂⠐⡀⠀⠠⠀⠂⠁⠀⠂⠀⠠⠁⠠⠈⡀⢁⠂⣈⠠⠄⠂⢀⠂⢀⠂⠈⠄⠈⠐⠠⠈⢀⠈⠐⠀⠀⡀⠀⠈⠀⠀⡀⠄⠀⢀⠠⠐⠀⡁⠠⠈⠄⡁⠂⠄⢂⠠⠁⠠⠁⠂⢁⠂⡐⢀⠐⡈⠠⠐⠄⠁⠂⠠⢀⠂⠌⠠⢁⠈⠄⡐⠠⠀
|
||||||
|
⢎⠰⢈⠀⢂⠁⡀⠂⠄⢁⠠⠀⠐⠀⣠⣶⣶⣤⣁⠂⠀⠐⠀⠐⠀⠄⢂⠀⡀⠂⠐⠀⠠⠀⠀⠂⠠⠈⠀⢀⠐⠀⡀⠂⠌⠀⠠⢀⠂⠁⡐⠀⠄⠂⠄⠂⠠⠁⠄⠂⢁⠐⠠⠐⢈⠠⠀⠌⠠⢁⠈⠠⠐⠀⠄⠂⠄⢁⠈⠠⢀⠁⠂⠄⠂⠠⠁⠄⠂⡐⢀⠂⠀
|
||||||
|
⡎⠰⢈⠐⡀⠂⡀⠡⢈⠀⠄⠐⠀⢰⣷⡟⠻⣏⠻⣧⣀⠐⠈⠀⡈⠠⠀⠂⠀⢁⠈⠀⠄⠀⠁⣠⣴⣤⡈⠀⠀⠂⡀⢁⠂⠁⠂⠄⠂⢁⠐⠈⠠⢈⠐⢈⠠⢈⠐⠈⡀⠌⠐⡀⠂⠄⠡⠀⢁⠂⠈⠄⠁⠌⠠⠁⢂⠀⢂⠀⢂⠈⡐⠈⡀⠡⢈⠐⠠⠐⡀⢂⠀
|
||||||
|
⢎⡑⠠⢂⠠⠐⠀⠡⠀⠂⠀⠄⠈⠀⣿⢿⡀⠘⢦⡈⢻⣦⠐⠀⠀⠄⠀⠁⠈⠀⡀⠠⠀⣠⡿⣿⣯⣽⡇⠀⠁⠠⠀⠂⠌⢀⠁⠂⠌⢀⠠⠁⠂⠄⡈⠄⢀⠂⠌⢀⠐⠈⠄⠐⠈⠀⠄⠈⠀⢀⠂⠀⠈⢀⠐⠈⠠⠐⠀⠌⡀⠄⠐⠠⢀⠡⢀⠂⠁⠄⡐⠀⠀
|
||||||
|
⡆⠰⠁⠄⠂⠄⢁⠂⠡⠈⠀⠄⠂⠀⢻⣿⠛⢦⣄⣹⠦⣌⣳⡀⠀⣠⠈⠀⢾⠀⠀⢀⣼⢯⠞⢡⣿⣿⠁⠀⡈⠀⠄⠡⠈⠄⡈⠐⠈⠀⠄⡈⠐⠠⠐⡀⠂⡐⢈⠀⠌⠐⡈⠠⠁⠈⠀⠀⢂⣤⣄⠈⡀⠠⠐⠈⠐⡀⢁⠂⠠⢀⠁⠂⠄⡐⠀⡈⠄⠂⠄⠡⠀
|
||||||
|
⡌⠱⢈⠐⡈⢀⠂⢈⠐⡀⠁⠠⠀⠄⠘⣿⣷⣤⡀⠙⣆⠈⠻⣿⡄⠘⣇⠀⣾⠀⣴⠿⢲⣋⣤⣿⡿⠃⠀⠀⡐⠈⠄⠡⢈⠀⠄⠁⡈⠐⠠⢀⠁⠂⡁⠄⠐⡀⠂⠄⠂⡁⠠⠀⢀⠐⠀⣰⣿⣿⣿⣧⠀⠐⠀⠐⠀⡐⠠⢈⠐⠀⠌⡐⠠⢀⠡⢀⠐⠈⠄⢂⠀
|
||||||
|
⡅⢣⠈⠄⠐⠠⠐⢀⠂⠠⠈⢀⠐⠀⡀⠹⣿⣦⡉⠛⠚⣆⠀⠈⠻⣆⢻⢠⣇⡾⠃⢠⣟⣠⣾⡞⠃⠀⠐⠀⡀⠌⠠⢁⠀⡈⢀⠂⠄⠁⠂⠄⠂⠁⠄⠂⢁⠠⠁⡐⠠⠐⠀⡐⠀⠠⣼⠟⣿⠁⢹⣿⣧⠀⡈⠀⠂⠠⠐⠠⠈⠐⠠⠐⡀⠄⠂⠄⠂⠌⠠⢀⠂
|
||||||
|
⡜⠠⠌⠠⢁⠂⠐⡀⠂⢁⠐⠠⢀⠂⡀⠄⠹⣿⣏⠛⠒⠾⠷⣄⠀⠙⣞⣿⠋⣀⣴⣋⣽⡿⠋⠀⠀⢈⠠⠐⠠⠂⠁⡀⠄⠐⡀⠂⠌⢀⠁⠂⠌⠐⡈⠐⠠⢀⠡⠀⠐⠠⢀⠠⠐⣸⠏⢰⠇⢀⣼⢷⣿⡆⠀⠀⡁⠐⠈⠄⡁⠌⠐⠠⢀⠂⡁⠐⠈⢀⠒⠀⠀
|
||||||
|
⡌⠱⢈⠐⠠⢀⠁⠠⠁⠂⢈⠀⢂⠂⠠⠀⠀⣨⣿⢿⣶⣒⠲⢮⣿⣶⣼⣧⣾⣭⣿⠟⠉⠀⢀⠐⠈⠠⡐⠈⡀⠄⢁⠠⠈⡀⠄⠁⠄⠂⠈⠐⠀⡁⠠⠈⠠⠀⢀⠂⠁⠀⠆⠀⢰⣏⣴⢺⣴⠟⠁⣸⣿⡇⠀⠂⢀⠈⡐⠠⠀⠄⡁⢂⠠⠐⢀⠡⠁⠂⠠⢈⠀
|
||||||
|
⡅⢣⠈⠐⡀⠂⠈⠄⠡⠈⠄⡈⠄⠐⠀⠁⣰⣿⠓⠒⣛⣻⠟⠛⣩⣿⣯⠙⡯⣿⡆⠀⢀⠀⠂⡈⠌⠁⠠⠐⠀⡐⠀⢂⠁⢀⠀⠂⢀⠐⠀⠂⠁⠀⠠⠐⠀⠐⠀⡀⠨⡄⠀⠄⣟⡼⠁⢸⣇⡤⠞⠁⣿⣧⠀⠐⠀⠠⠐⠠⠁⠠⠐⢀⠂⡁⠂⡁⠐⠈⡐⠀⠀
|
||||||
|
⡜⢠⠘⠀⠄⡁⠈⠄⠡⠐⡀⠠⢀⠐⠀⠄⠸⣿⡟⢉⡽⢛⣿⡿⠉⠀⢸⣧⡷⣾⡇⠀⡀⠌⠐⠠⠐⢀⠐⡀⠡⠀⠌⡀⠠⠀⠠⢀⣤⣤⣬⣄⣈⡐⠀⠂⠄⠈⠳⣄⠀⣷⠀⢸⡿⠀⠀⢸⠏⣀⣤⢾⣿⠃⠀⠄⠂⠁⠀⡁⠄⡁⠂⠠⠐⠀⠄⡀⠄⠁⠄⡈⠀
|
||||||
|
⡜⠠⠌⠐⢠⠠⡁⠂⢁⠐⠀⡐⠀⠀⢂⠀⠄⠹⢿⣿⣴⣯⠏⠀⠀⠀⣼⢸⣽⣷⠇⠀⡀⠄⠁⠠⠀⢂⠠⢀⠁⢂⠐⡀⠐⠀⠐⠀⠛⢾⣟⠿⢭⣙⡛⠶⣤⣂⡁⠈⢳⡸⡆⣹⠃⠀⢠⠟⣉⣡⣤⣾⠿⢷⣦⣄⠀⠄⠁⠀⢂⠐⠉⡐⠀⢁⠠⠀⠂⡁⢂⠐⠀
|
||||||
|
⡌⠱⢈⠐⠠⠐⠀⡐⠀⠠⢁⠠⠁⠠⠀⠂⢀⠀⢀⠈⠉⠀⠀⠀⠂⡀⠹⠿⠛⠁⠀⠀⠠⠀⡈⠄⢁⠂⠠⢀⠂⠄⠂⡐⠀⢈⠠⠀⡀⠄⠙⢷⣦⣬⣽⢯⣍⠉⠉⠓⠦⢽⣽⣼⣀⡰⣟⣫⣷⡿⣛⡥⢞⣋⠙⣿⣆⠐⠀⠁⡀⠂⡐⠀⡈⠠⠐⢈⠀⡐⢀⠂⠀
|
||||||
|
⢣⠑⡨⠀⢂⠐⠀⠄⠈⠄⡀⠂⢁⠐⡀⠁⠀⠀⠂⠀⠠⠐⠀⠁⠀⠄⡀⠀⠀⡀⠄⠀⠁⠠⢀⠐⡀⠂⠁⠄⠂⠄⡁⠐⡈⢀⠀⠄⠀⠄⠂⢀⠈⠛⠷⣶⣾⣛⠓⣲⡶⢦⣼⣿⣿⣟⡉⠁⣀⣈⡿⠯⢭⣁⠉⣿⡗⠀⡀⢂⠀⡐⠀⡁⠄⠂⢁⠂⠐⡀⢂⠐⠀
|
||||||
|
⢣⠘⠠⠐⡀⠄⢁⠈⡐⠠⢀⠁⢂⠠⢀⠡⠈⠐⢀⠁⠀⠐⠀⠂⠄⡀⠠⠀⠄⡀⠄⠐⡈⠐⡀⠄⠠⢁⠈⠄⡁⠂⠠⠁⠄⠂⡀⠂⠄⡀⠁⠂⠈⠄⢀⠀⠀⠉⠛⠛⠛⣿⣯⢿⠘⣿⠏⠉⠛⠳⢭⣓⣦⣬⣽⠟⠁⠀⠀⡀⠠⠐⠠⠐⡀⠌⢀⠂⠁⠄⠂⠄⠀
|
||||||
|
⠣⢌⢁⠂⠄⠐⡀⢂⠐⠠⠀⠌⡀⠄⠂⠠⠈⢀⠠⠀⡈⠄⡁⢈⠀⠐⠀⠂⠐⡀⠐⠠⢀⠡⠀⠄⡁⠂⡀⠂⠄⠁⠂⢁⠂⠐⡀⠡⠀⠄⠂⡁⠀⠀⠂⠀⠁⠠⠀⠄⠀⠙⣷⣞⣷⡻⡄⠀⠄⢀⠀⢈⠉⠉⠀⡀⠄⠈⠀⢀⠐⠠⠁⠂⠄⡐⠠⢈⠐⢈⠐⠈⠀
|
||||||
|
⠇⡌⠠⠂⠌⡀⠐⡀⠂⠄⢁⠂⠄⠠⠁⡐⠀⠀⡀⢤⣴⣶⣤⣄⠈⠐⠀⠈⢀⠀⠁⠂⠄⠂⠈⠄⠠⠁⠐⠈⡀⠡⠈⠀⠄⠁⠠⠁⢂⠠⢁⠠⠁⠌⠐⡀⠂⠄⠀⠂⢈⠀⠀⠙⢿⣽⣿⣄⠈⠀⡈⠀⠄⠁⢀⠀⢀⠠⠈⠠⠐⢀⠡⠈⠄⠐⡀⠂⠄⠂⡈⠐⠀
|
||||||
|
⢣⠘⢠⠁⡐⠀⡁⠠⠁⢂⠠⠈⠄⠂⠁⠀⡀⠂⢰⣿⣟⠻⣭⡙⠿⣦⡀⠂⠠⠐⠈⠀⠄⠈⠐⠀⠂⢈⠀⠁⠀⠄⠀⡁⠀⠂⠀⠐⠀⡀⠂⡀⠂⠌⠐⡀⠌⠐⠠⠀⠂⠠⠈⢀⠀⠀⠉⠉⢀⠠⠐⠀⠂⠄⡀⠂⠄⠠⠈⠄⠡⠀⢂⠡⠐⠀⠄⠡⠐⠠⢀⠡⠀
|
||||||
|
⢣⠘⠠⠐⡀⢁⠠⠁⠂⠄⡐⠈⠄⠈⠄⢁⠀⠄⢻⣿⡇⠀⢈⡷⢤⣬⣿⣄⠀⠀⣴⠂⠀⠈⠀⣤⠁⠀⡀⠈⢀⣈⣠⣤⣥⣀⡁⠀⠂⢀⠐⢀⠡⠀⠡⢀⠐⢈⠐⡀⢂⠐⠀⡀⠠⠁⠠⠁⠌⠐⠀⢁⠈⠄⠐⢈⠠⠁⡐⠈⠄⠂⠄⠂⠄⠡⠈⡐⠠⠁⠄⠂⠀
|
||||||
|
⠣⢌⢁⠂⠐⠠⠀⢂⠡⠀⡐⠈⠄⡈⠄⠂⠈⠀⣿⣾⠟⠶⢾⡇⠀⠀⠙⢿⣆⢼⡛⠀⠀⠂⣰⠟⢀⣠⣴⡛⠋⣩⡭⠟⠛⣿⣷⠀⠈⢀⠀⢂⠠⢈⠐⡀⢈⠠⠀⠄⡀⢂⠁⠠⠐⠂⠄⠁⡀⠂⢈⠀⢂⠈⠄⠂⡀⢂⠠⠁⢂⠈⡐⠈⠠⠀⠡⠐⢀⠁⠌⠠⠀
|
||||||
|
⠇⡌⢠⠈⠄⡁⠐⡀⠂⠁⠠⢈⠐⡈⠠⠁⠌⠀⣿⣿⡀⠀⠀⢳⣄⠀⠄⠀⢻⢸⠆⠀⢠⣴⣷⠾⠛⠋⡉⠉⢛⡧⠀⢀⣼⣿⠇⠀⠂⠠⠀⢂⠠⠀⠂⠄⠂⠠⠁⠂⠐⠠⠈⠄⠡⠈⢀⠂⠠⠁⠂⠈⠄⠂⠠⢁⠐⠀⠄⡈⠄⠐⡀⠁⠂⡁⢂⠁⠌⠠⠀⢁⠀
|
||||||
|
⢣⠘⠠⠐⠠⢀⠁⠠⠈⠄⡁⠂⡐⠠⠐⢀⠀⠀⠻⣿⣷⠤⠤⣤⣝⣦⡀⠀⢸⡾⡇⡴⣿⠞⠁⠀⠀⢄⣠⠶⠿⠶⢶⣿⣻⠏⠀⠀⠁⠠⠐⡀⠄⡈⠐⠠⢈⠀⡁⠂⢁⠐⠈⠀⠐⠈⠀⠀⠐⡀⠡⠈⡐⠈⡀⢂⠈⠄⠂⡐⠀⢂⠐⠈⠄⠐⠠⠁⢂⠀⡁⠂⠀
|
||||||
|
⢃⡈⢁⠈⠀⠀⠈⡀⠁⠀⠀⠁⢀⠀⠀⢀⠀⠁⠀⠈⠛⣿⣿⣤⣤⣿⣿⣄⡀⣇⣿⡜⢁⣀⣀⣤⣼⣏⠁⠀⠀⠀⣸⣿⡏⠀⢀⠀⠁⢀⠀⠀⡀⢀⠁⠀⠀⠀⡀⠁⠀⠀⣄⣧⣤⣀⠈⠀⡀⠀⡀⠁⠀⢀⠀⠀⠀⢀⠁⢀⠁⠀⠀⠁⡈⠀⢁⠀⠀⡀⠀⠈⠀
|
||||||
|
⡆⡘⠠⠈⠄⡈⠄⠐⡈⠐⢈⠀⠂⡀⢂⠠⠀⠂⢀⢠⣴⣿⢿⠟⠋⠉⠉⢉⣽⣿⣿⣾⣿⣿⣥⣄⡀⠈⠉⢛⣶⣿⡿⠏⠀⠀⠀⠄⢀⠂⢀⠁⠀⠂⠀⠂⠌⢀⠀⡁⢀⣶⢿⣿⣾⣿⣧⡀⠀⠄⠐⠀⠡⠀⠄⡈⠄⠂⠐⠠⠈⠄⠂⡁⠠⠈⠀⠄⠂⠠⠁⢂⠀
|
||||||
|
⢆⠱⢈⠐⠠⠀⠄⠡⠐⠈⡀⠄⢁⠠⠀⠠⠀⠐⢀⣿⣟⡴⠞⠦⣤⠶⣺⠏⣡⡿⠀⣿⢦⠈⠙⡿⠿⣿⡿⣿⡟⠛⠁⠀⡀⠂⠈⠀⡀⠀⠂⠀⠄⢀⡁⠀⠠⠀⠂⢀⣾⢃⡾⠃⠀⣼⣿⡇⠀⡀⠂⢁⠠⠁⡐⢀⠂⠌⠠⠁⡈⠄⢁⠀⠂⠁⠌⡐⠈⠠⠁⠄⠀
|
||||||
|
⢎⠰⢈⠐⠠⠁⡐⠠⠈⠄⡀⠂⠄⠠⠁⡀⠄⠀⠸⣿⠉⣀⡴⢋⡵⠞⢻⡶⣿⢿⡿⢏⡘⣷⡼⠓⢦⡀⣽⣿⠋⠀⠀⢀⠀⠠⢀⠁⠀⠄⠁⣰⣶⢦⣄⡈⠀⠠⠀⣼⢣⣾⣇⠀⣼⣻⣿⣷⣄⠀⠠⠀⢀⠂⠠⢀⠂⡐⠠⡁⠄⠄⠂⠠⠁⡈⠐⡀⠌⢀⠡⠈⠀
|
||||||
|
⢎⠰⡈⠐⡀⢁⠀⢂⠡⠀⠄⠡⢈⠀⠂⢀⠀⠐⠀⢻⣿⣭⡖⣋⣠⣾⠟⠁⠀⢿⡇⠀⠙⢳⡙⣦⠀⣿⡽⠃⠀⠄⠂⠀⡀⠂⠄⠈⡀⠀⠀⢹⡻⣾⡿⣿⣷⣄⡀⣿⠏⠁⢻⡞⣿⠟⣩⣿⣿⡄⠐⡀⠠⠐⠀⢂⠐⠈⢀⠠⠀⠂⠄⠡⠐⠀⠡⢀⠐⡀⠂⡁⠀
|
||||||
|
⡃⢆⠑⠠⠐⡀⠈⠄⡐⠈⡀⠂⠄⡈⠐⡀⠀⡁⠄⠀⠙⠛⠟⠛⠋⠁⠀⢀⠀⠸⣿⣄⣀⣀⣿⣼⡿⠏⠁⠀⡀⠀⠐⠠⠐⠈⠠⠁⠄⢂⠁⠈⢷⡌⣷⣌⣙⢿⢿⡏⠀⠀⢸⡟⢉⣴⠏⢈⣿⡇⠀⠀⠄⠠⠁⠄⠂⢁⠠⠀⠌⠐⠈⠄⠂⢁⠂⠄⠂⠠⠁⠄⠀
|
||||||
|
⡍⢢⠉⠠⠐⢀⠡⠐⡀⠐⡀⢁⠂⢀⠡⠀⠄⠀⡀⠌⠀⠄⠠⠀⠐⠀⠂⠀⠠⠀⠈⠉⠛⠟⠛⠉⢀⠀⠐⠀⢀⠀⢁⠂⠁⠌⢀⠁⢂⠀⠄⠂⠀⠻⣇⡀⠉⠻⣿⡏⠀⠀⢸⣧⡾⢋⣤⣾⣿⣏⡀⠐⠀⠠⠐⠈⡀⠂⠠⠈⠄⡈⠐⠠⠁⠂⡈⠄⠈⠄⠡⠐⠀
|
||||||
|
⡑⢂⠌⠠⠁⠂⡀⠂⠄⢁⠀⠂⠌⠀⠄⡁⠂⠐⡀⠄⠠⠀⠄⠠⠀⢂⠐⠈⠀⠄⠁⠂⠈⢀⠀⠠⠀⠀⡀⠐⡀⢈⠀⢂⠡⠈⠄⠐⡀⠈⠀⠄⠁⠀⠙⣷⣀⠀⢈⡇⠀⠀⣼⢋⣴⡿⠋⣸⠿⢼⣿⣆⠈⠀⠄⠂⢀⠁⠂⠡⠐⠀⡁⢂⠁⡐⠠⠈⠐⡈⠐⠠⠀
|
||||||
|
⡍⢢⢈⠐⠠⠁⠠⢈⠐⡀⢈⠐⠠⠁⢂⠐⡀⠡⢀⠂⡐⠀⠌⢀⠂⠄⢂⠐⡀⠂⠄⡀⢁⠀⠠⠀⠠⠀⠐⠀⡐⠠⠈⠄⠂⡁⠐⠠⠐⠀⡁⠠⠈⠀⢶⡈⡿⢦⡀⣧⠀⢰⣿⣿⣯⡤⢾⣭⣤⠴⢿⣿⠈⠀⠄⠂⠠⠈⠠⢁⠂⢁⠐⠠⢀⠐⠠⠁⢂⠠⢁⠐⠀
|
||||||
|
⡜⢠⠂⡈⠄⠁⠂⠄⠂⡀⠂⠌⠀⠂⠄⠂⡐⠀⢂⠐⠀⡈⠄⠂⠠⢈⠠⠀⠄⡁⠂⢀⠂⠀⠁⠀⠁⠄⠐⡀⢀⠂⠁⠌⠀⠄⡁⠐⠠⠁⡀⠄⠀⠂⠘⢧⣹⣄⣻⣽⣄⣿⠟⠀⠀⠀⠄⢀⡷⠤⢾⣿⡇⠀⠠⠐⢀⠁⠂⠄⢂⠠⠈⠐⡀⠈⠄⠡⠀⡐⠠⠈⠀
|
||||||
|
⡜⠠⠒⠀⠌⠠⠁⢂⠐⡀⠐⠠⠁⡈⠄⠒⠀⠌⠀⠄⠂⠄⠂⡁⠐⠠⠐⠈⡀⠄⠁⠄⠐⠈⠀⢄⣶⣶⣄⠀⠂⢈⠐⠀⠌⢀⠐⡈⠄⠐⡀⢀⠂⠠⢀⠀⠁⠉⠛⠛⠿⣷⣾⢟⡓⠒⢺⡛⠶⣤⣼⣿⠃⠀⠁⠄⠠⠈⠐⡈⠀⠄⡈⠐⡀⠁⠌⡀⢡⠀⡠⠁⠀
|
||||||
|
⡌⠱⢈⠐⠈⠄⠂⠄⢂⠀⡁⠂⢁⠐⢀⠡⠈⠀⠌⠐⠠⠈⡐⠀⡁⢂⠁⢂⠠⠈⠄⠂⠀⡐⢀⣾⣟⡟⣿⡄⠐⠀⠠⠈⡀⠂⠠⢀⠂⠐⠠⢀⠀⠄⠀⠐⠈⠠⠀⠄⠀⠙⠿⠏⠙⠳⢾⣧⣴⣿⡿⠃⠀⡐⠈⢀⠠⠁⠂⠄⠡⠐⢀⠁⠄⢈⠐⢀⠂⠐⠀⡈⠀
|
||||||
|
⡅⢣⠈⠄⡁⢂⠈⡐⠀⠔⠠⢈⠀⠄⠂⢀⠂⠁⠌⢀⠁⠐⠀⠁⠠⠀⠌⠀⠄⡁⠐⠀⠐⢀⢸⣿⢻⢻⣹⣧⠀⠈⠀⠄⠠⠁⠂⠄⡈⠄⢁⠂⡀⠂⠡⢀⠂⡀⠈⢀⠈⠄⠀⡀⠄⠀⡀⠀⠉⠀⠀⠀⢀⠀⠄⢀⠐⠠⠁⢂⠐⢀⠂⡐⠈⠠⢈⠀⠂⢁⠐⡀⠀
|
||||||
|
⡜⠠⠌⠐⠠⢀⠂⠠⢁⠂⠁⠄⠈⠠⢈⠠⠀⠡⠀⠂⢀⠈⠄⠂⠁⢀⠠⠈⠀⢀⠐⠈⠀⢀⣼⣿⣾⠈⢧⣿⠀⠠⠁⠀⠂⠄⡁⠂⠄⠐⡀⠂⡀⢁⠂⠄⠠⠐⢁⠂⠈⡀⢀⠀⠀⡐⠀⠐⠀⠈⠀⠀⠂⠀⠄⠂⡈⠄⠂⠄⠂⡀⠂⡐⠈⠠⠀⠂⢁⠀⠂⠄⠀
|
||||||
|
⡌⢡⠘⠠⢁⠂⠂⡁⠤⠐⠈⠀⠌⠐⡀⠂⠁⠄⠂⠠⠀⣠⣦⣤⣌⡀⠀⢀⠈⠀⡀⠀⢡⣾⣿⢿⣻⠀⢸⣿⡄⠀⠠⠁⢈⠀⠄⡁⠂⡐⠠⠁⡀⠄⠂⢌⠠⠁⠂⢀⠁⠠⠀⠌⠐⠠⠐⠠⠈⠄⡁⠌⠠⢁⠠⢁⠠⠐⠈⠠⠁⡀⠡⠀⠡⢀⠁⠂⠄⡈⠐⢈⠀
|
||||||
|
⡑⠢⢁⠐⡀⠌⠐⠀⡀⠐⢈⠐⠈⡀⠐⡈⠄⡀⠄⠀⠐⣿⣿⣟⡛⠻⠷⣦⣄⡁⠀⠀⣾⣿⢯⣾⣿⡀⠀⣿⡇⠀⠂⠐⠀⠈⠠⠐⠀⠄⠠⢁⠀⠂⠌⠠⠀⠂⢁⠠⠈⠄⡁⠂⠡⠐⠠⠁⠌⡀⠄⠠⢁⠠⠀⢂⠀⠂⡁⠂⢁⠠⠐⠈⠠⢀⠂⡁⠄⠠⠁⠂⠀
|
||||||
|
⢣⠑⡈⠐⡀⠌⠐⡀⠄⢁⠠⠈⠐⢀⠡⠀⠄⠀⠐⠈⠀⠙⣿⣦⡭⠿⠶⠦⣽⣻⢶⣄⢻⣿⡻⣯⢿⡇⠀⢸⡇⠀⠀⠂⠈⠀⠄⠂⠁⡈⠐⠀⢂⠁⠂⢁⠈⠄⠂⡀⢂⠐⠠⢀⠡⠈⠄⠂⡐⠠⠀⡁⢂⠠⠈⡀⠌⠐⢀⠁⠂⠠⠈⠄⡁⠠⠐⡀⠄⠡⢈⠐⠀
|
||||||
|
⠣⢌⠐⠠⠀⠂⡐⠀⠂⠄⡐⢈⠐⠠⠐⢈⠀⠂⢁⠀⠂⡀⠘⣯⢯⠙⠓⠶⢤⣈⡙⢻⣿⣿⠳⣼⡌⣷⠀⢸⡇⠀⢀⣴⡶⠆⢀⠠⠁⠠⢈⠐⡀⠄⢁⠂⢀⠂⡐⠀⠄⡈⠄⠂⠠⠁⢂⠐⢀⠂⠁⡐⠠⠐⢀⠐⠠⠈⡀⠌⡀⠡⠈⠄⡀⢁⠂⠄⠠⠁⠂⠄⠀
|
||||||
|
⠃⠌⠀⠠⠁⢀⠀⠌⠐⡀⠄⠂⡐⠀⡁⠂⢈⠐⡀⠀⢂⠀⠄⠘⢿⣿⣓⣶⣾⡛⠿⣛⣷⢿⣷⣿⣧⢻⡄⢸⡇⣰⣿⢿⠀⠄⡀⠠⠀⡁⠄⠂⠠⠐⡀⠐⡀⢂⠠⠁⡐⢀⠂⠌⢀⠡⢀⠈⡀⠂⢁⠠⠀⡁⢀⠂⠠⠁⡀⠂⠐⡀⢁⠂⠄⠂⡈⠄⠁⠌⠐⠈⠀
|
||||||
|
⠠⠀⣶⣶⡆⠀⡀⠂⠐⡀⠄⠡⢀⠂⠄⡁⠂⠠⢀⠡⠀⠂⡐⠀⢠⡿⣿⣡⣈⣉⣷⠛⠋⠓⠻⣿⣿⣯⡇⣸⢻⠟⠁⠀⠀⡀⠀⠄⠐⢀⠐⡈⠄⠂⠠⢁⠠⢀⠂⠐⢀⠂⠄⠂⠄⠂⠄⠐⠠⠁⠂⡐⢈⠀⢂⠠⠁⡐⠀⡁⢂⠀⢂⠐⡀⢂⠐⠈⠠⠈⠄⠡⠀
|
||||||
|
⠀⠀⢾⣿⡇⠐⠀⡐⠠⠀⠂⡁⠄⡀⠂⠄⢁⠐⠠⠐⢈⠐⠀⠀⢿⢿⣡⣤⠤⠭⠽⠶⣄⣀⡀⠀⣛⣿⣷⣿⠛⠀⠐⠠⠁⢀⠀⠄⡁⠂⠐⠠⠐⠈⡐⠀⠄⠂⡈⠐⡀⠈⠄⠂⡈⠐⡈⢀⠡⠈⠄⠁⠄⠂⠠⢀⠂⠄⠂⠐⡀⠈⠄⢂⠠⠀⠌⠠⠁⠌⡐⠠⠀
|
||||||
|
⠀⠀⣻⣿⡇⠀⠄⢀⠠⠁⢂⠐⡀⠐⢈⠐⠠⠈⠄⢁⠂⠀⠌⠀⠘⠿⣷⣤⣶⣛⣋⣉⣭⡽⠟⣛⣭⠟⠋⠀⠀⠠⠀⠁⠄⠂⢈⠠⠐⠈⠠⠁⠄⡁⠐⡈⢀⠂⢀⠁⠀⢁⠀⠂⠀⡁⠐⡀⠐⢈⠠⠈⠀⠄⡁⠄⠂⡐⠈⡐⠀⡁⠂⠄⠂⡈⠄⡁⠐⠠⢀⠐⠀
|
||||||
|
⠀⠀⣽⣿⡅⠐⠀⠂⢀⠂⠄⢂⠠⠐⡀⠌⠐⠈⠐⢀⠠⠐⠀⠐⡀⠀⠀⠈⠉⠉⠉⠁⠀⠀⡀⠉⠁⠀⠄⠂⡁⠂⢁⠈⢀⠂⠄⠂⠄⠁⢂⠡⠀⠄⠡⠀⠄⠀⠂⠀⠁⠠⠀⠄⠁⠠⠁⡀⠌⠀⠄⠂⡁⠂⠠⠐⠠⢀⠂⠄⡁⢀⠂⠌⡀⠄⡐⠠⠈⠐⢀⠈⠀
|
||||||
|
⠀⠀⣾⣿⡇⢀⠂⠁⠠⠀⠂⠄⠂⠡⠐⠂⠁⠠⠁⠠⢀⠂⡈⠀⢀⠈⠀⠂⠀⠄⠀⠂⠈⠀⠀⠀⠄⠁⢂⠐⠀⡁⠂⠈⠀⠄⡈⠐⠈⡐⠀⢂⠈⢀⠂⠀⠄⠂⠀⢁⣠⣴⣾⣶⡌⠁⠐⢀⠠⠁⠂⡐⠠⠁⠠⢁⠂⠄⠐⠠⠐⠀⡐⠠⢀⠐⢀⠂⠡⢈⠠⠐⠀
|
||||||
|
⠀⠀⣻⣿⡇⠀⠠⠈⠐⠠⠈⡐⠂⢁⠐⠀⠌⠀⠌⡐⠀⡐⠠⠁⡀⢂⠐⡀⠂⠄⠂⡐⢀⠂⠐⡈⠠⠁⠠⠀⠡⠀⠠⠐⠀⡀⠀⠌⠐⠀⢈⠀⠐⠀⢀⠈⠀⢀⣴⠟⣻⣿⣿⡿⠁⠀⢈⠀⠐⡈⢀⠐⠠⠁⠂⠄⢂⠈⠄⡁⠂⢁⠐⠠⢀⠂⠄⠠⠁⠠⠀⡐⠀
|
||||||
|
⠀⠀⣿⣿⡇⠐⠀⡐⠈⡀⠁⠄⢁⠀⠂⡈⠄⠈⠄⠐⠠⢀⠡⠐⠀⠄⠂⡀⠌⠠⠁⡀⢂⠈⡁⠄⠁⡀⢡⣶⣶⣶⣦⣤⡀⠀⠄⠠⠀⠐⠀⠠⠀⢨⡀⢀⣰⣿⡤⠖⣛⣿⣿⠃⠀⡀⠂⠀⢂⠐⡀⢈⠐⠠⠁⡐⠀⢂⠐⠀⠡⠀⠌⠐⡀⠐⡈⠠⠈⠄⠐⡀⠀
|
||||||
|
⠀⠀⢾⣿⡄⠀⠁⢀⠐⠀⠌⡀⠂⠠⢁⠀⠂⡁⠌⠠⠁⡀⠂⠄⠡⢈⠐⠀⡐⠠⢁⠐⢀⠂⢀⠂⠄⠀⠹⣿⡾⣿⣯⣉⣉⣛⣶⣤⡀⢸⡇⠀⠀⣸⢡⡾⠉⣴⠛⣉⣩⣿⣿⡄⠀⢀⠐⠀⠂⠄⡐⠠⠈⠄⠐⡀⠡⠀⡈⠄⠡⠐⠠⠁⡐⠀⠐⡀⠡⢀⠡⢀⠀
|
||||||
|
⠀⠰⠶⠿⠶⠄⠁⠠⠀⠌⠀⠄⠡⠐⡀⢈⠐⠀⠌⠐⡀⠄⡁⠂⡐⢀⠂⠁⠠⢁⠠⢈⠀⠄⠂⠀⠂⢀⠀⠈⢿⣿⣿⠥⠾⠽⠧⣌⠙⢦⣙⢦⣠⢯⡟⣀⠾⠉⠉⠉⣉⣽⡿⠁⠀⡀⠂⢈⠐⠠⠀⠄⡁⠈⠄⠠⠁⠄⡐⢀⡁⠌⠀⠂⠀⠌⠐⡀⠐⠠⢀⠂⠀
|
||||||
|
⢀⠠⣼⣾⡗⠀⡀⠁⢀⠂⠡⢈⠐⢀⠐⠠⠈⡐⠈⠄⡀⠂⠄⡁⢀⠂⡐⠈⠐⠠⠐⠀⠂⡀⢂⠐⠈⠀⠐⠀⠀⢻⡿⣷⠴⠒⠛⠉⠙⠒⢮⣷⣿⣿⣾⣭⡶⣶⠿⠿⢿⣍⠀⠀⡀⠀⡐⠀⠌⡀⠡⠐⡀⠡⠐⠠⠁⠄⠄⠂⠄⠐⠈⡀⢁⠂⠡⠐⠈⡀⢂⠐⠀
|
||||||
|
⠀⡀⢈⣿⡇⠠⠀⠌⢀⠐⡀⢂⠈⡀⠌⠠⠁⠠⠈⠄⡀⢁⠂⠄⠠⠐⠀⠌⡀⢁⠐⡀⠁⠄⡀⠂⠌⠀⠈⡀⠄⠈⠻⠿⣶⣶⣶⣶⣿⣻⡯⢿⣿⣿⡿⣟⣋⠛⢭⣍⣉⣻⣿⣄⠀⠐⠀⡐⠠⢀⠁⡐⠠⠐⢀⠡⠀⠌⠠⠈⡀⠂⢁⠐⡀⠠⠁⢂⠁⡐⢀⠂⠀
|
||||||
|
⠐⠀⣾⣿⡗⠀⠠⠀⡀⠂⡀⢂⠐⠀⠄⡁⠂⠁⠌⡀⠐⡀⢂⠈⠄⡈⠐⡀⠐⡀⠂⢀⠁⠂⠄⡈⠄⠡⠀⠀⠄⠂⠀⠀⣴⣮⠗⣫⡟⢁⡴⣻⢏⣿⢏⢦⡈⢯⡹⣗⠮⢭⣿⡿⠀⠀⠂⢀⠂⠄⠂⡀⢂⠁⡀⠂⠡⠐⢀⠡⠀⠌⢀⠂⠄⠂⡁⠂⠠⠐⠠⠈⠀
|
||||||
|
⠀⠈⠛⣻⡃⠀⠁⠄⢀⠁⠄⢂⠈⠐⠠⠐⠈⡐⠠⢀⠁⠄⠂⡀⢂⠠⠁⡀⢂⠐⠈⡀⠌⠐⡀⠄⡈⠐⡀⠁⠠⠐⠀⢸⣿⡷⢚⡽⡷⣹⢩⠗⣻⢸⡎⢧⡹⣄⣳⣤⣽⣾⡿⠁⠀⠂⢁⠀⠌⡀⠂⠐⡀⠐⢀⠁⢂⠐⠠⠐⠈⡀⢂⠐⡀⠂⠄⡁⠂⠄⡁⢂⠀
|
||||||
|
⠀⠁⢘⣿⡏⠀⠄⠂⠠⠈⢀⠂⡈⠄⠁⠌⠐⢀⠡⢀⠂⠐⠠⠀⠄⠂⡐⠀⠄⡈⠐⠀⠌⡐⠀⡐⠠⠁⠠⠈⠀⠄⠀⡀⢻⣿⣯⣼⣡⣇⡞⣰⡯⠀⠀⢀⠙⢾⣿⣿⠿⠋⠀⢀⠐⠀⢀⠂⠄⢀⠁⠂⠄⠁⠂⠈⠄⡐⠠⠁⢂⠐⢀⠂⠄⡈⠐⡀⠐⠠⠐⡀⠀
|
||||||
|
⠀⠈⢻⣿⡇⠈⠀⡐⠀⠡⢀⠂⠄⠠⢁⠈⠄⠂⠄⡀⠂⠌⢀⠡⠐⠠⠐⠈⠠⢀⠡⠈⠠⠐⡀⠐⠠⠁⠂⠁⠄⠂⠐⠀⡀⠙⠻⢯⣿⣿⠿⠋⠀⠀⠐⠀⠠⠀⠀⠀⠀⠀⠈⠀⠀⠂⠄⠐⢈⠠⠈⠐⡈⠠⠁⠌⠠⠀⠄⡁⠂⡀⢂⠐⠠⠐⠠⢀⠁⢂⠁⠐⠀
|
||||||
|
⠀⠐⠳⣿⡇⢀⠂⠄⠈⠄⡀⠂⠌⠀⠄⡈⠐⢈⠀⠄⠐⡀⠂⠄⠂⠁⠄⡁⠂⠄⠂⠈⠄⢁⠠⠈⠄⡁⠠⢁⠂⡈⠄⠁⠄⡀⠂⡀⠀⠀⢀⠠⠀⠂⠀⡀⠁⠀⠂⠀⠀⠂⠁⡀⠡⢈⡐⠈⡀⠠⢀⠁⠄⢂⠈⠠⠁⢂⠐⠠⠁⠠⠀⠌⢀⠂⠡⠀⠌⠠⠈⢀⠂
|
||||||
|
⠠⠀⠿⢿⡏⠀⠀⠄⢈⠀⠄⠡⢀⠁⠂⠤⠁⠂⡀⠌⠀⠄⡁⢂⠈⡐⠠⠐⠈⡐⠈⠐⡈⠠⢀⠂⡐⠠⠐⠠⡐⠀⠐⠈⡀⢀⠀⡀⠀⠁⠀⡀⢀⠐⠠⠐⢀⠁⢂⠁⠄⡁⢂⠐⠄⠁⡀⠐⢀⠐⡀⠈⠄⠂⠠⠁⠂⠄⠂⢁⠂⠁⠌⡐⠀⠄⠡⢈⢐⠠⠁⠂⠀
|
||||||
|
⢤⣁⣀⠀⠀⠀⠐⠀⠠⠈⠀⠂⠄⠢⠈⠀⠀⠁⠀⠄⠁⠂⠀⠄⠂⠀⠁⠠⠁⠐⠈⠀⠄⠁⠀⠄⡀⠁⠌⠐⠀⠈⠀⠂⠐⠀⠐⠀⠌⠀⠁⠀⠂⠈⠐⠀⠂⠈⠀⠂⠠⠐⠀⠂⠀⠁⠀⠐⠀⠂⠀⠁⠂⠁⠄⠁⠈⠠⠈⠀⠂⠁⠐⠀⠈⢀⠂⠀⠂⠀⠂⠈⠀
|
||||||
39
homes/data/ascii-art/flower-1.txt
Normal file
39
homes/data/ascii-art/flower-1.txt
Normal file
|
|
@ -0,0 +1,39 @@
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⣠⡶⣄⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⣼⡿⣸⣿⡀⠀⠀⠀⠀⠀⣠⣴⣶⣦⡀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⣸⣿⡇⣻⣿⡀⠀⠀⢀⡔⠿⢧⡋⢹⢃⠙⣦⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⣴⣿⡟⠀⢿⣿⡇⠀⣠⡾⠃⠀⡼⠁⣾⠆⠀⣸⠃⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢰⣿⣿⠀⠘⢸⣿⣇⣴⠟⠁⠀⢸⡀⢸⠧⢠⣾⠋⠀⠀⠀⠀⠀⠀⢀⠀⡆⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢠⣿⣿⠗⠀⠀⠸⢋⡚⢉⡤⣴⠞⢰⠁⡜⢤⣿⠇⠀⠀⠀⠀⠀⠀⡐⠈⡄⢸⠂⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⣾⣿⣿⠁⠀⠀⢰⣯⠀⢫⡌⣿⡆⠘⢰⢳⢸⡇⠀⠀⠀⠀⠀⠀⢰⠈⠂⠀⠈⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⣿⣿⢧⠀⢀⣦⢟⡻⡽⡼⣇⠸⠀⠀⣼⠠⣿⠃⠀⠀⠀⠀⠀⠰⠠⢌⠀⠁⢀⢣⠂⠀⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⣿⡿⣝⡄⢾⣿⣌⢻⠥⢓⡯⠀⠂⠀⡏⣷⣿⡀⠀⠀⠀⠀⠀⡅⠡⠂⢌⠀⠠⠈⠄⠀⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡟⣵⢿⣼⣿⣿⣿⡀⢏⠀⠳⡀⠀⠀⣇⢹⣿⣇⠀⠀⠀⠀⢰⠈⡐⠡⠌⠀⠀⠃⠀⠄⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢧⣿⡇⡟⣿⣞⡬⢿⡈⢆⠐⡁⠀⠀⣿⣸⣿⣿⡆⠀⠀⠀⠀⠁⡐⠠⠈⠀⠀⠀⡁⠠⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⣀⡀⠀⠀⠀⠸⡿⡷⡈⢻⣿⣿⣣⠙⡄⠂⠀⢁⠀⢿⣼⣿⡿⠃⠀⠀⠀⠂⠀⠀⠀⠐⠀⠀⠀⠀⠐⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⢀⡤⢶⣶⣿⣉⠛⠯⡹⢿⠉⣦⣄⣀⡙⣽⠱⠈⣿⣿⣿⢷⣄⠠⠁⠂⠀⣾⢸⡟⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠂⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⣀⡴⠾⠛⡁⠀⢿⣯⡳⠜⡠⠁⠌⠂⠙⣿⡌⣟⣾⣑⢢⢿⡿⣙⠿⣬⢢⠀⠀⠀⠘⣿⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⢀⠴⠧⢶⢶⣶⡿⠁⢈⡉⠣⢬⠁⠀⢀⠀⠀⠈⠏⠠⠌⡳⠭⡜⢔⢫⠞⠴⠃⠀⠀⠀⠸⣿⡆⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⠘⢾⢿⣿⣆⣆⠐⠀⠤⣀⠀⠀⠀⠠⠀⠙⢦⡀⠀⠁⠀⠀⠁⢈⠨⠳⣶⡁⢃⠒⠀⠀⠀⢹⣿⠀⠀⠀⠀⢀⣀⣀⣀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠻⣿⣯⣌⢧⠐⠀⠐⠈⠑⣂⠤⢄⡀⠀⠀⠈⡄⣐⡂⠀⠀⠀⠀⠈⢿⠧⠀⣀⠀⠀⢸⣿⣄⠀⢠⣾⣿⣟⡻⢟⡻⠖⡶⢄⠀⠠⢀⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⢻⣻⣬⠻⡖⡄⠀⠄⠡⡀⣉⠒⠂⠉⠐⠀⠀⢄⣉⡙⠳⢶⣶⡤⠤⠳⣆⣀⠰⠀⢸⡿⣻⣦⡟⣿⡛⣮⠱⡃⠐⠠⠀⣿⡄⠐⢀⣤⣶⠾⠋⠉⠀⠀
|
||||||
|
⠀⠀⠀⠀⣿⣿⡥⠉⣖⡘⢦⡀⡘⢥⣂⠐⡀⠀⠀⠈⠀⠈⠉⠀⠂⠠⠉⣉⠁⠒⠒⠒⠒⡈⣽⣿⣯⡇⠡⡙⠦⡙⠔⡠⢀⠁⣿⣿⡄⠀⠞⠁⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠘⣿⣯⢱⠋⠈⠣⣛⣉⣁⣈⡅⣠⠘⠶⠳⣶⠖⠐⠒⡤⡥⠥⣤⢦⡥⣤⢤⠤⢄⡿⠻⠓⠛⠄⠈⠱⠈⢐⠀⠦⣽⣻⣿⣿⡄⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠘⠯⣴⣦⣶⣾⣿⡿⣽⣳⢾⣥⣌⣆⡠⠀⣀⠀⠁⠈⠉⢉⣉⠛⠙⠒⠒⠒⠉⡅⡐⠀⠀⠰⡤⣀⠀⠀⢈⠤⢳⢶⢹⣿⣿⣆⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠉⠛⠿⣿⣿⣧⢏⠾⡼⠯⠽⠿⢛⢉⣤⣶⣾⡭⠭⠖⠒⠒⠒⢈⡁⠄⣡⠊⠠⠀⠐⠁⠲⡤⣀⠮⡜⡣⢎⡱⢾⣭⡻⣷⣦⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠉⠁⠎⠾⠱⣿⠾⣟⡵⣿⠟⠋⢀⠠⠀⣀⠨⠔⠊⠁⠀⣰⡿⠀⠀⢄⡤⣼⣷⠏⡀⢭⡲⢍⣣⠆⣓⠺⣽⣾⡻⣷⡄⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⣠⠶⣏⠱⠇⠠⢀⣐⡥⠖⢋⡀⠀⠀⠀⢀⡿⢁⣾⣶⣟⣮⣽⣿⣿⣿⣦⡁⠪⢍⡒⠩⣑⣻⡴⣯⣝⣻⣿⣆⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠐⠙⠻⠛⠀⠀⠻⣩⣿⣷⣏⠍⠀⠀⠀⠀⢀⣼⣿⡟⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣷⣽⡦⢵⣧⢛⡭⢳⠶⣿⣼⣿⠄
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⣶⣾⠓⡀⠐⢠⣿⣿⣿⣿⣧⠄⠀⠀⢀⢬⣿⣿⡿⠃⠙⢿⣿⣿⣿⣿⣿⣿⣿⣿⡿⡿⠿⢦⣭⣿⡬⢿⣿⣿⠿⠃⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⣼⣭⣥⠒⠀⠁⢸⣿⣿⣿⠟⡹⡄⣐⠀⢮⣿⣿⣿⠀⠀⠀⠀⠙⠋⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠈⠓⠋⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⣸⣮⠉⠄⠉⢀⣤⣾⣿⣿⠯⡕⡜⣐⠈⣜⣾⢻⣿⡏⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⣧⠠⡤⢌⣾⣿⣿⣿⣿⡟⡝⡁⣊⠳⢻⢹⢸⡟⣇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢹⣿⠀⠷⣸⣿⣿⣿⣿⣯⢞⠕⣈⠙⣶⠹⣤⢳⣿⣯⣦⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢸⣿⠃⠈⢻⣿⣿⣿⣿⡣⢌⢰⠀⢷⡹⢴⣧⣿⣿⣿⡿⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢸⠿⠀⠀⣼⣹⣿⢨⣿⣿⣭⡁⠠⢸⣇⠺⢿⡟⣿⣿⠃⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠈⡀⠀⠀⢹⣷⢿⣾⡿⣿⡿⢁⠘⢸⠘⠘⣾⡑⠛⣇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠣⠀⢠⡜⠁⠘⢿⣳⣿⣹⠄⠘⠈⠂⠁⢚⠄⠘⣜⢆⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠘⢿⣿⣧⠜⡘⠀⠘⠀⠀⠄⠀⣿⡿⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠉⠻⣿⣴⡀⠂⢡⠀⠀⠀⢿⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠈⠹⣷⡄⠂⢆⠀⠀⣿⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠈⠛⠀⠘⡆⢰⡏⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠸⣧⡟⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
||||||
42
homes/data/ascii-art/flower-2.txt
Normal file
42
homes/data/ascii-art/flower-2.txt
Normal file
|
|
@ -0,0 +1,42 @@
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢠⡀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠈⢦⡀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢻⡀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢳⠀⠀⠀⠀⢢⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢘⡄⠀⠀⠀⠀⢃⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢸⠃⠀⠀⠀⠀⢨⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡸⠀⠀⠀⠀⠀⡆⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⣠⡄⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⢁⠂⠀⠀⠀⠀⠀⢠⣆⠀⠀⠀⠀⠀⢀⠔⠉⠠⠉⠰⡘⢠⠍⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢸⡇⠀⠀⠀⠀⣰⠎⠀⠀⠀⠀⠀⠀⠈⠁⠀⠀⠀⠀⠀⠎⠀⠀⠀⠁⠀⢯⢄⠴⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠺⠆⠈⠃⣮⡁⠀⠀⠀⢀⡞⢀⠀⠀⠀⠀⠀⠯⠇⠀⡀⠀⠀⠀⠸⡧⢛⠩⠑⡀⢠⣸⠀⡠⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠘⠟⠀⣸⡷⠀⠀⠀⡼⠀⠀⢡⠀⠀⣤⣤⠀⠀⠨⣿⠆⠀⠀⠀⠑⠤⠤⠜⠁⢰⠃⠐⠂⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠀⡀⠀⠀⠀⠀⠀⠀⠘⣗⠀⠀⠠⡇⠀⠀⢸⠀⣠⠌⠉⠀⠀⠀⠀⠀⠀⠾⠀⠀⠀⠀⠀⡂⡞⠄⡸⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠘⠋⠀⠶⡀⠀⠀⠀⠀⢻⡄⠀⠀⢗⡀⠀⣸⠀⠰⡲⠀⠿⠀⠀⠀⣴⡵⠀⠀⠀⠀⠀⢐⡜⡀⣁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠸⠆⠠⣶⠀⠠⠶⠠⣦⠈⢳⣠⠀⠈⣆⠀⡯⠀⠀⣦⠀⡈⢀⣤⡄⠀⠀⠀⠀⠀⠀⢠⠞⠊⠀⠀⠈⠳⣄⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⡆⠀⠀⢀⣤⡀⢖⡄⠀⠀⠀⠀⠹⣆⡀⠙⡂⢰⡀⠀⠀⣠⣷⣆⠉⠐⠀⠻⠗⠀⠀⡰⠋⢀⡔⠀⢲⡀⠀⣏⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠐⢷⣀⠀⠈⠋⠀⣀⠀⠀⠀⠀⣁⡐⢈⡳⡂⠹⡄⢧⢂⣸⠹⢋⢠⢣⢳⣠⠀⠀⣡⠎⠀⠀⠘⣧⢒⠘⢀⡠⠋⢀⡀⣀⡄⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠘⣿⢦⡀⠀⠀⠘⠁⠀⠠⢸⣿⡍⠻⠒⢿⣦⠹⡄⢻⡟⠀⠘⡀⠘⣠⡣⣠⠞⠁⠀⠀⠀⠀⢈⠈⢉⠁⠀⠀⠈⢁⠙⠁⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠘⠶⡼⣕⠲⠦⢤⣀⣀⠘⢿⡵⡂⠀⠀⠉⠑⢎⣿⠁⠀⠀⠀⡆⣿⢾⡫⠠⣀⣤⡴⠿⢛⠿⡿⣿⠆⠀⣀⠀⠀⠀⠀⡀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠈⠻⢶⣬⡳⣲⠢⣍⢳⡀⣷⠁⠀⡀⠀⠀⠄⢿⡀⠀⠀⠠⠁⣿⢽⣴⠿⠛⠁⠀⠈⠀⣰⡷⢁⠔⡪⠂⠐⢀⣨⠖⠂⠉⠉⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠈⠍⠉⢛⠳⢔⣧⠘⣧⠀⢄⠀⡀⠀⠚⡷⠁⠀⠀⣰⣿⠏⠑⠠⠀⠀⠀⠠⣪⢟⣴⣗⣁⠦⠴⠛⣉⢀⡀⢤⡀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⢀⡠⢴⡲⣞⢲⣒⡲⢤⡤⢬⢆⡙⠷⡌⠳⣄⠂⠀⠀⠂⠶⡄⢠⣆⡿⠁⠀⠀⠀⢠⠔⠈⡡⢃⠊⠔⠀⠁⠐⠊⠽⣂⠉⠈⠑⠨⡺⡄⡀⠀
|
||||||
|
⠀⠀⠀⠀⠀⢠⠜⣃⣨⡧⡽⠞⠙⠓⠚⠑⠘⠚⠓⠤⡵⢠⣛⡲⣦⡀⢤⡔⣷⡜⣿⣡⡀⠐⠀⢀⢨⣠⣖⣑⠚⠶⢶⡶⢖⡤⠤⣄⠉⠐⠂⠐⠂⠓⠳⣅⠀
|
||||||
|
⠀⠀⠀⠀⣠⣿⠲⠋⠁⠀⢀⡤⣲⠲⠆⢶⠻⠖⢚⡴⠞⠉⠈⠀⠍⠻⣛⢯⣽⣻⡣⠯⠴⣶⠍⠉⠉⠀⠊⠉⠉⢟⣶⣌⡳⣬⡛⣦⠝⡄⠀⠀⠀⠀⠀⠀⠑
|
||||||
|
⢀⣀⠤⠞⠋⠁⠀⠀⢀⠔⠃⡡⠴⣱⠖⠉⠠⣰⣏⡤⠊⡀⠚⢁⠀⠐⣴⢯⣭⣾⢮⢮⡹⢶⠆⠀⠐⢀⠀⠈⠀⢢⣘⡹⣿⣿⡝⢶⣽⢻⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⡠⠋⣤⣪⡴⠋⠁⠀⠠⣺⣿⠝⣀⢀⡠⢉⣀⣠⣦⣴⠿⢻⠃⠡⠁⢌⠢⡂⠴⢄⠠⠤⠄⠴⠦⣔⣺⣿⣯⡙⠆⢻⣾⠀⠀⠀⢠⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⣀⣴⣿⡿⠞⠋⠁⠀⠀⠐⠑⠀⣿⣯⣴⢾⢿⣿⢿⣿⣿⢿⠏⠠⠁⡐⠀⡀⠰⠌⢷⣦⣶⡧⣤⡶⠚⢛⢛⠋⢩⢲⠀⠀⢸⡇⠀⠀⣀⡀⠃⠀⠀
|
||||||
|
⠀⠈⠉⠋⠉⠉⠀⠀⠀⠀⠀⠀⠀⢨⡴⢇⣧⡁⠒⠛⠹⣹⡿⢋⢿⣾⡇⣘⡀⠄⠀⠄⠁⡚⠼⢟⠮⣿⡹⢺⣧⣛⢊⢁⣀⠁⠸⠛⠜⣀⠀⢀⡉⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⢀⣀⠀⠀⠀⠀⠀⡏⠘⢇⢸⠏⠀⣬⡾⣿⣹⢛⣦⣾⢿⣌⢇⡘⠄⠘⡀⣷⣿⣃⠀⠈⠳⣏⣀⠙⡲⣌⠋⠉⣎⠆⠀⣉⡴⠊⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠙⠃⠀⠞⠂⠀⠀⢻⣆⣀⣀⡠⣾⡟⠀⡀⠿⢦⡙⢫⢼⢟⣾⣶⢣⣰⢿⣾⠟⠈⠹⢦⡀⠙⣮⢥⠀⠨⡳⣜⠁⡖⢆⠲⠃⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠠⣾⡇⠀⠀⠀⠀⠈⠉⠉⣸⡟⢀⢙⠋⠀⢈⣁⡘⠛⠐⠹⣻⣿⢿⣿⠏⠀⠀⠀⠠⢿⡀⢈⢧⠓⠀⠘⠝⣷⣌⠁⠀⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡀⡀⣿⠁⡀⠀⠀⠀⠈⠋⠂⠀⠀⠀⠁⠙⠹⠘⠀⠀⠀⠀⠀⠙⡇⠀⢹⣧⠀⠀⠈⢌⣿⡆⢃⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⣌⡁⣷⠉⠤⠤⢠⡴⠶⣶⣤⠀⠀⠀⠀⠀⠀⠀⠀⢲⠆⣤⡟⠀⡇⠀⢈⢻⡄⠀⠀⠀⢻⣷⡜⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠈⣷⢻⡀⠀⠢⢺⣩⡇⠀⢹⡆⠀⠀⠀⠀⠀⠀⠀⠐⢆⡉⠡⠞⠀⠀⠘⣸⡇⠀⠀⠀⠀⣿⣱⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠉⡼⠳⣤⣀⠄⣂⣀⡤⠚⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⣿⡇⠀⠀⠀⢰⣿⡇⠆⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠐⠁⢏⠨⣯⠉⠹⠆⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢸⣿⠁⠀⠀⠀⢸⣿⠄⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠉⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⣸⣾⠋⠀⠀⠀⠀⣾⡿⠌⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⣿⠇⠀⠀⠀⠀⠀⣿⡟⠀⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠐⠖⠉⠀⠀⠀⠀⠀⢀⣾⣿⠂⠀⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⣾⣟⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⣴⡿⠋⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⣠⢤⣾⣿⠟⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢤⣤⣶⡿⠞⠟⠊⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
||||||
13
homes/data/ascii-art/flower-3.txt
Normal file
13
homes/data/ascii-art/flower-3.txt
Normal file
|
|
@ -0,0 +1,13 @@
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢠⣖⡀⢢⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠈⠛⠃⢨⠃⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡠⠊⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡠⠊⢀⣀⣀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢠⢎⡰⠊⠉⠀⠉⠑⡆⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢠⡞⡉⠑⡆⠀⡎⡌⠀⠀⢰⡾⠂⠀⡄⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠘⠿⠇⢠⣏⡐⠓⢇⠀⡀⠈⡓⠒⠊⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⡠⠼⣸⠀⠀⢸⠊⠀⠀⠰⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⡠⠔⠒⢎⠀⠀⡘⠆⣁⡇⢆⣡⠴⠥⢄⡀⠀⠀
|
||||||
|
⠀⢀⡀⠀⡀⠀⠀⠀⢠⠎⠀⣀⠤⣾⠷⠦⢼⢿⣉⡳⣋⡤⠀⠀⢀⡇⠀⠀
|
||||||
|
⢠⡎⠀⣠⢈⡆⠀⠀⡆⡠⠊⠀⢰⠁⠀⠈⡰⢺⠉⡏⠂⠉⢲⠖⠛⠲⢄⡀
|
||||||
|
⠘⢇⡀⠙⠋⠀⢀⡠⢏⠁⢴⣆⠈⠒⠶⢲⠁⠈⢀⣇⠀⠀⣸⢃⡴⠆⢀⡇
|
||||||
|
⠀⠈⠙⠒⠶⠖⠋⠁⠈⠐⠚⠁⠀⠀⠀⠘⠦⠤⠊⠀⠉⠉⠁⠀⠑⠒⠊⠀
|
||||||
17
homes/data/ascii-art/flower-4.txt
Normal file
17
homes/data/ascii-art/flower-4.txt
Normal file
|
|
@ -0,0 +1,17 @@
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⣀⠀⠀⠀⠀⠀⠀⠀⠀⢀⠤⠒⠒⠢⢄⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠻⢟⣇⠤⠒⠂⠤⡀⠀⢰⠃⠀⠀⣀⠄⠀⢣⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⠞⠁⠀⠀⠀⠀⠈⢆⢺⠀⠀⠀⠣⣀⣀⡼⢤⣶⣶⣶⣤⣤⣀⣀⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⣸⣸⡀⠀⢀⣴⣤⠀⡜⠘⢆⣠⠴⠋⣩⣴⡾⢟⣿⣿⣿⣿⣶⣾⣭⣝⡶⣄⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢸⣿⣤⠀⢸⣿⠃⠀⠀⣠⡼⠣⣤⣿⣿⣛⠤⠛⣿⣿⡿⣻⣿⣟⡿⠿⣿⣘⣿⡀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⢀⣠⣴⣶⣶⣿⣿⣯⣶⣶⣄⣀⠀⠀⠀⠀⠀⠀⠀⠐⠀⠀⢀⠀⠀⠀⠈⢺⣻⣄⠀⠻⣄⣀⣴⣋⢔⢪⡶⠛⠀⢑⣲⢶⣿⣿⠾⠛⢡⠁⠀⠰⢿⣿⣿⡽⡆⠀⠀⠀
|
||||||
|
⠀⠀⣠⣾⡿⠛⣿⡿⣿⣿⡯⠭⣍⣛⠷⣿⣧⢀⣶⡿⠲⡀⢀⣤⣪⠭⠭⣉⠑⠢⡀⠀⠉⠚⠭⣶⢶⡞⠁⢁⣴⢻⠀⠀⢰⠁⠀⠉⢆⠀⠀⣀⠤⣁⠀⢰⣁⡈⠙⢿⢻⠀⠀⠀
|
||||||
|
⠠⠊⠉⠉⠁⠈⢉⢼⣿⠏⣴⡄⠀⠈⠙⠯⣿⣷⠁⢀⣷⢡⡾⠋⠐⢀⡀⠈⢳⠀⢱⠀⠀⢠⣾⡟⡏⣇⣴⢟⣡⠼⡀⠀⠀⠁⠀⠀⡸⡰⠉⢀⣆⡤⢷⠼⡟⠋⠀⠸⡼⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⢀⡇⢸⠉⠉⠉⠐⣦⣄⠀⠀⠈⢿⣧⡸⣿⢸⠃⠀⠀⠘⠯⠤⠋⣴⡽⠀⠀⠎⠁⣸⣼⢟⠁⠈⠀⠀⡹⠢⢄⣀⡠⠔⠁⡇⠀⠀⡟⠻⡷⣦⠇⠀⠀⢠⢧⠠⣾⣦
|
||||||
|
⠀⠀⠀⠀⣀⠸⡂⠀⠉⠈⠀⠀⠈⠫⡄⠀⠀⠀⠘⢳⣽⣾⡆⠀⠀⠀⠀⠀⠱⠋⠀⠀⣠⣴⣾⣟⠁⣨⣖⠤⠤⣲⠥⣤⠤⣀⠀⠀⠀⠳⣄⠀⠑⢄⡀⠀⠀⢀⡴⢳⣣⠑⠛⠉
|
||||||
|
⠀⠀⠀⠈⠿⠛⠣⡀⠀⠀⠀⠀⠀⢠⠃⠀⠀⠀⠀⠀⠈⠿⣟⣦⡀⠑⠦⣴⣶⡾⣶⣿⠟⡏⣾⣿⣦⡤⠜⠀⣼⠁⢀⡿⠀⠀⠱⡄⠀⠀⠈⠓⠲⠤⠬⠟⠛⠉⠀⢺⡟⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠈⠢⠤⠤⠤⠖⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⡉⠟⠻⠶⠞⠖⠛⠭⠠⣾⣷⠋⣿⣿⠟⣁⡠⠎⠢⠤⠝⠀⠀⠀⣧⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠘⠃⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠁⠐⠀⠀⠀⠀⠀⠀⠀⢠⡟⠁⠀⢻⡝⡟⣶⣦⣶⣦⣤⠀⠀⠀⢠⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡀⠀⠀⠀⠀⠀⠀⠀⠀⡀⡀⡘⣷⡬⠢⣑⠀⠀⠈⠑⢄⡠⠚⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡁⠀⠁⠈⠀⠁⡨⠊⠉⠁⠂⢼⣵⠀⠀⠉⠁⠂⠉⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠂⡀⠀⠀⠀⠇⠀⠀⠀⠀⢾⢿⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠁⠀⠀⠈⠢⢄⣀⡴⡿⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
||||||
13
homes/data/ascii-art/flower-6.txt
Normal file
13
homes/data/ascii-art/flower-6.txt
Normal file
|
|
@ -0,0 +1,13 @@
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⣰⣦⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⣴⠟⠹⣧⡀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⣷⣦⣄⣠⣿⠃⢠⣄⠈⢻⣆⣠⣴⡞⡆⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⢀⣀⣀⣿⠀⠈⢻⣇⢀⣾⢟⡄⣸⡿⠋⠀⡇⣇⣀⣀⠀⠀⠀⠀⠀
|
||||||
|
⠀⣤⣤⣤⣀⣱⢻⠚⠻⣧⣀⠀⢹⡿⠃⠈⢻⣟⠀⢀⣤⠧⠓⣹⣟⣀⣤⣤⣤⡀
|
||||||
|
⠀⠈⠻⣧⠉⠛⣽⠀⠀⠀⠙⣷⡿⠁⠀⠀⠀⢻⣶⠛⠁⠀⠀⡟⠟⠉⣵⡟⠁⠀
|
||||||
|
⠀⠀⠀⠹⣧⡀⠏⡇⠀⠀⠀⣿⠁⠀⠀⠀⠀⠀⣿⡄⠀⠀⢠⢷⠀⣼⡟⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠙⣟⢼⡹⡄⠀⠀⣿⡄⠀⠀⠀⠀⢀⣿⡇⠀⢀⣞⣦⢾⠟⠀⠀⠀⠀
|
||||||
|
⠀⠠⢶⣿⣛⠛⢒⣭⢻⣶⣤⣹⣿⣤⣀⣀⣠⣾⣟⣠⣔⡛⢫⣐⠛⢛⣻⣶⠆⠀
|
||||||
|
⠀⠀⠀⠉⣻⡽⠛⠉⠁⠀⠉⢙⣿⠖⠒⠛⠻⣿⡋⠉⠁⠈⠉⠙⢿⣿⠉⠀⠀⠀
|
||||||
|
⠀⠀⠀⠸⠿⠷⠒⣦⣤⣴⣶⢿⣿⡀⠀⠀⠀⣽⡿⢷⣦⠤⢤⡖⠶⠿⠧⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠛⢿⣦⣴⡾⠟⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠙⠟⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
||||||
37
homes/data/ascii-art/flower-7.txt
Normal file
37
homes/data/ascii-art/flower-7.txt
Normal file
|
|
@ -0,0 +1,37 @@
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⣤⠴⢤⡀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⣠⢾⣛⡆⠈⡏⠰⠶⠃⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢦⣿⣄⣉⣁⣤⠽⣦⣤⡶⠶⣤⣄⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠉⠚⠹⡉⢃⣴⠟⠉⠀⠀⠀⠀⠉⠻⣦⡀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⣤⢡⡿⠁⠀⠀⠀⠀⠀⠀⠀⠀⠈⢷⡄⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⡂⣿⡇⠀⠀⠀⠀⣠⣤⣀⠀⠀⠀⠘⣇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠁⢻⣷⠀⠀⠀⠀⢯⡉⣿⡆⠀⠀⣰⡇⠀⢀⣀⢤⠀⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠘⢿⣧⣀⠀⠀⢀⣴⡟⠀⠀⣰⣿⡷⢏⡭⠔⠹⠀⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⡀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠙⠛⠿⠿⠟⠋⠀⢀⣼⣿⣿⣿⠿⣭⡉⢛⡃⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⣀⣤⠶⠿⣟⣟⣝⡷⣲⢤⣀⠀⠀⠀⠀⠀⠀⢠⠀⠀⠀⠀⠀⠀⣠⣾⡿⠃⠹⡟⢖⠢⠽⠦⠁⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⢀⣴⠞⠁⠀⠀⠀⠀⠀⠉⠙⢦⣕⡯⣷⣄⠀⠀⠠⣴⠋⢓⡶⠂⠀⢀⣼⣿⠟⠁⠀⠀⠈⠺⡄⠋⣀⣰⣀⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⣠⠟⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠙⢯⣒⢭⣦⠀⠀⢸⠕⠦⠇⠀⣤⣿⡿⠃⣠⠴⠶⠶⣤⡀⠀⠀⠼⠿⡏⠀⠀⠀⠀⠀⠀
|
||||||
|
⢀⡏⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠈⠻⣝⡫⢧⠀⠀⠀⠀⣠⣾⡿⠉⠀⢸⠁⢀⣀⠀⠈⣷⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⣼⠁⠀⠀⠀⠀⣠⣶⣿⣿⣷⣦⡀⠀⠀⠀⠀⠙⡮⣛⡆⠀⠀⣰⣿⡏⢐⡀⠀⠸⣦⣀⣨⠇⠒⣸⣀⣀⣄⣀⡀⠀⠀⠀⠀⠀⠀
|
||||||
|
⢹⠆⠀⠀⠀⢠⣿⡿⠃⠀⠀⠉⢻⡄⠀⠀⠀⠀⠙⣗⢿⠀⣸⡟⡙⢷⡈⢠⠀⡀⠈⠉⣁⠘⣠⠟⠉⠉⠙⢿⣿⡆⠀⠀⠀⠀⠀
|
||||||
|
⠘⣇⠀⠀⠀⠈⢿⡇⠀⢲⠀⠀⠀⢻⡀⠀⢤⣴⡀⠹⣽⣴⡿⣁⠀⠈⠻⣦⣤⣥⣌⣡⡤⠞⠁⠀⣰⠛⠆⣸⣿⡇⠀⠀⠀⠀⠀
|
||||||
|
⠀⢻⡄⠀⠀⠀⠀⠉⠙⠉⠀⠀⠀⢸⠀⠀⠚⠻⠁⠀⢿⣿⢣⢀⡤⠶⠲⢮⣍⡉⠉⠁⠀⣤⠀⠀⠘⢿⣿⡿⠏⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⢻⣄⠀⠀⠀⠀⠀⠀⠀⠀⣰⠋⠀⡀⠀⠀⠀⠀⢸⣿⣰⠏⢀⡴⢶⡄⢸⡇⠀⢖⠚⠉⠓⣲⠆⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠙⠷⣦⣄⣀⣀⣠⣴⠾⠁⠀⢰⣕⢲⣪⡉⠅⣾⣿⡟⠀⠈⠳⠭⠵⠋⠀⠀⣼⣁⢄⣸⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠉⠉⠉⠉⠀⠀⠀⢤⡼⠉⢹⡣⣉⠀⣿⣿⡇⠀⠀⢠⣴⠶⢦⡀⠀⠁⠀⠀⣙⡂⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢸⡔⠟⡛⡀⡆⣿⡟⣷⠀⠀⣿⣇⣲⠈⡿⢀⣴⣾⣿⠿⠿⣿⣷⣦⡀⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⢰⡀⡷⣰⣇⡴⠠⠜⠀⠀⠀⠀⣿⡇⡘⣷⣄⠀⠙⣉⠞⢡⣿⡟⠁⠀⠀⠀⠀⠈⠻⣿⣆⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠠⣤⣯⣷⣧⠿⠵⠶⠶⣤⣄⡀⠀⢻⣇⠡⡌⠻⣏⠉⠁⠀⢺⣿⠀⠀⢀⣶⣶⣤⠀⠀⠘⣿⡀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠠⢾⡿⡋⠗⠈⠃⠈⠁⠰⠉⡻⢶⣜⣿⢘⠂⣠⣌⣷⡀⠀⢸⣿⡆⠀⠈⠧⠄⢸⡇⠀⠀⣹⠇⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⣰⠏⠄⠁⠀⠀⠀⠀⠀⠀⠀⠁⠈⠙⢿⣏⠰⡏⣬⣿⢻⡀⠀⠻⣿⣄⠀⠀⣠⠞⠀⠀⢠⡟⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⢰⡏⠴⠀⠀⠀⠀⢀⣠⣀⣀⠀⠀⠀⠀⠈⢻⣧⡙⢦⣤⡾⠁⠀⠀⠈⠙⠛⠋⠁⠀⠀⣠⡞⠁⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠸⢿⡀⠀⠀⠀⣰⠋⠁⠀⠉⠙⢦⠀⠀⠀⠀⢻⣟⢦⣄⡀⠀⠀⠀⠀⠀⠀⠀⣀⣤⠾⠋⠀⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⢹⡹⣇⠀⠀⠘⡇⠀⠀⠖⡆⠀⠘⣧⠀⠀⠀⠀⠻⣎⢿⠹⠳⢲⡲⢶⠶⠾⠛⠉⣁⣠⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠸⣎⡹⣧⡀⠀⠻⣦⣤⠴⠃⠀⢰⠏⠀⣤⣀⣴⠀⠙⣧⡱⡀⢠⡾⢟⣛⡓⣆⠀⠿⣿⠛⠁⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠱⣊⠜⣻⣶⣄⣀⠀⠀⠀⣀⠟⠠⣔⣊⠁⣶⣄⠀⠈⢷⣅⢸⠅⢸⣓⣃⣼⠀⠀⠈⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠙⢮⡞⡜⡝⡝⡟⡯⠟⠁⠀⠀⠀⠈⠿⠀⠀⠀⠀⠀⠹⣶⡳⢤⣹⣯⡥⠴⠶⠶⠦⣄⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠉⠉⠉⠉⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⣠⣤⣤⣀⠀⠈⠻⣦⡀⠀⠀⡞⣙⣷⠀⢈⡆⠀⠀⣀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢠⣿⠏⣤⢈⣿⠀⠀⠀⠈⠳⣄⠈⣷⣈⣉⣠⡼⢡⡾⠛⠉⠙⢳⡀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢸⣿⣄⠈⠉⠁⢀⣀⣤⣶⣶⣾⣷⣌⠙⠋⠁⠀⣿⠀⢤⡀⠀⠀⣷
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠉⠛⠻⠿⠛⠛⠉⠁⡼⠋⢠⠨⠍⡳⢄⡀⠀⠘⠻⠛⠁⠀⣰⡿
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢸⡇⣔⡒⡞⡀⠁⠰⠙⡲⢦⣤⣤⣤⣾⠿⠁
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠑⠺⠞⠧⠁⠀⠀⠀⠁⠐⠉⠉⠉⠀⠀⠀
|
||||||
17
homes/data/ascii-art/fox-1.txt
Normal file
17
homes/data/ascii-art/fox-1.txt
Normal file
|
|
@ -0,0 +1,17 @@
|
||||||
|
⠀⠀⠀⠀⠀⢀⡄⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⣸⣿⡄⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⢠⡟⠘⣷⣄⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⢰⡟⠀⠀⠈⠻⣷⣤⣤⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⣠⡟⠀⠀⠀⠀⠀⠈⢻⡿⣷⡀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⣰⡟⠀⠀⠀⠀⠀⠀⠀⠀⠻⠸⣷⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⢰⡏⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢹⣇⠀⣠⣄⣀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⣀⣀⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⣾⡁⢀⣠⠴⠒⠲⣤⣠⠶⠋⠳⣤⣸⣿⣰⣿⣿⣿⣷⣄⠀⠀⠀⠀⠀⠀⠀⠀⣠⣾⣿⣿⣿⡄⠀⠀⠀⠀⠀⠀
|
||||||
|
⣿⠟⠉⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⣽⠏⣿⡿⢿⣿⣿⣿⣷⣄⠀⠀⠀⠀⢠⣾⣿⣿⣿⠋⢹⡇⠀⠀⠀⠀⠀⠀
|
||||||
|
⢹⡆⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⣰⡟⠀⣿⠁⠀⠙⣿⡛⠛⢿⡶⠶⠶⠶⣿⣄⣀⣰⠃⠀⢸⡇⠀⠀⠀⠀⠀⠀
|
||||||
|
⠈⢷⡀⠀⠀⠀⠀⠀⠀⠀⠀⢰⡿⠁⠀⣿⠀⠀⠀⠈⢷⡀⠘⠛⠀⠀⠀⠀⠈⠉⠳⣄⠀⢸⡇⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠈⢿⣦⡀⠀⠀⠀⠀⠀⢀⣿⣇⣀⠀⢻⠀⠀⠀⠀⢰⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠈⠳⣾⠃⠀⣤⣤⣄⠀⠀
|
||||||
|
⠀⠀⠀⠉⠻⢶⣄⣠⣴⠞⠛⠉⠉⠙⠻⢾⣇⠀⢀⣰⠏⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⣿⡄⠀⣿⢩⡿⣿⡆
|
||||||
|
⠀⠀⠀⠀⣠⣴⠟⠉⠀⠀⠀⠀⠀⠀⠀⠀⢹⡷⠞⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢸⡇⠀⣿⣟⣵⡿⠁
|
||||||
|
⠀⢀⣠⡾⠋⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢸⣇⠀⠀⠀⣴⣿⠀⠀⠀⠀⠀⠀⢠⣶⠀⠀⣸⡇⠀⠙⠋⠁⠀⠀
|
||||||
|
⢸⣿⣿⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠈⣿⣄⣈⣀⣙⣁⠀⠀⣶⣾⡶⠀⠻⠿⠀⢠⣿⣁⡀⠀⠀⠀⠀⠀
|
||||||
|
⠈⠛⠻⠿⠶⠶⠶⡤⣤⣤⣤⣄⣀⣤⣀⣠⣤⣀⣀⣹⣿⣿⣿⣿⣤⣽⣿⣴⣶⣶⡦⢼⣿⣿⣿⣿⠇⠀⠀⠀⠀
|
||||||
25
homes/data/ascii-art/fox-10.txt
Normal file
25
homes/data/ascii-art/fox-10.txt
Normal file
|
|
@ -0,0 +1,25 @@
|
||||||
|
⠀⠀⠀⠀⢀⡴⢦⡀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⣴⡟⠱⣧⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⢾⠃⠀⠻⡢⡀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⣰⣿⢿⠁⠀⣯⡀⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠰⡇⠀⠀⠀⢹⣾⣦⡀⠀⠀⠀⠀⠀⠀⠀⣠⣾⠀⠀⠀⠀⣠⣾⡿⠁⡇⠀⠀⢸⠇⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⣤⠁⠀⠀⠀⠀⢫⠻⣮⣦⡀⠀⠀⠀⢀⣴⣎⡞⣤⣴⣦⣻⠟⢗⣒⠠⣇⡀⠀⠈⡄⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⣿⠀⠀⠀⠀⠀⠏⣇⠈⠻⣿⣦⣀⣴⣿⣿⣾⡷⢿⣛⣃⡭⣅⣰⣶⢻⠋⠀⠀⠀⣧⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⣿⠀⠀⡀⠀⠀⢸⢸⠀⠀⠙⠟⢷⣿⣿⣿⣿⣿⡟⣛⣛⠋⣿⣫⣭⠉⠒⠦⡀⠀⡟⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⣿⠀⠀⢡⠀⠠⠀⠿⡄⠀⠀⠀⠀⠙⠻⣿⣿⣿⣿⣋⠉⢛⡽⠛⠵⣄⠔⠳⣌⢦⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠿⠀⠀⢃⢆⠀⢳⠄⣇⠀⠀⢀⡠⠀⠀⠈⠻⢿⣞⣋⢙⣥⣴⣆⣛⣺⣧⣀⣿⣿⣀⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⢠⣇⠀⠀⢾⣦⡀⢡⢧⢶⣶⠃⠀⠀⠀⠀⠀⠀⠙⠻⣿⣾⣿⣿⣿⣿⣿⠿⢿⣿⣿⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠈⣽⣦⡀⠁⠓⢔⡀⢸⡿⠇⠀⠀⣠⡴⠾⠛⢻⠄⠀⠈⠫⠻⡿⣿⠿⡇⢀⣼⡝⠈⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠹⢇⠙⠲⠤⠄⢉⡞⠀⠀⠀⡴⠋⠀⣀⣀⠘⡀⢰⢴⡇⠀⣰⣶⣎⣿⣿⣯⡿⠇⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⣽⣿⢒⣤⣤⡀⢸⠀⠀⠀⠀⢀⣴⣿⣿⣟⠻⣇⡸⠀⢱⣠⣿⣋⢻⢿⡿⣿⢽⡄⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⢵⣿⣿⣿⠶⣶⣾⠀⠀⠀⢠⣾⢿⣿⣷⡲⠀⢧⠃⠀⠀⠻⡿⡟⢸⢿⢿⣽⣷⡿⡂⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⢀⣵⣟⣏⡩⠟⠇⠉⠉⠀⠚⢇⣫⣛⡻⠃⠀⢸⠠⠒⠀⠀⠫⢔⡁⠈⢳⡀⠙⢷⣄⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⢾⣟⣭⠊⠀⠀⢁⠀⠀⠀⠀⠀⠀⠉⠉⠀⠀⠀⠀⠀⠀⠀⠀⣀⣈⣉⣒⠳⡠⠀⢻⠆⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⢰⣯⣮⢇⠖⠠⠄⠸⡀⠀⠀⠀⠀⠀⠀⠀⠤⡀⠀⠀⠀⠀⢠⣮⣥⣴⣶⣾⠇⢸⠳⣚⠇⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⢸⣏⡤⡾⣶⢚⠤⠊⠱⣄⠀⠀⠀⠀⠀⠀⠀⠘⢆⠀⠀⢀⡀⠙⠛⠿⡿⢋⢀⡼⠀⢹⡃⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠉⠁⣿⣹⡏⠀⠀⡠⠁⢗⠤⣀⠀⠀⠀⠀⠀⠈⠳⣤⣀⣈⣀⠤⠴⡥⢤⣼⠶⠝⠛⠁⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠛⠲⠶⠆⠈⠛⢻⡟⣿⣿⠿⣷⣶⣤⣄⣀⠀⠈⠪⣊⢉⡠⢟⣴⠟⠁⠀⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⡰⣶⢖⡇⢙⢿⠁⠠⢙⡻⢿⣿⣟⠷⢶⣤⣤⠲⠙⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⣀⢠⣜⠿⢿⣋⠀⠀⡆⠀⠀⠀⠘⠳⠋⠊⠁⢻⠿⡧⣖⣠⡄⢀⡀⠀⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⢀⣄⢶⠷⠟⠋⠀⠀⠀⠀⢘⡗⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠘⢛⣏⡈⡽⠛⠿⢫⡶⣤⡀⠀⠀⠀⠀
|
||||||
|
⠀⢀⣶⡯⠛⠋⠀⠀⠀⠀⠀⠀⣯⡁⠈⠁⠲⠤⣀⡀⠀⠀⠀⠀⣀⣠⠈⠀⠐⠓⠂⠒⡄⢀⣽⢷⡦⡀⠀⠀
|
||||||
|
⠀⢻⠉⠀⠀⠀⠀⠀⠀⠀⠀⣦⣵⡀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡸⢀⠀⠀⠀⠀⠈⠉⣡⡇⠀⠹⣾⢆⠀
|
||||||
|
⢸⡇⣇⠀⠀⠀⠀⠀⠀⠀⢰⣼⣦⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠩⠋⠀⠀⠀⠀⠀⠀⠁⠺⣵⠀⠙⣿⣆
|
||||||
72
homes/data/ascii-art/fox-11.txt
Normal file
72
homes/data/ascii-art/fox-11.txt
Normal file
|
|
@ -0,0 +1,72 @@
|
||||||
|
⢯⡝⢮⡁⢍⡳⣙⢮⡵⡙⠯⣉⠣⠀⠉⠉⠉⠀⡀⢀⡀⠀⠀⠀⠀⠀⠈⠉⠉⠀⠀⠀⠉⠀⠁⠀⠀⠀⠀⠈⠁⠀⠀⠀⠄⠠⠀⠄⡐⠠⢀⠀⡀⢀⠀⡀⢀⠀⡀⢀⠀⡀⢀⠀⠀⠀⠀⠀⠀⠄⠠⠀⠄⠠⠀⠄⡀⠀⠀⠣⢎⠑⠀⢀⠰⠌⠒⠁⠊⠀⠁⠉⠀⠀⠁⠂⠀⣤⣻⣟⣿⣻⣟⡿⣭⣿⢿⡿⣿⣿⢿⡿⣿⣛⡇⠈⣟⡿⣿⣿
|
||||||
|
⢧⠞⡵⢲⠀⠵⠎⠀⠀⠁⠀⠀⠀⢀⠄⠢⠄⠁⠀⠀⠀⢀⠠⠀⠤⠐⢀⠂⠀⠠⠐⠠⠀⡐⠀⢂⠐⠀⠄⠠⢀⠠⢀⠀⡀⠄⠀⡀⢀⠂⠄⠐⠀⠂⡐⠀⢂⠐⠀⠂⡐⠀⠄⡈⠐⠠⢀⠀⠀⠈⠄⠡⠈⠄⡁⠂⠄⡁⠀⠈⠀⠀⠀⠁⠀⠀⠀⠀⠀⢀⣀⣀⣀⣀⠀⠀⠀⠀⠈⠹⣞⡷⣯⣟⡷⣯⣟⣿⣟⡾⣟⡿⣽⣫⣟⠀⢯⢽⣿⣾
|
||||||
|
⢫⡞⣍⠃⠀⠘⠀⠀⢀⠠⠐⠠⠁⠈⠀⢀⠀⠤⡀⢃⠈⠀⠀⠀⠀⢀⠀⢀⠀⠂⢁⠠⠁⠀⠌⠀⡀⠡⠈⢀⠂⠠⠀⠂⠐⠈⡀⠐⡀⠄⢈⠀⡁⠐⢀⠈⡀⠄⠈⠄⢀⠂⠐⠀⡁⠂⠄⠂⠄⡀⠈⠠⠁⠂⠀⠁⠀⠀⠀⠀⠀⢀⡀⠀⠄⠀⠂⠈⠀⠀⠀⠀⠉⠙⠛⠳⣦⣄⡀⠀⠀⠙⢿⣽⣻⢷⣯⣞⡿⣽⡿⣽⣳⢯⣻⠀⣹⢚⡷⣻
|
||||||
|
⡳⠜⠂⠀⠀⠠⢀⠁⠂⠀⠀⠀⣠⢀⠃⠈⢀⠐⠀⠀⠈⠐⠀⠂⠐⠀⢀⠂⢈⠐⠀⠄⡈⠐⡀⢁⠠⠐⠀⠂⠠⠁⠠⠁⡈⠐⠀⡁⠠⠀⠂⠐⠀⡁⠂⠠⠀⠄⢁⠈⠄⡈⠄⠡⢀⠁⠂⠁⠘⠀⠀⠀⠀⠀⢀⠠⡀⠖⠒⠉⠈⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡀⠀⠙⢢⠀⠀⠈⢹⣯⢿⣶⣻⣟⣷⢿⣻⡽⣷⢿⠀⣎⠝⠈⢹
|
||||||
|
⠀⠀⢀⠢⠘⠀⠀⢀⠀⡐⠂⢡⠀⠤⠀⠀⠀⠀⠀⠀⢀⠀⡀⠄⢀⠂⡀⠂⠄⠂⠈⠄⠐⠠⠀⠂⡀⠂⠁⠌⠐⠈⡀⠂⠐⠈⡀⠐⢀⠂⢁⠈⠄⠐⡀⠡⠐⢈⠠⢈⡐⠠⠈⠀⠀⠀⠀⠀⠀⣀⡠⠤⠒⠈⠁⠀⠀⠀⠀⠀⢀⣀⣠⣤⣴⢦⣶⣞⣶⣣⣤⠐⠀⠄⠀⠀⠀⠀⡐⠀⡀⠀⠀⠀⠈⢿⣮⢷⣻⣾⣻⢷⡿⣝⡿⠀⠉⣰⠀⢸
|
||||||
|
⡀⠆⠈⠀⢀⠠⠐⠈⠠⠀⠁⠀⢀⠀⠂⠀⠀⠠⠀⠄⠂⡐⠀⠄⠂⠠⠐⢀⠂⠌⢀⠂⠌⠀⠄⡁⠠⢀⠡⠐⠈⡀⠐⠈⠄⡁⠐⡈⠠⠐⠀⢂⠈⠄⡐⢀⠂⡤⠊⠁⠀⠀⠀⠀⢀⠠⠔⠂⠉⠀⠀⠀⠀⠀⠀⣀⣠⣴⡶⣿⣯⣟⡿⣳⢟⡻⢳⡛⠾⣍⠳⡈⢆⠈⠀⠀⠀⠀⠀⠐⡀⠄⠀⠀⠀⠈⠻⣟⣯⣷⣟⣯⢿⣽⡛⠀⣼⡗⠀⣜
|
||||||
|
⠀⠀⠠⠉⠀⢃⠀⠀⠁⠀⠀⠂⠀⠄⠀⠠⢀⠁⢠⢈⠤⡄⠃⠂⡈⠄⢁⠀⠂⡐⠀⠄⠂⢁⠠⠐⠀⠄⡀⠂⢁⠠⠈⠄⠂⡀⠁⠄⡐⠀⠡⢀⠐⠠⢐⠠⠁⠀⠀⠀⡀⠤⠐⠊⠁⠀⠀⠀⠀⠀⣀⣤⡶⣞⡿⡟⢯⡳⢏⠷⡬⢧⡝⡶⢭⠞⠣⠛⠹⢈⠑⡰⢈⡜⢠⠀⠀⠀⠀⠀⠠⠐⠈⠀⠀⠀⠀⠉⢿⣯⣿⡽⣯⣜⡿⣯⡟⡇⠀⣞
|
||||||
|
⠀⠂⠀⠁⠀⢀⠠⠀⢀⠀⠄⢡⠂⡀⢄⣂⠦⡙⠆⠋⠀⠀⡐⠠⠀⠌⠀⠄⡁⠠⢈⠠⢈⠀⠄⠂⡁⠄⠐⡈⠀⠄⢂⠠⢁⠠⠈⠄⡀⠌⢀⠂⠌⡐⠁⠀⠀⠀⠄⠂⠐⠀⠀⠀⠀⠀⣀⣤⢶⠻⣝⢣⢟⡱⢎⡵⢣⠝⠎⠋⠉⠁⠈⠀⠀⡀⠠⢀⠐⡀⢣⠐⡡⢜⡡⠂⠄⠀⠀⠀⠀⠈⠐⠀⠄⠀⠀⠀⠈⠳⣯⣟⡾⣽⣹⢧⣿⠁⢰⣹
|
||||||
|
⠀⠀⠀⡀⡖⠀⠀⡀⢂⢌⡐⢦⡙⡜⣌⠆⠓⠁⠀⠀⠄⠡⢀⠁⡐⠈⢀⠂⢀⠁⠄⠂⡀⠌⢀⠂⠄⡈⠐⡀⠡⠈⡀⠄⠂⡀⠡⢀⠐⢀⠂⠜⠀⠀⠀⠀⠀⠂⠀⠀⠀⠀⠀⢠⠰⣚⠱⣊⢦⡙⢦⢋⠎⠑⠁⠈⠀⡀⠀⡄⠂⠄⠃⠌⢂⠡⢄⠢⡐⢌⢢⡙⡔⠣⠜⡁⠂⢁⠀⠀⠀⠀⠁⢂⠈⢀⠀⠀⠀⠀⠈⠙⢿⣻⣽⣯⠟⠀⡾⣽
|
||||||
|
⠀⣀⠆⡑⢠⡐⢦⡑⠣⢎⣜⣢⡵⠋⠀⠀⡠⠀⠀⠌⠠⠁⡀⠐⠀⡁⠂⢈⠀⠈⠄⠁⡀⠂⡀⠂⡐⠀⠁⠀⠀⠁⠄⠂⢁⠀⠂⠄⠈⡔⠈⠀⠀⠀⠠⠈⠀⠀⠀⢀⠠⡐⠬⣡⠓⡬⠑⡌⢂⠉⡀⠤⢈⠆⡘⠄⠃⠌⠡⢀⠉⠤⡉⢆⠡⣊⠔⡡⢉⠆⡒⠰⢈⠁⠒⠀⢁⠠⠀⠀⠀⠀⠀⠄⠈⡀⢈⠀⠀⠀⠣⡀⠀⠙⠷⣯⠃⢼⣹⣿
|
||||||
|
⣼⡻⠞⡠⠓⡜⣤⣜⣳⡞⠋⠁⠀⢠⠔⠃⠀⢀⠠⠈⠄⠡⢀⠁⢂⠐⡀⠂⢈⠐⠈⡐⠀⡐⠠⢁⠐⠀⢠⠆⠀⠀⠂⠌⡀⠈⠠⡘⠔⠀⠀⠀⠀⠈⠀⠀⠀⡀⠌⢄⠃⠌⡑⠠⠊⢄⡁⠆⡡⢊⠰⢁⠊⡐⠐⡈⠡⠌⢂⠅⢊⠔⡰⢈⠒⡀⠎⠐⠁⠂⠀⠁⠀⠀⠈⠀⠀⠀⠀⢀⡀⠀⠀⠠⠁⠀⠄⠂⠄⠀⠀⠙⢆⡀⠀⠐⠸⣯⢿⣽
|
||||||
|
⣟⠡⢊⢴⣹⣼⣳⠾⠁⠀⠀⢀⠖⠁⠀⠀⠄⠂⠄⠡⠈⠀⠀⡀⠀⠀⢀⠁⢂⠠⠁⠄⠂⠠⠐⠀⠀⣠⡏⠀⠀⠠⢁⠂⠀⢄⢣⠅⠀⠀⢀⠂⠀⠀⠀⢀⠂⠐⡈⠤⠈⡔⠠⢃⠅⠢⠐⠌⡐⠄⠂⠌⡐⠠⢁⠐⠡⠈⠄⢈⠠⠀⢀⠀⠀⠀⠀⠀⠀⠀⠀⣀⣀⣠⠤⠴⠒⠒⠉⢀⠐⠠⠀⠁⠠⠁⡀⠂⠄⠂⠀⠀⠀⠳⡄⠀⠀⠘⢯⢿
|
||||||
|
⡉⣦⢿⡶⣏⠓⠁⠀⠀⢀⠔⠀⠀⢀⠐⡈⠄⠡⠈⠀⢀⣴⡾⠍⠀⠀⠠⠈⠄⡐⢀⠂⠌⡀⠁⠀⢠⡷⠁⠀⠠⠁⠀⡠⡔⣊⠆⠀⠀⠀⠠⠀⠀⠀⠀⠂⢀⠀⠰⢈⠡⡀⡑⠂⠌⡐⢉⠐⠠⢈⠐⠠⢀⠡⠀⠌⠀⠁⡀⠂⠀⠀⠀⠀⠀⣀⣠⣤⠶⠋⠛⠉⠁⠀⠠⠀⠂⠐⡈⠀⠐⠠⢀⠈⠄⠐⠀⠌⠀⠀⠀⠀⠀⡀⠙⢦⠀⠀⠀⠹
|
||||||
|
⣟⣯⢏⠳⠈⠀⠀⢀⡔⠋⣠⡾⠉⠄⢂⠀⠂⠀⣠⡾⣟⡾⠁⠀⠀⠌⠠⠁⢂⠐⠠⠀⠀⠀⠀⢀⣿⡝⠀⠀⠀⢀⣾⠓⡜⠀⠀⠀⠀⠀⠐⠀⠀⠀⠀⠐⠀⠠⠐⢂⠡⡐⢄⡉⠐⡀⠂⠌⠐⡀⠌⠀⠂⠀⠐⠀⠈⠀⠀⠀⣀⡤⠴⠖⠛⠉⠁⢀⠀⡐⠠⠀⠌⢀⠡⠀⢁⠂⠀⠁⠈⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠐⠠⠐⠀⠈⠓⡀⠀⠀
|
||||||
|
⡟⠴⠉⢀⠀⢀⡴⠃⣠⣾⠟⠀⠐⠈⠀⢀⡰⣾⣽⣻⡝⠀⠀⠀⠌⠠⠁⠌⠠⠈⠀⠀⠀⠀⠀⣼⣯⠇⠀⠀⣴⡿⠂⡝⠂⠀⠀⠀⠀⠀⠈⡀⠂⠀⠀⠀⢈⠀⠄⠀⠒⡀⠂⠄⢁⠠⠁⠈⢀⠀⠀⠀⠀⠀⠀⣀⡤⠔⠢⠉⠁⠀⠄⠠⠀⠂⢈⠀⡐⢀⠀⠡⠀⠂⠀⠈⠀⠀⠀⣀⣀⣤⣴⣲⣶⣲⢍⡚⡴⣀⣀⠀⠀⠀⠁⠀⠐⠀⠀⠀
|
||||||
|
⠊⠀⡐⠁⣠⠏⢀⣼⣟⠃⠀⠀⠀⣀⠶⢡⣟⡷⣯⠓⠀⠀⠠⠁⠌⠀⠁⢀⡀⠀⠀⠈⠄⠀⢰⣿⡽⠀⠀⣾⣯⠇⡱⠎⠀⠀⠀⠀⠀⠀⠀⠀⡐⢀⠀⠀⠀⠠⠀⠈⠄⢀⠈⠀⠂⠀⠀⠁⠀⠀⢀⡀⠐⠊⠉⢀⠀⡀⠄⠐⠈⠠⠈⠀⠄⠁⠂⠀⠀⠀⠈⠀⠀⢀⣀⣤⡴⣶⣻⡾⣟⣾⡽⣷⣻⣽⣯⣗⠣⣝⢦⢏⡴⣀⠀⠀⠀⠀⠀⠀
|
||||||
|
⢠⠊⢀⡞⠁⣠⣿⡻⠌⠠⢁⣲⡞⠋⣴⣻⢯⣿⠁⠀⠀⠠⠁⠌⠀⠀⣴⣯⠁⠀⠀⠰⠀⠀⣾⢯⡃⢀⣼⣿⡞⠠⠑⠀⠀⠀⠀⠐⠀⠂⠀⠀⢀⠀⠀⠀⠀⠀⠀⠁⡀⢀⠐⠈⠀⠀⠀⠀⠀⠀⠄⠀⡐⠀⠡⠀⠐⢀⠠⠈⢀⠁⠄⠁⠈⠀⠀⢀⣀⢤⡴⣲⢯⡿⣽⣾⣻⡷⣟⣿⡽⣾⣻⡟⣷⣫⣷⣯⣳⢌⡚⡼⣱⢋⡯⣓⢦⡤⣄⡀
|
||||||
|
⠁⢠⠏⠀⣼⣟⣷⠃⢌⡱⣾⠣⠉⣰⡿⣯⡿⡏⠀⠀⠌⠠⠁⠀⣀⣾⢯⠁⠀⠀⣰⢏⠀⢨⣟⣿⣀⡾⣟⣾⠅⠘⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠂⠈⡀⢀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⠐⠈⠀⠌⠀⡀⠐⠠⠁⠂⠠⠐⠀⠀⠀⠀⠀⣠⠤⣞⣳⡾⣯⢿⣟⡿⠽⣳⠿⣽⠻⠟⠚⠛⠁⠁⠀⠀⠉⢲⣯⣷⢿⡼⣑⢎⢧⠳⣍⠶⡳⢬⡹
|
||||||
|
⣴⠋⠀⣾⣟⡞⠧⣈⣶⡟⠃⠀⣰⡿⣽⢳⡟⡇⠀⠀⠂⠀⡀⢶⣻⡽⠃⠀⠀⣸⣯⡆⠀⣼⣻⢮⣽⠃⣽⢿⡀⠂⠀⠀⠀⠀⢀⠠⠐⠀⠁⠀⠀⠀⢁⠀⠈⢦⣀⠀⠀⠀⠀⢀⠐⠈⠀⢀⠂⢁⠀⠂⠄⠁⠀⠀⠁⠀⠀⣀⠄⠀⠀⣼⢲⡿⣽⢿⡽⠿⠕⠊⠀⠐⠒⠉⠀⠀⠀⠀⠀⣀⡠⢤⡀⠀⢻⡷⣿⣯⢷⣏⢎⣎⠳⣌⡳⣍⠧⣝
|
||||||
|
⠇⠀⣼⣻⢾⡙⣤⢿⡓⢨⠁⢠⣿⣟⡾⣿⡹⠀⠀⠀⣀⡖⠁⣼⢯⠇⠀⠀⢠⣿⣳⠁⠀⣿⡽⣟⡾⠐⣯⣿⠀⠀⠀⠀⡀⢂⠀⠐⠀⠡⠈⡀⠀⠀⠀⠈⠄⠀⠈⠉⠁⠀⠡⠀⢀⠐⠈⠀⠄⠂⠈⠀⠀⠀⠀⠀⢠⢒⡱⠌⠀⠀⣸⡼⣯⣟⣯⡟⠉⠀⠀⠀⠀⠀⠀⣀⣠⣤⣶⠾⣹⢧⣛⣧⣇⠀⠈⢻⣽⣾⣟⡾⣭⢎⡳⢥⣛⢬⡛⡼
|
||||||
|
⠀⣼⠿⣝⡞⣴⠿⢃⡐⠃⢰⣿⣻⣼⠋⠁⠁⠀⢀⡼⡏⠀⢰⣿⡻⠀⢠⢠⣿⡽⠇⠀⢀⣿⣟⡯⠁⠐⣿⣎⠀⠀⠀⠁⡀⠠⢀⠁⠂⡀⢡⣠⣤⠄⠀⠀⠈⡐⠠⠀⠌⠐⠀⡁⢀⠂⠀⠁⠀⠀⠀⠀⠀⠀⠀⢀⢮⣱⠃⠀⠀⣰⢷⣻⢷⡫⠞⠀⠀⠀⠀⠀⠀⢼⡿⣽⠯⣟⢾⣻⡷⣟⣯⢿⣽⠂⠀⠈⢿⣾⣏⡿⣽⣻⡔⢣⢎⡧⢽⡱
|
||||||
|
⣼⣯⣟⡾⣽⢏⠃⡜⠬⢡⣿⣾⣳⡟⠀⠀⠀⢀⡾⠋⠀⢀⣿⣳⠇⠀⣼⢯⣷⢻⠁⠀⢰⣟⣾⠃⢠⠘⣿⠆⠀⠀⢀⠁⠠⠐⠀⣠⢶⠽⠋⠁⠀⠀⠀⠀⠀⠀⠄⠡⠀⠌⠐⠀⠀⠀⢀⠤⠄⠀⠀⠀⠀⠀⢠⣏⠖⡇⠀⠀⣐⣯⢿⡯⠟⠀⠀⠀⠀⢀⠆⡂⠀⢘⣿⣝⡷⣫⣿⡝⣻⣽⢯⣿⣞⣟⢦⠀⠘⣯⣿⣽⣳⣻⣞⡱⢎⣝⡲⣝
|
||||||
|
⣿⣾⣳⣟⠿⡀⡝⢬⠡⣿⣳⢯⡷⠁⣰⡇⢠⠟⠀⠀⠀⣼⡿⡝⠀⢠⣿⣻⡽⠊⠀⠀⢸⣟⡾⠁⡰⠀⡿⠀⠀⠀⠀⠂⢄⠢⠝⠃⠀⠀⠀⠀⠀⠯⡔⢣⠀⠀⠀⠂⠐⠀⠀⢀⢤⠰⣩⠞⠀⠀⠀⠀⠀⡰⣏⡜⡏⠀⠀⢠⣟⣾⣛⠎⠀⠀⠀⠀⡄⢣⠘⡄⠀⠈⢿⣾⣟⣿⢷⠂⠀⠻⣟⣾⣽⣻⢯⠀⠀⢻⣷⣯⣷⢻⡾⣽⣎⠮⡵⢎
|
||||||
|
⣿⣞⣷⠯⡱⡘⡜⢢⡹⡷⣯⢿⡅⣹⢿⣽⠘⠀⠀⠀⣸⢯⣟⡇⠀⢸⡧⣟⡇⠀⡅⠀⢘⡿⡇⠀⢧⠀⠇⠀⠀⠠⠁⠜⠊⠁⠀⠀⠀⠀⠀⠀⠈⣳⢚⡥⢚⠤⣀⣀⠠⡰⡸⣌⢎⣗⢣⠏⠀⠀⠀⠀⢰⡝⣲⠍⠀⠀⠀⣾⢯⡷⠁⠀⠀⠀⠀⠀⠘⡄⢣⠜⣡⠀⠈⢿⡾⠏⠃⠀⡀⠀⢻⣽⣾⡽⣶⣒⠀⠈⢿⣾⣏⡿⣽⣷⣻⡼⣱⢫
|
||||||
|
⣿⡾⣝⢣⠱⡑⣎⢡⠿⣽⢯⡟⣀⣿⣯⠃⠀⢀⠂⢀⣿⣟⡏⠀⠀⣻⡇⣿⡇⠀⠆⠀⠈⣿⡇⢀⢳⡀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠄⠀⠀⠘⡧⣞⡥⣚⢴⢪⡕⣣⠷⡜⠮⣜⡫⠄⠀⠀⠀⢠⢇⡻⡜⠀⠀⠀⣸⣿⡻⠀⠀⠀⠀⣠⠀⠀⠀⠈⣇⠚⣥⢒⡀⠀⠀⠀⢀⠖⡱⠀⠀⢿⡷⣿⣻⣧⠀⠀⣻⡷⣯⣻⢷⣯⢷⣷⢣⢏
|
||||||
|
⣿⡽⢃⠦⣙⠲⠌⣞⡿⣏⣿⠰⣼⣻⠌⠀⢠⠋⠀⢸⣟⣾⠁⠀⠀⣿⠆⣿⡃⠀⡅⠀⠀⣚⢧⠠⢇⡄⠀⠀⠀⢀⠴⣉⠞⡀⠀⠀⠀⠂⠀⠀⠀⠈⢵⠺⣔⡱⢎⡳⣜⡡⢎⡭⢳⡍⡗⠀⠀⠀⢀⡞⣼⢱⠃⠀⠀⢰⡿⣞⠁⠀⠀⠀⠰⣀⠒⠀⠀⠀⠈⠳⢤⢣⡙⣜⢲⣼⣛⠮⡱⡁⠀⠀⢻⣿⢷⣏⠇⠀⢽⣻⣷⣻⣟⣾⣻⣯⡟⡼
|
||||||
|
⣿⡝⢢⠱⣊⠵⣉⡾⣽⢧⡟⣰⣯⡛⠀⠀⡎⡅⠀⣾⣽⡞⠀⠀⠠⣿⠃⢸⡗⡠⠄⠀⠀⢐⢣⡙⠦⡀⠀⠀⠠⠜⣆⢧⣋⢷⣀⠀⠀⠀⠄⠁⠀⠀⢸⣋⠶⣩⢎⡵⣌⠳⣎⡜⢧⡝⠆⠀⠀⢀⣎⠾⣄⠏⠀⠀⢠⣟⡿⠀⠀⠀⠀⠀⡱⢈⠜⣀⠀⠀⠀⠀⠃⢧⡘⢬⠟⠎⣑⢊⠱⡱⠀⠀⠘⣯⣿⡃⠀⠀⣾⣽⣷⣻⣞⣷⣻⣷⣻⣘
|
||||||
|
⣿⠘⣌⠣⡕⢪⢴⣻⣝⣻⠌⣷⢯⠃⠀⢢⠵⠀⠀⣿⡾⡅⠀⠀⠀⣿⡁⢢⠝⡴⠀⠀⠀⠀⢧⢚⡱⠀⠀⠀⠀⢩⠜⣶⢩⢞⡱⣆⠀⠀⠀⢀⠀⠀⠀⢭⣳⠱⣎⢲⣩⠳⣤⢋⠶⣙⠂⠀⠀⡸⣬⢓⠎⠀⠀⠀⣼⢯⠃⠀⢸⠀⠀⠀⡱⢈⡒⢌⡆⠀⠀⠀⠀⠐⠹⡌⢎⣷⠻⠞⣳⠱⡀⠀⠀⢻⡖⠁⢀⣶⣟⣾⢳⣽⢾⣳⣿⣳⣧⣳
|
||||||
|
⣏⠞⣨⠓⣌⠳⣞⣳⡞⡷⢸⣽⡧⠀⡸⢡⠞⠀⢸⡿⣽⠂⠀⡁⠀⣿⠄⣘⢎⡱⠀⠀⠀⠀⢘⢦⡑⠀⠀⠀⠀⠰⢫⣜⢣⢎⠷⡜⢦⡀⠀⠀⠀⠀⠀⢸⠲⡭⣜⢣⡜⡳⢬⡙⡞⣭⠀⠀⢠⣓⠧⠉⠀⠀⠀⢰⣯⡏⠀⠀⣯⠀⠀⠀⢑⢢⠘⡆⠞⡤⠀⠀⠀⠀⠀⢙⠎⡥⢃⠶⣈⠧⡁⠀⠀⠀⠀⢠⣾⡷⣟⣯⣟⡾⣯⣓⣯⡷⡏⠃
|
||||||
|
⣏⠞⡴⣋⠴⡩⣟⣵⡻⣅⢻⣾⠁⢰⡑⡫⢜⠀⢸⣟⣿⠀⠀⡀⠀⢿⣃⢈⠦⡁⠀⠀⠀⠀⠈⢦⡑⠀⠀⠀⢀⡭⢳⣌⢳⠪⣝⡹⢎⡵⡄⠀⠀⠀⠀⠀⢏⠷⣘⢦⡹⣱⠣⡝⣼⣡⠀⠀⡴⢋⠎⠀⠀⠀⢀⣾⣿⠀⠀⢣⣿⠀⠀⠀⠈⢢⠱⣌⠫⣔⢣⠄⠀⠀⠀⠀⢋⠖⣩⢒⡍⡲⡁⠀⠀⠀⣰⣿⣻⣽⡻⡾⣝⣻⢵⡯⣟⠃⠀⠀
|
||||||
|
⣎⠳⡜⣆⠣⠵⣿⣼⡳⠎⣼⣻⠀⡱⢬⠱⢎⠄⢸⡿⣞⠀⠀⡀⠀⣏⠳⣌⠳⠀⠀⠀⠄⠀⠀⠣⠄⠀⠠⣜⠳⣜⢣⡜⢣⡛⣬⠓⣏⢶⣙⣆⠀⠀⠀⠀⠸⣩⢓⠮⣱⢣⢛⡜⢦⠇⠀⠀⠖⠀⠀⠀⠀⠀⣸⣿⢾⣀⣼⣷⣻⠀⠀⠀⠀⠀⠳⢌⠳⣈⠆⣏⠦⠀⠀⠀⠀⠘⡥⢊⡴⢡⠃⠀⠀⢰⣿⣞⣷⣟⣾⣟⡿⣽⣶⠛⠀⠀⠀⡀
|
||||||
|
⣎⠷⣙⡬⢣⡹⣷⢾⡝⠲⣜⡯⠀⡱⢊⡵⢊⠆⠘⣿⣭⠀⠀⠀⠸⣜⡝⢦⡙⠀⠀⠀⠀⠀⠀⠘⡀⠀⠰⣍⠻⣜⢆⡺⢥⡛⡴⢫⡜⣞⢲⡬⢳⡄⠀⠀⠀⢡⡏⢧⢳⡩⢞⡸⢭⠞⠀⣠⢄⠀⠀⠀⣠⡴⡟⣾⢿⡿⢯⣷⡿⡄⠀⠀⠀⠀⠘⢌⡳⢄⢫⡔⣩⢓⠦⣀⠀⠀⠘⣱⠸⣡⠂⠀⣰⣿⣟⡾⣽⠞⠃⠉⣠⡿⠊⠀⣀⣴⣳⣿
|
||||||
|
⣎⠷⣌⠳⣅⠺⣽⢯⣏⠱⣎⡕⠀⡵⣉⠖⣩⠚⡄⢻⡷⣀⠀⠀⢹⢆⡛⢦⡑⠀⠀⠀⠀⠀⠀⠀⢀⠀⠐⠸⢫⡜⢧⡹⣆⢳⡜⣣⠜⣆⠧⣝⡣⢞⣤⠀⠀⠀⢹⣎⠳⡜⣬⢓⡭⢞⡡⢎⡯⣞⡿⣟⣷⣻⣽⢯⣿⣽⣻⣯⢿⡅⠀⠘⡄⠀⠀⠀⠱⡊⠵⡘⠤⢋⠲⣅⢚⠤⣀⢌⠇⡐⠀⢰⣟⣷⣻⠝⠁⠀⠀⣾⣽⠃⢠⡾⣽⣳⡿⣽
|
||||||
|
⣎⢗⣎⠻⣌⠓⣯⣟⡮⢱⣚⡤⠀⢖⡡⢎⡅⢫⡜⣡⢏⡖⠀⠀⢘⣎⢳⣃⠆⠀⠀⠀⠀⡀⠀⠀⠀⠀⠀⠀⠀⠈⠓⠳⢍⡳⢮⡱⢫⡜⢮⡱⣙⡎⢾⡱⣄⠀⠐⢎⡳⣝⢢⡍⢶⡩⡝⢮⣑⣻⣽⢿⣽⣳⣯⢿⡾⣽⣳⢿⣯⣷⠀⠀⢻⣤⠀⠀⠀⠘⠡⡙⠜⣣⠓⡌⢎⡚⠤⠋⠂⠀⢠⡿⣽⠞⠁⠀⠀⠀⣼⣳⢿⣚⣯⢟⣧⢿⣽⣳
|
||||||
|
⡘⢮⡜⡳⣌⠳⡸⣿⡜⡡⢞⡄⠀⢣⠞⣰⢊⡥⣚⠤⣫⢜⡁⠀⢸⡜⣣⠞⡄⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠙⠲⣙⢧⣚⠵⣊⡕⢺⢥⠳⣍⢶⡀⠈⡼⣘⢧⡚⣥⢚⡝⢦⠳⣼⢯⡿⣞⡷⣯⡿⣽⣳⣯⢿⣹⣿⡀⠀⠐⣯⢷⣄⠀⠀⠀⠈⠘⠤⠛⠌⠃⠉⠀⣀⠄⢀⣿⢿⠁⠀⠀⠀⠀⢠⣿⡽⣷⣻⢞⣻⡼⠏⠃⠁
|
||||||
|
⢈⢳⣜⣱⣍⢣⣇⢹⣧⢱⣋⡖⠀⢣⢚⣤⣃⡖⣭⢲⢱⣎⡆⠀⢈⡞⣥⢛⠀⠀⠘⣭⢋⣷⣓⡞⣤⠀⢠⣄⣀⡀⠀⠀⠀⠀⠀⠈⠑⣎⣯⢳⣼⣙⣮⣱⣭⣖⣳⣤⢓⣭⣶⡙⣴⢋⣼⣃⡟⣼⣯⣿⣽⣛⣷⣻⣷⣻⣞⣿⣻⣾⣵⡂⠀⢹⡟⣯⣷⣤⡀⠀⠀⠀⠀⢀⣠⣴⣾⡏⢀⣼⣯⠁⠀⣼⡀⠀⠀⣼⣷⣿⣳⣯⣟⣯⣷⣴⣤⣆
|
||||||
|
⠈⢿⡩⢧⡙⢧⡘⢧⠙⣏⡹⢇⠀⠸⡘⢧⡙⢼⣙⢏⠿⣙⢇⠀⠈⠁⠉⠈⠀⠀⠀⠉⠘⠁⠋⢻⣍⢃⣈⠽⣍⠻⢟⣣⠤⣀⠀⠀⠀⠈⠈⠀⢹⡻⢼⣣⠻⣜⣣⡝⢯⡝⣏⠻⣥⠻⣥⢛⡼⢯⣟⡿⣽⣻⣟⡿⣟⣯⢿⣽⣻⢿⣯⡇⠀⠈⠛⠋⠉⠉⠁⠀⢀⣠⣼⡿⣿⢯⣟⡇⣼⣻⠁⠀⣼⠁⠃⠀⠀⣿⣽⡿⣟⡿⣽⣟⡿⣿⣻⣽
|
||||||
|
⡂⢸⡱⢎⡵⢣⠞⣂⠧⠰⣭⢳⠀⠐⡍⢖⡩⢖⡭⢎⡝⣎⢞⡀⠀⢰⢆⠦⠀⢠⣤⣀⣀⡀⠀⠀⠀⠀⠀⠉⠈⠉⠈⠈⠑⠁⠉⠁⠀⠀⠀⠀⠉⢳⣣⠮⡕⢦⠳⣜⢣⠞⣬⠳⣌⠳⣎⠳⣜⡿⣾⡽⣷⣻⢾⣽⣻⢾⣟⣾⡽⣯⣷⣧⠀⠀⠀⠀⠀⣠⣴⡿⣟⣯⠿⡽⣏⣽⢾⡽⣳⣿⣧⡿⣅⠂⠀⠀⢰⣟⣯⣟⣾⣻⢷⣯⣟⣿⣽⣻
|
||||||
|
⣥⠀⢧⣋⠶⣙⠞⢤⢃⠣⢎⣳⠀⠀⠸⣘⢆⡏⢾⡱⠜⡬⢮⡅⠀⢈⡞⡣⠀⢸⢶⡽⣯⢟⡿⣷⣦⣤⣀⡀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⣀⢾⡱⢦⡡⢟⡸⢣⡛⣬⢣⡛⡴⢫⠜⡳⣌⠳⣭⡿⣼⣻⢷⣯⢿⡾⣽⣻⣞⣷⡽⣷⣻⣖⠀⠀⠀⣀⣞⡽⣿⡽⣽⣞⣿⣳⣟⣮⣟⡿⣽⣳⣟⣿⢠⠁⠀⠀⢸⣿⣟⣾⣳⣟⡿⣾⡽⣿⣾⢿
|
||||||
|
⣎⡄⠘⣬⢚⡥⣛⡔⢪⠱⣍⢖⡣⠀⠀⢣⠎⣼⢣⡝⣸⢡⡳⠆⠀⠀⡽⡁⠀⢸⣟⡿⣼⡹⢾⣝⣳⢯⣿⣻⢷⣶⣤⢄⣠⣀⣠⣤⣤⢶⣯⢶⣭⢣⡝⢪⢕⡣⡝⢦⣣⠝⡼⣡⢏⡵⣊⠷⣱⣻⢷⣫⣿⡽⣯⣟⣷⣯⣟⣾⣽⣻⣽⣻⣦⣤⣐⡿⣞⣿⣳⣟⣧⣿⣞⣷⣟⣾⣽⣻⢷⣯⢿⡍⡄⠀⠀⠀⣾⣟⣿⣞⣯⡿⣽⣳⢿⣿⣽⣿
|
||||||
|
⡜⣲⠀⢣⡝⢲⡱⣌⢣⢣⡜⣪⠕⠀⠀⠈⡜⢦⣣⠝⣦⠓⣭⢳⠀⠀⠸⡅⠀⣞⣿⣽⣳⣟⡿⣾⣽⣻⢾⣽⣻⣞⡿⣟⣿⣻⣽⣳⢿⣟⢾⣟⣾⣿⣻⢷⣎⣶⡙⡎⡖⢫⠵⣡⢞⣲⡙⣎⢷⣯⣟⣳⡽⣯⣟⣾⡽⣾⣽⣞⣾⣳⢿⣷⡿⣾⣟⣿⢯⣷⢯⣟⣧⣿⣹⢾⡽⣽⢾⣭⣟⡿⣯⢓⠁⠀⠀⠀⣿⣿⣳⢯⡿⣽⢯⣟⣿⣽⣾⢿
|
||||||
|
⠈⡵⢣⠀⠞⣥⢛⡴⣃⢇⡚⣥⡛⠆⠀⠀⢩⠲⣡⢛⡴⢋⡼⣣⠀⠀⠐⡁⠀⣾⣯⣷⢻⢾⡽⣷⣯⣟⡿⣞⣷⢯⡿⣽⣳⣟⣷⣻⣟⣾⣻⣞⡷⣯⣟⣯⡿⣞⣿⣳⣭⣣⢏⠥⢋⠶⣹⡘⢾⣳⠿⣽⣻⡽⣞⣷⣻⢷⣻⢾⣯⢿⡻⣞⡿⣽⣟⣯⣿⢿⣻⣿⢾⣳⣯⢿⡽⢯⣟⡾⣽⢿⡳⠚⠀⠀⠀⢀⣿⡿⡽⣯⣟⣿⣻⢾⣽⣾⢿⣻
|
||||||
|
⠀⠘⡝⣆⠘⢬⡳⢼⠁⠀⠀⠀⠉⠃⠀⠄⠀⢳⠢⡝⣬⢃⠷⣙⠆⠀⠀⠀⠀⣿⣳⣯⢿⢯⡿⣷⢯⡿⣽⣻⢾⣻⣟⣯⣿⢾⣻⢷⣯⣟⡷⣿⡽⣿⢾⣳⣟⡿⣞⡷⣯⢿⣾⣛⣮⡞⡥⣚⡽⢯⣟⢯⣟⣽⣻⣽⣻⢿⣻⢿⣛⠟⣿⣻⡟⣽⡿⣯⣿⠏⠉⠙⢿⢻⣽⣻⢯⣟⣯⣟⣯⣿⠃⠆⠀⠀⠀⢠⣿⣿⣛⡷⣯⢷⣯⣟⣾⣟⣿⣿
|
||||||
|
⡄⠀⠹⡜⣄⠸⣱⠃⠀⠀⢀⣴⣤⡄⠀⠀⠀⠈⢧⡙⣆⠫⣞⠭⡆⠀⠀⠀⢰⣻⣟⣞⣻⣞⡿⣽⣟⣿⣳⢿⣯⢷⣯⣷⣯⣿⣽⣾⣳⢯⣟⣷⣻⡽⣯⢷⡿⣽⢿⡽⣟⡿⣾⣟⢷⣻⡷⣟⡾⣟⣞⡿⣾⣞⣷⢯⡟⠻⠉⠀⠈⠘⡻⢷⣿⣟⣿⢿⣝⡢⠀⠀⠀⢿⣻⣽⣷⢻⣾⢾⣽⣾⡃⠀⢀⠀⠀⢰⣿⣯⢷⣻⣟⡿⣾⡽⣾⣟⣾⣿
|
||||||
|
⣳⡀⠀⠹⡜⡤⠁⠀⠀⢠⢻⣼⣳⣿⣳⣄⡀⠀⠈⠝⣦⢛⡬⢳⢥⠀⠀⠀⠐⣿⡽⣯⢷⣾⣽⡷⣿⢾⣯⣿⡾⢿⠯⠷⠿⠻⠾⠿⠽⢿⣻⢾⡷⣿⢽⣯⢷⣯⣿⣻⣽⣟⡷⣿⢾⣷⣻⣽⣻⣽⣮⢷⣿⡞⠋⠁⠀⠀⡀⠄⠀⠀⠰⣯⣟⣾⣿⣻⣯⢇⣂⣀⠀⠐⣿⣿⣞⢻⣮⣟⡷⣯⠀⠠⢞⡅⠀⢸⣷⡿⣯⡷⣟⣿⣳⣟⣷⣻⣿⢾
|
||||||
|
⢧⡻⡄⠀⠘⡵⠀⠀⠀⡹⢎⣷⢫⣾⢯⣿⡽⣄⠀⠀⠃⢯⠴⡩⢞⡄⠀⠀⣠⢿⣻⡵⣿⡽⠞⠟⠙⠋⠀⠁⠁⠀⠀⠀⢀⠀⠀⠀⠀⠀⠀⠩⣽⡷⣿⢾⡽⣞⡷⣽⣾⣭⣿⡽⣞⣷⢧⡿⣵⡾⣽⡟⠊⠀⠀⡐⢀⠆⡐⠀⠀⠀⠀⡿⣭⣗⠛⠁⠈⠏⠒⡈⠁⠈⣿⣷⣛⣮⣷⢿⣝⠃⠀⠀⠈⠅⠀⢸⣿⣽⣷⣻⣟⣾⣳⣟⡾⣽⣾⣿
|
||||||
|
⣏⡳⣝⣆⠀⠈⠀⠀⠀⢹⡹⣞⢧⣯⣛⢾⣳⣏⣦⠀⠀⠈⢖⣣⢋⡖⡀⠀⢹⡿⠝⠋⠁⢀⣀⢤⢀⡰⠂⠈⠁⠀⠀⠀⠀⠑⠈⠛⠖⡶⢆⣄⠀⠙⢹⣯⣗⣯⣿⡿⣽⣟⣾⡽⣯⢯⣏⡿⣯⠟⠃⠀⠀⠀⠀⡐⡈⠔⡁⠀⠀⠀⠀⣿⢿⡽⣆⠀⠀⠀⠀⠁⠀⠀⠈⣟⡿⣽⠾⣏⠎⠀⣰⣷⡀⠀⠀⢈⣿⣾⣗⡿⣾⣽⣳⣯⢿⣽⣳⣿
|
||||||
|
⠊⢽⡺⣜⢧⡀⠀⠀⠀⢸⢇⡯⢯⣏⣟⡾⣷⣻⣗⢯⡀⠀⠀⠙⢮⡱⢆⠀⠈⡔⡦⠜⠃⠋⠈⠈⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠈⠘⠁⠲⠽⣞⡿⠓⠉⢀⣼⣏⣷⣫⢿⣯⠿⠉⠀⠀⠀⠀⣀⠒⢠⠘⠠⠀⠀⢀⣰⡾⣿⢯⣿⣟⣦⣀⣀⣧⢾⠀⠀⣀⡩⢟⣿⡛⠀⠀⣰⣟⣾⢧⠀⠀⠀⣿⣷⣯⣟⡷⣯⢷⣯⢿⣞⣿⣽
|
||||||
|
⢀⠀⠱⢫⠶⣝⡂⠀⠀⠸⣎⢽⣫⣟⡾⣽⣳⡟⣯⢗⡛⡄⠀⠀⠱⣙⢦⠄⠀⠐⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⣀⣀⣠⠤⠤⠤⠤⠤⠀⠀⠀⠀⠀⢤⡀⠈⠁⢀⣾⣻⣾⡽⣾⡽⡟⠎⠁⢀⡐⠀⡀⢆⡐⠌⣀⠃⡅⠀⢀⣯⣷⢿⡟⣻⢞⣽⢯⢿⡿⣽⢿⣶⢿⣻⣷⠾⠑⠀⠀⣸⢿⣽⣞⣿⡆⠀⠀⣿⣿⡾⣽⣻⢽⣟⣾⣿⣻⢾⡽
|
||||||
|
⢎⠲⣀⡀⠈⠉⠃⠀⠀⢸⡜⡲⣽⢾⡽⣯⢷⡻⣟⢯⡷⣤⠀⠀⠀⠘⠈⠀⠀⠀⠀⠀⠀⠀⠀⣀⣠⣤⣶⣾⢛⣉⣀⣀⣠⣤⣤⣤⣤⣤⣤⣤⣄⣰⣯⠏⠀⢠⣾⢷⢯⠗⠛⠉⠀⢀⡠⠔⡂⢄⠢⢁⠢⡐⢌⠠⠒⠀⠀⢸⣾⢯⣯⣟⡷⣯⣟⣯⣻⡽⢯⣟⣾⣟⠷⠉⠀⢀⡀⠀⠀⠉⠺⡽⣞⢷⡀⠀⢻⣷⡿⣯⣟⡿⣾⣻⣾⡽⣓⠾
|
||||||
|
⠌⢳⢡⡜⡱⢒⡄⠀⠀⢰⡹⡕⢮⡿⣾⡽⣷⣻⡽⣾⣟⡿⣆⠀⠀⠀⠀⠀⠀⠀⠀⢀⣠⣶⢿⣻⠿⣽⣻⢾⣿⣻⢿⡿⣟⣯⢿⣽⣻⣟⢿⣽⣻⡷⠍⠀⢰⣯⢾⠉⠀⡀⠄⠒⡈⠤⣀⠣⠌⡐⠄⢃⠐⠁⠢⠌⡑⠀⠀⣾⣿⣻⣗⣯⢿⣳⣾⣳⣷⢿⣻⠻⠘⠁⠀⢠⣾⣭⣷⣆⠀⠀⡄⠀⠙⢿⠄⠀⢸⣿⣟⡷⣽⣾⣟⡷⣯⠗⡎⠀
|
||||||
|
⣤⡀⠈⠐⠙⠦⠄⠀⠀⢰⣹⡙⢎⣿⢷⣻⢷⣯⢷⣛⣾⡝⡧⠀⠀⠀⠀⠀⠀⠀⠀⠹⡞⣽⣯⢏⡿⣧⢯⣿⣼⡽⣯⢿⡽⣯⣟⣾⣳⣯⢾⣧⣛⠶⠀⢀⣿⣯⣯⠀⠀⠁⠠⢡⠘⠤⢀⠒⠤⢁⠊⠤⡀⠀⠀⣁⠂⠀⢠⣿⡷⢿⡾⣽⣯⢷⣾⢿⡽⠋⠁⢀⣠⣴⣿⣳⢿⣳⣟⣮⡄⠀⠘⢤⡀⠀⠀⠀⣼⣿⢯⡿⣵⣟⣾⣽⣳⠛⠀⠀
|
||||||
|
⠀⠉⠓⠶⠤⡀⠀⠀⠀⣰⢣⡝⣊⣿⢯⣟⣯⣞⣯⢷⣯⢽⡁⠀⠀⠀⠀⢠⢞⣣⠀⠀⠿⣼⣞⡯⣿⣽⣻⢾⣳⡿⣽⢯⣟⣷⣻⣞⡷⣯⣟⡾⣧⠈⠀⢸⣿⢾⣽⣂⠀⠀⠀⠃⠘⠀⠁⠊⠀⠡⠊⡐⠤⢁⠀⠀⠀⢀⣾⣻⣽⢯⡷⣏⣾⢯⡛⠊⠀⣀⣴⢫⣾⣱⢯⣿⣻⠉⠋⠛⠁⠀⠀⣾⣝⡆⠀⠀⣿⣯⣿⣽⣳⢯⣟⢾⣸⠁⠀⣸
|
||||||
|
⢦⣤⣀⣀⠀⠀⠀⠀⠀⣧⠳⣜⢡⣿⣻⢮⣗⡿⣞⣯⣾⢳⠀⠀⠀⡀⠀⣎⠳⣜⣃⠀⠘⡱⢯⣷⣳⣏⡿⣯⢿⣽⢯⣟⡿⣾⡽⣯⣟⣳⣯⢿⣻⠀⠀⢾⣽⣻⡽⣷⣦⡀⠀⠀⠀⠀⠒⠦⣤⢀⡀⠀⠀⠀⠀⠀⣀⠀⠈⢷⣟⣿⣞⣿⠭⠃⠀⣠⣞⣷⣻⣛⣧⢿⣟⣾⢷⡄⠀⠀⠀⣤⣞⡿⣏⠇⠀⠀⣿⣟⣾⣳⣟⣻⡞⢧⠃⠀⢠⢻
|
||||||
|
⡷⣞⡽⢮⠃⠀⠀⠀⢰⢣⡛⡜⡆⣿⣽⣛⡾⣽⣻⣭⡟⡆⠀⠀⠀⠀⠘⣬⢛⢦⡝⣂⠀⠈⢯⣻⢗⣯⢿⣽⢯⣟⡿⣞⣿⣳⣟⣯⢿⡝⣯⣿⠧⠀⠀⣹⣾⣳⡿⣟⣾⣟⣧⣤⣀⢀⣠⡶⣯⡷⣽⣳⣶⣶⣶⣻⣽⣢⠄⠀⠙⠾⡳⠃⠀⣠⢾⡿⣽⣞⣷⣻⣾⣟⠛⠚⠋⠀⠀⢰⣾⡿⣽⣟⠾⠁⠀⢀⣿⣿⣳⡟⣾⢽⣭⠓⠀⢠⣿⣻
|
||||||
|
⣟⡾⣽⠋⠀⠀⠀⠀⣏⠖⡹⡜⣥⢻⡾⣭⢿⣽⣳⢯⡷⠂⠀⠀⣸⠀⠀⠸⣭⠲⣭⢓⡆⠀⠈⢷⣻⢮⡿⣽⣻⢾⣽⡻⣷⣏⣿⣞⢿⣻⠿⣽⣟⡀⠀⢿⣻⣽⡿⣟⣿⣞⣯⠷⠞⠿⣽⡿⣽⣛⡷⣫⢿⣼⣹⢯⡷⣟⣦⡳⢄⠀⠀⠀⣼⢯⣟⣵⣻⣞⣳⢿⣳⣿⣶⡶⣶⢶⣶⣿⣳⣿⢿⣽⠎⠀⠀⣼⣿⢾⣯⢿⣽⢻⡬⠃⠀⣾⢷⣿
|
||||||
|
⡿⣜⠃⠀⠀⠀⠀⣜⡣⢋⡵⣙⠦⡿⣽⣏⣷⢻⣽⡏⡟⠀⠀⢀⢧⣃⠀⠀⠀⠻⡴⣋⡞⡥⠀⠀⢞⣻⢿⣷⣻⢿⡾⣟⣿⢾⣟⡾⣿⣻⢿⣻⠾⣥⠀⠈⣿⢯⡗⠈⠉⠎⡙⡄⠀⠀⢹⣟⡿⣝⣷⣻⣟⡾⣽⢯⣻⣽⣞⠧⠈⠀⣠⢟⣾⢧⣟⡾⣳⣯⣟⣯⢷⣻⢶⡽⣯⣟⣾⢳⣯⣿⣻⠞⠀⠀⣸⢿⣾⢿⣽⣻⣞⢧⡏⠀⢰⡿⣿⣻
|
||||||
|
⡟⡜⠀⠀⠀⠀⣸⠖⣍⡓⢶⡩⢞⣽⢶⣻⣞⡿⣯⡗⡇⠀⠀⠈⢶⡩⢆⠀⠀⠀⠑⢣⢞⣱⢃⡀⠈⠞⠻⠞⠏⠛⠙⠋⠈⠉⠀⣹⡷⣟⠏⠓⠉⠀⠀⠀⠉⢿⣻⣆⠀⠀⠈⣟⣀⣠⣰⣿⣻⢾⣽⣳⢯⡿⣽⣳⣯⣷⠋⠀⠀⣰⢯⣟⡯⣟⣾⡽⣷⣟⣾⣽⣻⢯⣿⡽⣷⣻⣾⢯⡷⣯⠓⠀⠀⣰⣿⣟⡾⣯⡷⣟⣾⡝⠆⠀⣾⣿⣟⣿
|
||||||
|
⡝⠀⠀⠀⠀⢠⡻⡜⢢⡛⢦⡝⣎⡿⣯⢷⣯⣾⢷⡹⠀⠀⢀⡀⠀⢫⡝⡄⠀⠱⡀⠀⠈⠧⢏⡲⠀⠀⠀⠀⠀⠀⣠⣤⣶⢿⣼⡽⠍⠁⠀⣀⣀⢠⣀⣀⠀⠀⢻⣞⣷⣢⢄⠀⠙⠯⣽⡾⣽⣾⡳⣟⣯⣽⡷⣿⣞⠃⠀⢀⣼⣳⡿⣾⣽⣻⣾⡽⣷⠿⣾⡽⣯⣿⢾⣽⣷⢿⣯⣿⠛⠀⠀⢀⣶⣟⣷⣹⣟⣷⣻⡽⣷⢻⠀⢠⣿⢷⣿⣻
|
||||||
|
⠁⠀⠀⠀⢀⢧⡳⢍⢧⡙⢮⡜⡼⣽⡽⣞⣾⡽⠃⡀⠀⠀⢸⣷⡄⠀⠸⣱⡀⠀⠀⠀⠀⠀⠉⠘⢯⠄⠀⠠⣶⢻⣽⣷⣻⠿⠈⠁⢀⣴⡾⣾⡽⣶⣻⣾⠷⣄⠀⠘⠹⣯⣟⡷⡀⠀⠀⠘⣿⢶⣻⣭⣟⣳⡟⠧⠁⠀⣰⣾⣳⣯⣟⣮⢷⣻⣾⡽⣯⣿⣳⣟⣷⣹⣯⢟⣾⠛⠃⠁⠀⢀⣴⣿⢻⣞⣷⣻⣞⡷⣏⣿⣽⠣⠀⣼⢿⣯⡿⣿
|
||||||
|
⠀⠀⠀⡠⢋⠶⣹⡘⢦⡙⡶⣩⢽⣧⣻⣽⡳⣟⡅⠀⠀⠀⡟⠓⠈⠀⠀⠀⠳⠄⠀⠀⠀⠀⠀⣀⠀⠈⠂⠀⠘⢯⢷⡽⠃⠀⢀⣼⣿⣻⣝⣳⢿⣹⢷⣫⣿⣞⣳⣆⡀⠀⠛⠾⣍⡷⣦⢶⡿⣯⣟⣾⣻⠗⠋⠀⢠⣞⡵⣻⣯⢿⣽⡛⠻⣿⣳⣿⣳⢷⣯⢿⡾⣟⠞⠛⠈⠀⢀⣤⣞⡿⣽⢼⣻⣟⣾⣳⣯⡿⣽⣾⣟⠃⠀⣿⡿⣾⢿⣿
|
||||||
|
⠀⠀⡰⢡⢋⠖⣥⢛⡬⢳⡱⢽⣞⣳⢯⣞⣿⣱⠀⠀⠀⠀⠀⠀⠀⡀⠀⠀⠀⠈⠂⠀⠀⡴⣻⡽⣟⣶⣤⣀⠀⠈⠘⠀⢠⣾⢯⣟⡾⣧⢿⡽⣯⣟⣯⢷⡻⣞⣿⣾⢿⡶⣤⣀⠀⠉⠀⠋⠐⠈⠙⠈⠀⠀⡀⠈⢿⣽⣻⠷⠀⠉⠉⠁⠀⢘⡿⣽⣻⢿⡞⡟⠉⠀⠀⣀⣤⣞⢯⡷⣯⡽⣯⣟⣷⣻⢷⣻⡾⣽⢷⣻⠎⠀⢸⣯⣟⣿⣻⣽
|
||||||
|
⠀⢬⡑⢣⠎⠼⣘⠧⣚⠵⣊⣿⡽⣻⢾⣽⣻⡆⠀⠀⠀⠀⠀⠠⠀⠀⠀⠀⠀⢀⣀⠀⠀⠉⢷⣻⡽⣷⢯⢷⠃⠀⠀⣰⢟⡿⣞⣯⢿⡽⣯⣟⣷⣻⣞⣯⢿⣹⠾⣝⣿⡽⣷⣯⢷⣦⡀⠀⠀⠀⠠⢤⡶⣟⣿⡀⠈⠉⠙⠯⠀⠀⢶⣒⣾⣟⡿⡽⠋⠋⠀⠀⣀⡰⣿⡽⣞⣯⢿⣹⢷⣟⡷⣟⡾⣽⣻⣷⢿⣯⠟⠁⠀⣠⣿⡟⣾⣳⢿⣽
|
||||||
|
⠈⢦⡙⢆⢎⡱⢭⡚⢥⠳⣹⣾⣽⣻⠾⣽⢿⠄⠀⠀⠀⠀⠀⠀⠀⠀⠀⣠⣴⣿⣞⣷⡶⣄⠀⢹⡿⣽⠫⠂⠀⠀⣼⣟⣾⣽⣻⣞⣯⣟⣷⣻⡞⣷⣻⢾⣯⣟⡿⣽⢾⣝⣳⣯⣟⣷⣭⣷⣤⣀⠀⠀⠻⢟⣾⡽⣄⠀⠠⢄⣀⣤⡞⠿⠚⠉⠀⠀⢀⣤⣖⣿⣽⣻⡳⣿⣝⡾⣯⡟⣿⣞⣿⡽⣿⣻⡽⡟⠋⠀⢀⣠⣾⢿⡵⣿⣳⣯⡟⠎
|
||||||
|
⠀⠀⠈⠘⠢⠙⢆⠻⣌⣳⣟⣾⣱⢯⡽⣟⡯⠀⠀⠀⠀⠀⠀⠀⠀⣠⣾⢿⡽⣞⡯⣟⣿⣻⢧⣞⢿⡀⠁⠀⠀⣼⢿⣯⡷⣞⣷⣻⢾⡽⣞⣷⣻⢷⡯⣟⡾⣭⡿⣽⣟⡾⣷⣟⡾⣯⢻⣾⣳⣯⣏⢦⡄⡀⠈⠛⠽⢆⠀⠈⠉⠀⠀⢀⣀⡤⣶⢯⡿⣞⡿⣞⡷⣯⣟⡷⣯⣟⣶⡿⣽⡾⡿⣝⠳⠉⠀⠀⣠⣴⣿⣻⡽⣯⣟⣷⡻⠜⠁⠀
|
||||||
|
⣠⢀⠀⠀⠀⠀⠈⠀⠘⠓⠻⣽⢯⣿⢻⣏⡇⡇⠀⠀⠀⠀⠀⣴⡾⣿⣹⢯⡽⣾⣝⡾⣵⣻⣏⡾⠉⠀⠀⠀⣾⢯⡿⣷⣻⣽⣾⡽⣯⢿⣽⣞⡷⣯⣟⣾⣽⣳⣿⣳⣯⢿⡷⣯⢿⣽⣳⣯⣷⡿⣯⢯⣽⡻⣴⢤⣀⠀⠀⢀⣠⡶⣽⣻⠾⣽⣛⢿⡼⣽⢯⡿⣽⣳⣯⣟⡿⡽⢏⡟⠡⠙⠀⠀⢀⣤⣶⡿⣟⣿⣞⡷⣻⢷⣻⣞⡷⣤⣶⢿
|
||||||
|
⢧⣋⢯⡓⡶⡤⣄⣀⠀⠀⠀⠀⠈⠘⠣⣛⠼⣅⠀⠀⠀⣀⡾⣷⡿⣿⣹⢯⣟⡷⣯⣟⣿⣳⡯⠁⠀⠀⠀⣼⢯⣿⣹⢯⣷⣻⢾⣽⢯⣟⡾⣽⣻⣽⣛⣾⣽⣳⢯⡷⣯⡿⣽⢯⣟⡾⣽⢻⠞⡉⠁⠉⠉⠁⠉⠃⢋⡟⣻⢏⡿⡽⣟⣯⣿⢶⡿⣯⣟⣯⣿⠻⠻⠍⢳⠍⠣⠁⠉⠀⣀⣠⣴⣾⣿⣻⣾⢻⣟⡷⣯⢿⡽⣯⢷⡾⣝⡳⣿⣿
|
||||||
|
⢧⡹⢦⣙⡱⢳⣍⢮⣝⡲⢤⣀⡀⠀⠀⠀⠙⠂⠀⠀⠀⠙⣻⣽⣳⣯⢟⣯⡿⣽⠷⣯⣷⠿⠁⠀⠀⠀⣸⠏⢿⣞⣷⣻⢾⣽⣻⣞⣯⢿⣹⢯⣗⣯⢿⡽⣶⣟⡿⣽⣻⣽⡻⢯⢯⡝⢮⠳⠉⠐⠉⠁⠀⠀⢀⡀⣀⠀⠀⠉⠐⠙⠞⢲⡱⣎⢻⡱⣍⠠⠬⠓⠓⠈⠁⠀⣀⣤⢶⣟⣷⣻⣟⢾⡽⣷⣫⡿⣯⢿⡽⣏⢿⣽⣫⢿⣅⢻⡷⣿
|
||||||
|
⢣⠝⢦⠣⣝⠲⣬⢓⡬⣝⣣⠽⣸⠕⣦⢀⠀⠀⠀⠀⠀⠀⢵⢯⣷⣫⣟⠾⣽⣫⣟⡿⣽⠃⠀⠀⠀⡰⠏⠀⣼⣻⠾⣽⡻⣜⣿⣹⡾⣟⢯⣟⡾⡽⢯⡟⣧⢿⣻⡽⢟⢧⡻⣝⠚⠈⠁⠀⠀⠀⠀⠢⡙⢎⡱⠜⡤⢋⠖⡲⢄⣄⣀⡀⠀⠀⠀⠁⠀⠀⣀⣀⣤⣤⣶⣿⣽⣯⡿⣾⣻⣽⣮⣿⣻⣷⣻⡽⣯⢿⣽⣫⢟⣶⢯⣟⡮⢳⣟⣿
|
||||||
|
⡑⠎⡆⠓⣌⠳⣡⠳⡜⢦⡱⢫⡕⡻⣔⢫⡳⣆⡄⠀⠀⠀⠈⠻⣰⠿⣼⣻⢧⢿⣼⣻⠁⠀⠀⠀⠀⠀⢠⣾⢿⡽⣫⢷⣻⡽⣞⠷⢩⣽⢻⣞⡷⣿⣏⡿⣟⡾⣣⢽⠫⠎⠁⠀⠀⠀⠐⢿⠀⠀⠀⠀⠈⠑⠨⢓⡌⢣⢚⡱⢊⡔⢮⣿⡿⣷⣾⣶⡷⣿⣽⣻⣞⡷⣿⣽⣻⣼⣟⡷⣯⢷⣯⢷⣻⢾⣵⣻⣽⣻⣞⡷⣯⣟⡿⣾⡕⣫⢾⣿
|
||||||
|
⡘⡱⢈⠳⢄⠳⣄⢣⠙⢦⡙⡷⣘⠗⣎⠷⡳⡼⣘⢧⢆⡀⠀⠀⠈⠛⠃⢿⣯⣷⣻⠇⠀⠀⠀⠀⢠⣼⣻⣼⡿⣾⢽⣳⡻⠗⢉⣴⣟⣾⡽⣾⡽⣷⠯⠟⢣⠏⠑⠈⠀⠀⠀⠈⢀⡀⠀⢻⠀⠀⠀⠀⠀⠀⠀⠀⠈⠁⠃⠘⠡⠚⠼⠷⠟⣿⢳⡿⡽⢷⡟⡿⣾⣟⣿⣽⣷⡿⣾⣿⣻⡿⣾⡿⣽⣻⣞⡷⣯⣗⣯⢟⡾⣹⢻⡵⢏⡹⣟⣿
|
||||||
|
⡱⢡⢋⠦⡩⠖⣌⠲⣉⠆⡉⠖⢭⡛⣬⢳⠳⣍⡳⢎⡧⠉⠀⠀⠀⠀⠀⠁⠘⠋⠏⠀⠀⠀⠀⠠⠛⢾⣟⣯⣿⢯⠗⠃⠁⣤⣟⣯⣿⢯⣟⣷⡙⠀⠁⠀⠀⠀⡠⠐⠀⠀⠤⠊⢷⡡⠀⣻⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⡀⣼⣻⢾⣟⣾⢿⣟⣷⡿⣟⣿⣽⡿⣷⣿⣻⣷⣻⣮⣿⢾⣵⣿⣼⣦⣷⣯⣿
|
||||||
31
homes/data/ascii-art/fox-12.txt
Normal file
31
homes/data/ascii-art/fox-12.txt
Normal file
|
|
@ -0,0 +1,31 @@
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡴⢻⡄⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⢀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⠞⠀⠀⣷⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⢸⠳⡄⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⣰⠏⠀⠀⠀⢻⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⡇⢻⣆⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⣞⣽⠀⠀⠀⠀⢸⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⢧⠀⢃⠣⡀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢸⣆⠀⠀⠀⡰⢹⠋⠀⠀⠀⠀⠀⠸⡇⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⢸⠀⠸⡄⠑⢄⠀⠀⠀⠀⠀⣀⣤⡤⢤⣄⣀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢸⠜⣇⣠⠊⠀⢨⠆⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠀⣇⠀⡇⠀⠀⠑⢦⣀⡴⠋⠁⠀⠀⠀⠀⠈⠙⠓⠤⣤⣀⡀⠀⢀⣠⠞⠀⢸⠁⠀⠀⢸⠂⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠘⡄⡇⠀⠀⠀⠀⡍⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠈⠉⠀⠀⠀⠀⠀⣇⠀⠀⡟⠀⠀⠀⠀⠀⠀⢰⡇⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⢀⣄⠀⢣⢰⠀⠀⠀⢸⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⢠⡾⡀⠀⠀⠀⠀⠀⠀⢸⠁⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⡾⠁⠳⣸⣿⠀⠀⠀⠘⡄⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⣧⠞⡇⠇⠀⠀⠀⠀⠀⠀⠾⠴⠒⢲⠀
|
||||||
|
⠀⠀⠀⠀⣤⢄⡀⣇⠀⠀⠈⢿⢂⠀⠀⠀⠱⡀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⣸⣯⣾⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡿⠀
|
||||||
|
⠀⠀⠀⠀⢿⠀⠈⠉⠀⠀⠀⠸⣮⡇⠀⠀⠀⠘⠢⣀⠀⠀⠀⣀⡤⠤⠐⠒⠚⠉⠉⠉⠙⠒⠠⠜⢋⢹⠇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡼⠀⠀
|
||||||
|
⠀⠀⠀⠀⠘⣆⠀⠀⠀⠀⠀⠀⢡⡈⢳⡄⠀⠀⠀⠀⠀⠀⠀⢠⣵⡀⠀⠀⠀⢰⣾⡽⠟⠒⠂⠀⠘⢌⠀⠀⠀⠀⠀⠀⠀⠀⣀⠄⢿⡀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠈⠢⡀⠀⠀⠀⠀⠀⢳⢦⣻⡄⠀⢀⣰⠤⡄⠀⠘⣿⠇⠀⠀⠀⠀⠀⢀⣠⣤⣤⣤⣄⡀⠱⡤⠄⠀⠀⠀⠀⠐⣅⠀⠀⣹⠆⠀
|
||||||
|
⠀⠀⠀⠀⠀⢀⡼⠁⠀⠀⠀⠀⠀⠀⢣⣹⡿⠖⢻⣟⠈⠁⠀⠀⠈⡆⠀⠀⠀⠀⣰⣿⠿⣿⡏⣿⣿⣿⣷⣷⡇⠀⠀⠀⠀⠀⠈⠲⢎⡁⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠛⠤⠤⠤⣶⠀⠀⠀⠀⢀⣏⣔⣾⣿⣿⣿⣴⣄⠀⠀⠁⠀⠀⠀⠀⣿⠁⠘⣿⣧⠻⣿⣿⠟⣁⠉⠢⣀⡀⠀⠀⢀⣠⠞⠁⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠀⢹⣀⠞⡇⠀⣸⣾⡟⢻⡇⣿⣿⣿⣿⡄⠀⠀⠀⠀⠀⠀⢿⠀⠀⠘⣻⡗⢻⢅⠤⠭⣒⠂⠀⠙⡄⢳⢁⡼⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠉⠀⡟⡻⣿⣿⠁⢻⣧⡻⣿⣿⣿⠇⠀⢀⡀⠀⠀⠀⠀⠀⠀⠘⣿⠟⢣⡢⠀⠀⠤⠤⠄⠀⢳⠀⠋⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢸⠟⠁⢨⠉⠀⠀⡟⠛⠋⠉⡠⠀⢿⣿⡿⠁⠀⡤⠀⠀⠀⠀⠀⠀⡎⢀⣴⣤⣄⣄⠀⠀⠘⡀⡇⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⡠⠋⠀⠀⢸⠀⠀⠀⠗⠀⠀⠀⢣⡀⠀⣹⢄⣀⠴⠁⠀⠀⠀⠀⠀⢀⣴⡌⢿⣿⣿⡇⠀⠀⢠⡁⢻⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⣀⣴⡿⠀⠀⢠⡄⡜⠀⠀⠀⠀⠀⠀⠀⠀⠈⠉⠁⠀⠀⠀⠀⠀⠀⠀⣠⣴⣿⣿⣷⣼⣿⣿⠏⠀⢀⢾⠙⣄⢧⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⣠⡾⢻⠋⠀⠀⠀⠈⡫⡅⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠠⣠⣿⣿⣿⣿⣿⡿⠋⠁⢀⡴⠋⢈⠀⠈⢢⡳⡀⠀⠀
|
||||||
|
⠀⠀⠀⢀⣾⠋⡠⠃⠀⠀⠀⢀⠞⠀⢧⡆⠀⠀⣀⠵⠤⣀⡀⠀⠀⠀⠀⠀⠀⠀⠀⠀⣿⣿⣿⣿⣿⣁⡀⢀⡴⢋⡔⡠⠋⠀⠀⠀⢳⡌⢦⠀
|
||||||
|
⠀⠀⢠⡿⠁⡴⠁⠀⠀⢀⡔⠁⠀⠀⠀⠡⡴⠋⠀⠀⠀⠀⠈⠉⢱⠀⠀⠀⠀⠀⠀⣠⣿⣿⣿⣯⣿⣿⣿⡟⠋⠁⠀⠀⠀⠀⠀⠀⠀⡟⡀⣧
|
||||||
|
⠀⠀⣟⠁⡜⠁⠀⠀⡰⠋⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠠⡁⠙⢦⠀⠀⠀⠀⢠⠏⢹⣟⠛⠛⠛⢉⡙⠻⡆⠀⠀⠀⠀⠀⠀⠀⠀⣇⠀⢸
|
||||||
|
⠀⢸⠸⡼⠀⠀⢀⠎⠀⢀⣴⣶⣶⣶⣶⣄⣀⡀⠀⠀⠀⠀⢀⡟⢦⠀⢧⠀⠀⠀⡼⠀⠸⠂⠀⣰⡾⠿⡞⢦⠹⣠⣶⣶⣾⣶⣦⡀⢰⠟⢀⡿
|
||||||
|
⠀⢸⡼⠀⠀⣠⠃⠀⣠⣿⣿⣿⣿⣿⣿⣿⣿⣏⠉⠉⡆⠉⠉⢦⠈⡆⢸⠤⠤⠤⡗⡆⠀⠀⢰⢣⢱⣔⠘⠮⢽⣻⣿⣿⣿⣿⣿⣿⡏⣀⡾⠁
|
||||||
|
⠀⣸⠁⠀⠀⠁⠀⢀⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⡆⠀⢰⠀⢠⣛⣄⠃⡼⠀⠀⠀⢿⠀⠀⠀⠘⠚⢾⣿⣤⡶⣼⣿⣿⣿⣿⣿⣿⣿⣿⡏⠀⠀
|
||||||
|
⠀⡏⠀⠀⠀⠀⠀⢸⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⡇⠀⢸⠀⢀⠟⠈⣠⠁⠀⠀⠀⠘⡄⢨⡇⠀⠀⠈⠀⢋⡻⠋⣸⣿⣿⣿⣿⣿⣿⣿⣷⠀⠀
|
||||||
|
⢸⠁⠀⠀⠀⠀⠀⢸⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⠀⡘⢴⣾⠀⡴⠁⠀⠀⠀⠀⠀⣿⡀⠀⠀⢀⣀⠀⠀⠀⢠⡿⣿⣿⣿⣿⣿⣿⣿⣿⠀⠀
|
||||||
|
⢸⠀⠀⠀⠀⠀⠀⢸⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣰⠃⠊⣠⠞⠀⠀⠀⠀⠀⠀⠀⢿⠇⠀⠀⠈⣿⠀⠀⠀⠘⠛⣿⣿⣿⣿⣿⣿⣿⣿⠀⠀
|
||||||
15
homes/data/ascii-art/fox-13.txt
Normal file
15
homes/data/ascii-art/fox-13.txt
Normal file
|
|
@ -0,0 +1,15 @@
|
||||||
|
⠀⠀⢠⠔⢆⡀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⣴⠏⢆⠀⠀⠀⠀
|
||||||
|
⠀⠀⡜⠀⠈⢶⡀⠀⠀⠀⠀⢠⠆⠀⠀⣠⠾⠉⠀⢈⠀⠀⠀⠀
|
||||||
|
⠀⢀⡄⠀⠀⠘⡌⢢⣆⣀⣴⣷⣷⣾⡏⣋⡭⡕⠂⢸⡇⠀⠀⠀
|
||||||
|
⠀⢸⡇⠠⠀⠈⡀⠀⠉⠻⢿⣿⣯⠭⠹⡿⣎⠁⣠⣸⠇⠀⠀⠀
|
||||||
|
⠀⠀⡁⠐⢃⠠⣱⠀⡀⠄⠈⠙⢿⣷⣤⣵⣜⣣⣼⣽⡄⠀⠀⠀
|
||||||
|
⠀⠀⢱⠄⠺⢥⠘⡼⠁⢀⡠⠴⠆⠉⠻⢿⠿⣏⢉⡟⠃⠀⠀⠀
|
||||||
|
⠀⠀⢰⡏⣑⠒⠸⠁⠀⢊⣠⡤⣴⠀⢆⢰⠶⣽⣿⣾⠀⠀⠀⠀
|
||||||
|
⠀⠀⠰⣿⣷⣶⡄⣀⣠⢾⣿⡿⢸⠄⢀⣺⣇⠿⡯⠿⡤⠀⠀⠀
|
||||||
|
⠀⠀⢐⣾⠒⠈⠆⠀⠈⠉⠒⠀⠀⠈⠀⠈⢀⣂⡵⡈⢑⡀⠀⠀
|
||||||
|
⠀⠀⠼⣏⣆⣂⠤⡀⠀⠀⠀⠐⠆⠀⠀⠸⢷⣶⠞⠈⢓⡂⠀⠀
|
||||||
|
⠀⠀⠈⠙⣾⠀⣀⣒⣦⣀⡀⠀⠈⠠⣌⢁⠤⡦⡤⠳⠘⠀⠀⠀
|
||||||
|
⠀⠀⠀⠈⠉⢁⣨⣁⢿⠟⠝⡷⣶⡦⢬⣐⡪⠟⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⢀⣀⡄⠮⠛⠏⠄⠆⠀⠈⠉⠉⠹⠻⠖⢴⢠⢄⢀⠀⠀⠀
|
||||||
|
⢀⡴⠟⠋⠀⠀⠀⠤⠁⠐⠤⠀⠀⠀⠀⠔⠉⠓⢒⡈⢹⢷⡄⠀
|
||||||
|
⢰⠃⠀⠀⠀⠀⢘⡖⠂⠀⠀⠀⠀⠀⠀⠲⠀⠀⠀⠐⠑⡄⠙⣄
|
||||||
56
homes/data/ascii-art/fox-14.txt
Normal file
56
homes/data/ascii-art/fox-14.txt
Normal file
|
|
@ -0,0 +1,56 @@
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠐⠦⡀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠙⢷⡀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⠀⡄⠀⠀⠉⢢⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡈⠀⢰⠀⠀⠀⠀⢣⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⠀⢴⠀⠀⠀⢃⠀⠀⠀⠀⣂⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠒⠀⠀⠀⠀⠀⠄⠀⠀⠀⡿⢦⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠸⠀⢍⠀⠀⠀⠀⠀⠀⠁⠀⠀⠀⠀⢀⠀⣈⣢⢔⠀⣀⢄⠀⡀⡐⡵⡀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢣⠀⠑⠀⠀⠠⠁⠀⢀⢒⢦⠀⢤⡐⠱⡘⢦⡡⠵⢝⢷⡄⠀⢃⢱⠘⠄⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢣⡀⠀⠑⣧⠁⠀⢸⠀⣀⢧⠸⣟⣤⠷⣼⠙⡄⠹⢫⡷⡀⡀⡌⣇⠀⠂⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠳⣀⢠⠁⢸⣾⣹⠽⣿⠎⢇⠸⢿⣾⢿⣿⣿⠒⣏⡇⢣⠱⢰⢸⡆⠈⠂⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢉⣧⣶⣻⠁⣯⡦⠀⠀⠘⠀⠈⠁⠊⠀⠈⡀⢹⣿⣸⡟⡜⡌⣿⡀⠀⢣⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⣏⣿⡏⡌⣼⣿⢶⡆⢀⠀⠀⠀⠀⠀⠀⠀⢨⡄⠀⠀⠁⡇⣿⣧⠀⠐⣧⢂⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠐⢽⣻⢿⡔⣼⢟⠂⠐⠛⠀⠀⠀⠀⠀⠀⠀⠈⠁⠀⣠⣾⣷⣿⣿⢇⠀⣿⢫⡄⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠺⠙⡎⢹⣾⡦⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡠⠊⣿⣏⠏⢹⠸⢸⢠⠛⢸⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠸⠀⢸⠿⢿⣧⣄⡀⠀⣀⣀⣀⣠⣴⣶⣾⣿⣿⣿⣿⣇⠚⠃⠜⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⢂⠐⠀⡆⢀⠀⠀⠈⡀⠀⠀⠀⢰⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣷⡤⠐⠒⠀⠒⠀⢀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠘⠜⠀⢂⢃⠈⡔⠀⠀⠀⠀⠀⢄⣘⣿⣿⣿⣿⣿⣿⠿⠛⣽⠿⠁⠀⠄⠀⠀⠀⠀⠀⠈⢄⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠁⠁⠀⠸⣄⡉⠁⠀⠀⠀⢠⠊⣿⠟⢻⠟⣛⢉⣐⡲⢎⠀⠀⠀⠀⠈⠢⠄⠀⠀⠀⠀⠀⢂⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠉⠂⠀⠀⠀⣆⠴⣿⣞⡵⠋⠁⠀⠈⠙⠳⣷⣄⠀⠀⠀⠀⠀⠘⣶⣄⡠⢀⠀⢆⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡞⡧⡀⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢠⣿⠋⠀⠀⠀⠀⠀⠀⠀⠀⢸⣷⣤⣄⣠⣤⣤⣿⣿⣿⣷⣾⣿⣦⡀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢐⠖⠁⠀⠀⠒⠄⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⣾⣿⡀⠀⠀⠀⠀⠀⠀⠀⣰⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣶⣄⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⠀⠈⠀⠀⠀⠀⠀⠀⠀⠀⠑⡄⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠘⠀⠀⠀⠀⠼⣿⣿⡷⢄⠀⠀⠀⣀⠄⢊⣼⣿⣿⣿⡿⢃⡼⠁⠙⠻⡛⠛⠛⠻⠿⣿⣿⣿⣷⣄⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠈⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠸⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠘⢄⠀⠀⠌⣰⣿⣿⣿⣤⣉⣉⣁⣠⣶⣿⣿⣿⣿⠟⢠⠞⠀⠀⠀⠀⠈⢂⠀⠀⠀⠘⣿⣿⣿⣿⣷⣄⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡠⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢂⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠙⣏⣴⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⡿⠋⠀⡠⠁⠀⠀⠀⠀⠀⠀⠀⠑⠠⡀⠀⠈⢿⣿⠏⠀⢉⣦⡀⠀⠀⠀⠀⠀⠀⠀⠰⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠈⡀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢸⡉⠻⢿⣿⣿⣿⣿⣿⣿⣿⠿⠋⠀⠀⢜⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⣱⢶⣻⣵⣶⣿⣿⣿⣧⢀⡠⢔⢶⠀⠀⠀⡆⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢸⣿⠦⡀⡏⠙⠻⠿⣿⡟⠁⠀⠀⠀⢨⠂⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⣴⣵⣿⣿⣿⣿⣿⣿⣿⠟⣩⣤⡿⠃⠀⠀⠀⢠⠀⠀⠆⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⠃
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠈⣿⡴⠁⡇⠀⠀⠀⠀⠉⠢⣀⠀⠀⠀⠳⡀⠀⠀⠀⠀⠀⠀⠀⠀⢠⣾⣿⣿⣿⣿⣿⣿⢟⠟⣻⡫⠗⠉⠀⠀⠀⠀⠀⠘⡄⡆⠈⡀⡔⠀⠀⠀⡠⠁⠀⠀⠀⠀⢀⡌⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢰⣿⠃⠀⡇⠀⠀⠀⠀⠀⠀⣠⣿⣶⣤⢴⠛⠲⠀⠀⠀⠀⠀⠀⣰⣿⣿⣿⣿⠟⠛⣩⠖⡿⠐⠁⠀⠀⠀⠀⠀⢀⠀⠀⠀⣱⣡⣀⠈⠀⠀⠀⠈⠀⠀⠀⠀⠀⢀⣮⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⣸⠇⠀⣀⣼⣤⣤⣀⣀⣤⣾⣿⣿⡏⣠⣾⡛⠒⠂⠈⣀⠀⣠⣾⣿⣿⣿⡟⢁⣴⡪⠒⠁⠀⠀⠀⠀⠀⠀⠀⣀⠾⠒⠀⠁⠀⠘⠺⣯⡶⡄⠀⠀⠀⠀⠐⠊⠐⡺⠁⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⣿⣴⣿⣿⣿⣿⣿⣿⣿⡿⠛⠁⠀⣾⣩⠴⠓⠀⠀⠈⣾⣿⣿⣿⣿⣿⣯⠾⠋⠁⠀⠀⠀⠀⠀⠀⠀⠀⢀⠄⢉⠀⡄⠀⠀⠀⠀⠀⠀⢧⣘⡄⠀⠀⠀⢀⡴⠊⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠐⠛⢿⣿⣿⡿⠿⠿⢿⠋⠀⢀⡤⠖⠛⡟⢲⣿⡏⠉⣁⣿⣿⣿⣿⠟⠋⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡎⠀⠀⠈⠀⠀⠀⠀⠀⠀⠀⠀⢹⡁⠀⠀⡨⠉⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⣀⡀⠀⠉⠀⠀⠀⠀⢀⠤⠞⠁⢀⢀⣠⣧⣽⣿⣿⣿⠟⠛⢿⠛⠀⢀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢰⠄⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢸⠋⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠈⠹⠉⠃⢂⠀⠀⢀⣶⠁⣀⣤⣶⣾⣿⣿⣿⣿⣿⡿⠁⠀⠀⠈⢆⠀⠀⠈⠐⢄⠀⢀⡀⠀⠀⠀⠀⠀⡀⢸⡂⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠸⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢰⢦⣦⣴⣦⣷⣄⣴⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⡟⠀⠀⠀⠀⠀⠘⡆⠀⠀⠀⠀⠀⠈⠀⠀⠀⠂⠉⠀⢨⠉⠋⢍⠐⢄⠀⠀⠀⠀⠀⠀⠀⠀⠇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢸⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⡿⠿⠿⢿⣿⡟⠀⠀⠀⠀⠀⠀⠀⢸⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠱⡌⢇⠀⠀⠀⠀⠀⢐⡜⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢠⢸⣿⣿⣿⣿⣿⡟⢋⠉⠉⠀⠀⠀⠀⢀⣿⣿⠁⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⢸⠀⣀⠤⠔⠂⠉⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡏⠈⣿⣿⣿⣿⣿⣿⣿⣦⣄⠀⠀⠀⢰⣿⣿⣿⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢰⢇⠚⠋⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⣼⣇⠀⢿⣿⣿⣿⣿⣿⣿⣿⣿⣿⡂⢠⣿⣿⣿⡏⠀⠀⠀⠀⠀⠀⠀⠀⢀⠇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡰⠛⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⣀⣴⣾⣿⠇⠀⠸⣿⣿⣿⣿⣿⣿⣿⣿⣿⣷⣿⣿⣿⣿⣷⠀⠀⠀⠀⠀⠀⠀⠀⢸⢧⣄⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡠⠊⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⣀⣴⣿⣿⣿⡿⠛⢷⠀⠀⢻⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⠀⠀⠀⠀⠀⠀⠀⠀⠈⠀⠘⠉⠐⠠⠄⣀⡀⠀⢀⡀⡖⠉⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⢀⣠⣶⣿⣿⣿⡿⠋⠁⠀⠀⠈⢃⠀⠀⢻⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⠀⠀⠀⠀⠀⠀⠀⠀⡆⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⣀⣴⣾⣿⣿⣿⠿⠋⠁⠀⠀⠀⠀⠀⠀⠀⢢⠀⠈⢿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⠀⠀⠀⠀⠀⠀⠀⠀⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠴⣞⣫⣶⣿⠟⠋⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠣⠀⠈⢿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⠀⠀⠀⠀⠀⠀⠀⢀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⣠⣴⡿⠟⠉⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢲⡀⠈⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⡀⠀⠀⠀⠀⠀⠀⠈⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⠟⠉⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠪⢂⠘⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠑⣅⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣇⠀⠀⠀⠀⠀⠀⠂⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠈⢽⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⠀⠀⠀⠀⠀⠰⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠻⣿⣿⣿⣿⣿⣿⣿⣿⣿⡆⠀⠀⠀⠀⡆⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠘⣿⣿⣿⠿⠛⢿⣿⣿⣷⠀⠀⢀⣠⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠘⡛⣿⡀⠀⠀⠙⣻⣿⣷⡾⠛⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠘⢿⣷⣀⣠⣴⠿⠋⠁⢀⣴⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢫⡉⠉⠀⢀⣠⣶⣿⣿⡀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠸⣦⣤⣶⣿⣿⡿⠋⣼⣷⡄⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢿⣿⣿⡿⠋⣠⣾⣿⢿⣿⡄⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠸⠟⠉⣀⠔⢹⠟⠁⠀⢻⣿⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⣶⣉⡠⠊⠁⠸⠀⠀⠘⣿⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
||||||
18
homes/data/ascii-art/fox-2.txt
Normal file
18
homes/data/ascii-art/fox-2.txt
Normal file
|
|
@ -0,0 +1,18 @@
|
||||||
|
⠀⠀⠀⠀⣀⡀
|
||||||
|
⠀⠀⠀⠀⣿⠙⣦⠀⠀⠀⠀⠀⠀⣀⣤⡶⠛⠁
|
||||||
|
⠀⠀⠀⠀⢻⠀⠈⠳⠀⠀⣀⣴⡾⠛⠁⣠⠂⢠⠇
|
||||||
|
⠀⠀⠀⠀⠈⢀⣀⠤⢤⡶⠟⠁⢀⣴⣟⠀⠀⣾
|
||||||
|
⠀⠀⠀⠠⠞⠉⢁⠀⠉⠀⢀⣠⣾⣿⣏⠀⢠⡇
|
||||||
|
⠀⠀⡰⠋⠀⢰⠃⠀⠀⠉⠛⠿⠿⠏⠁⠀⣸⠁
|
||||||
|
⠀⠀⣄⠀⠀⠏⣤⣤⣀⡀⠀⠀⠀⠀⠀⠾⢯⣀
|
||||||
|
⠀⠀⣻⠃⠀⣰⡿⠛⠁⠀⠀⠀⢤⣀⡀⠀⠺⣿⡟⠛⠁
|
||||||
|
⠀⡠⠋⡤⠠⠋⠀⠀⢀⠐⠁⠀⠈⣙⢯⡃⠀⢈⡻⣦
|
||||||
|
⢰⣷⠇⠀⠀⠀⢀⡠⠃⠀⠀⠀⠀⠈⠻⢯⡄⠀⢻⣿⣷
|
||||||
|
⠀⠉⠲⣶⣶⢾⣉⣐⡚⠋⠀⠀⠀⠀⠀⠘⠀⠀⡎⣿⣿⡇
|
||||||
|
⠀⠀⠀⠀⠀⣸⣿⣿⣿⣷⡄⠀⠀⢠⣿⣴⠀⠀⣿⣿⣿⣧
|
||||||
|
⠀⠀⠀⢀⣴⣿⣿⣿⣿⣿⠇⠀⢠⠟⣿⠏⢀⣾⠟⢸⣿⠀⠀
|
||||||
|
⠀⢠⣿⣿⣿⣿⠟⠘⠁⢠⠜⢉⣐⡥⠞⠋⢁⣴⣿⣿⠃
|
||||||
|
⠀⠀⣾⢻⣿⣿⠃⠀⠀⡀⢀⡄⠁⠀⠀⢠⡾⠁
|
||||||
|
⠀⠀⠃⢸⣿⡇⠀⢠⣾⡇⢸⡇⠀⠀⠀⡞
|
||||||
|
⠀⠀⠀⠈⢿⡇⡰⠋⠈⠙⠂⠙⠢
|
||||||
|
⠀⠀⠀⠀⠈⢧
|
||||||
8
homes/data/ascii-art/fox-3.txt
Normal file
8
homes/data/ascii-art/fox-3.txt
Normal file
|
|
@ -0,0 +1,8 @@
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀,
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠀/|\
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀/⠀|⠀|
|
||||||
|
,____,-'⠀__⠀⠀'-,-.-.
|
||||||
|
'-.⠀⠀⠀⠀_(⠀/⠀(⠀⠀⠀⠀⠀⠀⠀\-.
|
||||||
|
⠀⠀⠀'-.(_/\⠀/⠀_⠀⠀⠀⠀⠀⠀.⠀⠀)
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀a.'⠀\'⠀''⠀⠀,-
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀'._/,⠀-⠀'
|
||||||
32
homes/data/ascii-art/fox-4.txt
Normal file
32
homes/data/ascii-art/fox-4.txt
Normal file
|
|
@ -0,0 +1,32 @@
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀████⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀████░░██⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀████⠀⠀░░██⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀██░░⠀⠀░░░░░░██⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀██⠀⠀██⠀⠀⠀⠀⠀⠀░░██⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀████⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀██░░██⠀⠀⠀⠀⠀⠀⠀⠀░░██⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
██░░░░██████⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀██░░██⠀⠀⠀⠀⠀⠀░░⠀⠀████⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
██░░░░██░░░░████⠀⠀⠀⠀⠀⠀██████░░░░░░██⠀⠀⠀⠀░░░░██████████████⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
██░░⠀⠀⠀⠀████░░░░██████░░░░░░░░░░░░░░██░░░░░░██░░░░░░░░░░░░████⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
██░░░░⠀⠀⠀⠀⠀⠀██░░░░░░░░░░░░░░░░░░░░░░░░░░░░██░░██░░░░░░░░░░░░░░██⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀██░░⠀⠀⠀⠀⠀⠀██░░░░░░░░░░░░░░░░░░░░░░░░░░░░██░░██░░░░░░░░░░░░░░░░████⠀⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀██⠀⠀⠀⠀⠀⠀⠀⠀██░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░██░░░░░░░░░░░░░░░░░░░░░░██⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀██░░⠀⠀⠀⠀██░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░████░░░░░░░░░░░░░░░░░░░░░░██⠀⠀⠀⠀
|
||||||
|
⠀⠀██░░░░⠀⠀░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░⠀⠀██░░░░░░░░░░░░░░░░░░░░██⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀██░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░⠀⠀⠀⠀██░░░░░░░░░░████░░░░░░░░██⠀⠀
|
||||||
|
⠀⠀⠀⠀████░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░██⠀⠀⠀⠀⠀⠀██░░░░░░████░░░░░░░░░░░░██⠀⠀
|
||||||
|
⠀⠀⠀⠀██░░██░░░░░░░░░░░░░░░░░░░░░░░░░░░░██⠀⠀⠀⠀⠀⠀⠀⠀██░░░░██░░░░░░░░░░░░░░░░██⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀██░░██░░░░░░░░░░░░░░░░░░░░░░░░░░██⠀⠀⠀⠀⠀⠀⠀⠀██████░░░░░░░░░░░░░░░░░░██⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀██░░██░░░░░░░░░░░░░░░░░░░░░░░░░░██⠀⠀⠀⠀⠀⠀██░░░░░░░░░░░░░░░░░░░░░░░░░░██
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀████⠀⠀░░░░░░░░░░░░░░░░░░░░░░░░░░⠀⠀⠀⠀██░░░░░░░░░░░░░░░░░░░░░░░░░░░░██
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀██⠀⠀⠀⠀░░██████░░░░░░░░░░░░░░⠀⠀⠀⠀██░░⠀⠀░░░░░░░░░░░░░░░░░░░░░░░░░░██
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀██⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀████░░░░░░░░░░⠀⠀⠀⠀██⠀⠀░░⠀⠀░░⠀⠀⠀⠀⠀⠀⠀⠀░░░░░░░░░░░░██⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀██⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀██⠀⠀████⠀⠀░░⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀░░░░░░░░░░░░░░██⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀██⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀██⠀⠀██⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀░░⠀⠀░░░░░░░░░░██⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀██████████████████████⠀⠀⠀⠀██⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀░░░░░░██⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀██⠀⠀⠀⠀⠀⠀⠀⠀██⠀⠀⠀⠀⠀⠀⠀⠀██⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀░░░░██⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀██⠀⠀⠀⠀⠀⠀██⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀██⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀░░░░██⠀⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀██⠀⠀⠀⠀⠀⠀██⠀⠀⠀⠀⠀⠀⠀⠀████⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀██⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀██████⠀⠀⠀⠀⠀⠀⠀⠀██⠀⠀██⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀████⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀████████⠀⠀⠀⠀██⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀██████⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀██⠀⠀⠀⠀████⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀██████⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
||||||
29
homes/data/ascii-art/fox-5.txt
Normal file
29
homes/data/ascii-art/fox-5.txt
Normal file
|
|
@ -0,0 +1,29 @@
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀██⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀██⠀⠀██⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀██⠀⠀⠀⠀██⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀██⠀⠀⠀⠀⠀⠀██⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀████⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀██████⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀██⠀⠀⠀⠀⠀⠀⠀⠀████
|
||||||
|
⠀⠀⠀⠀⠀⠀██⠀⠀████⠀⠀⠀⠀⠀⠀⠀⠀████⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀██⠀⠀⠀⠀⠀⠀██⠀⠀██
|
||||||
|
⠀⠀⠀⠀⠀⠀██⠀⠀⠀⠀⠀⠀████⠀⠀██░░░░░░⠀⠀░░⠀⠀░░⠀⠀⠀⠀⠀⠀██⠀⠀⠀⠀██⠀⠀⠀⠀██
|
||||||
|
⠀⠀⠀⠀⠀⠀████⠀⠀⠀⠀⠀⠀⠀⠀██░░░░░░░░░░░░░░⠀⠀░░⠀⠀██⠀⠀⠀⠀██⠀⠀⠀⠀████
|
||||||
|
⠀⠀⠀⠀⠀⠀██▒▒██⠀⠀⠀⠀⠀⠀⠀⠀██░░░░░░░░░░░░░░░░████⠀⠀██⠀⠀⠀⠀██▒▒██
|
||||||
|
⠀⠀⠀⠀⠀⠀██▒▒▒▒██⠀⠀⠀⠀⠀⠀⠀⠀██████████████████████⠀⠀⠀⠀██▒▒▒▒██
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀██▒▒▒▒██⠀⠀⠀⠀░░░░░░░░░░░░░░░░░░░░██⠀⠀⠀⠀██▒▒▒▒██⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀██▒▒▒▒▒▒██⠀⠀░░░░░░░░░░░░░░░░░░░░░░░░██▒▒▒▒▒▒██⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀██▒▒▒▒▒▒██░░░░░░░░░░░░░░░░░░░░░░██▒▒▒▒▒▒██⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀██▒▒▒▒▒▒▒▒██░░░░░░░░░░░░░░░░░░░░██▒▒▒▒▒▒██⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀██▒▒▒▒██░░░░░░░░░░░░░░░░░░░░░░░░██▒▒▒▒██⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀██▒▒██░░░░░░░░░░░░░░░░░░░░░░░░░░██▒▒██⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀██████░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░██⠀⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀██░░░░██░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░██⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀██░░░░░░██░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░██⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀██░░░░░░░░██░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░██⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀██░░░░░░░░░░░░██░░██████░░░░░░░░░░░░░░██████░░██⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀██░░░░░░░░░░░░██░░░░░░░░██░░░░░░░░░░██░░░░░░░░██⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀██░░░░░░░░░░░░░░██░░░░░░░░██░░░░░░██░░░░░░░░██░░██⠀⠀⠀⠀
|
||||||
|
██░░░░░░░░░░░░░░░░░░██░░░░░░░░⠀⠀⠀⠀░░⠀⠀░░░░░░██░░░░██⠀⠀⠀⠀
|
||||||
|
██░░░░░░░░░░░░░░░░░░░░████░░⠀⠀⠀⠀████⠀⠀⠀⠀████░░░░░░░░██⠀⠀
|
||||||
|
██░░░░░░░░░░██░░░░░░░░░░░░████⠀⠀⠀⠀⠀⠀⠀⠀██░░░░░░░░░░░░██⠀⠀
|
||||||
|
⠀⠀██░░░░░░░░██░░░░░░░░██████████████████████░░░░░░░░██⠀⠀
|
||||||
|
⠀⠀██░░░░░░░░░░████░░░░░░⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀██⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀░░░░░░██⠀⠀
|
||||||
|
⠀⠀⠀⠀████████████████████████████████████████████████⠀⠀⠀⠀
|
||||||
23
homes/data/ascii-art/fox-6.txt
Normal file
23
homes/data/ascii-art/fox-6.txt
Normal file
|
|
@ -0,0 +1,23 @@
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⣀⡈⢯⡉⠓⠦⣄⡀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠻⣉⠹⠷⠀⠀⠀⠙⢷⡀⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⣠⠞⠀⠀⠀⠀⠀⠀⠀⢿⡇⠀⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⢈⡇⠀⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⡇⠀⠹⠝⠀⠀⠀⠀⠀⣼⠃⠀⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⣠⠞⠀⣀⣠⣤⣤⠄⠀⠀⢠⡏⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠚⠢⠼⠿⠟⢛⣾⠃⠀⠀⠀⢸⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⢀⡴⣻⠃⠀⠀⠀⠀⢸⡉⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⣰⢻⡷⠁⠀⠀⠀⠀⠀⢸⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⢰⢽⡟⠁⠀⠀⠀⠀⠀⠀⠀⣇⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⢾⣿⠀⠀⠀⠀⠀⠀⠀⠀⠀⣸⡆⠀⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⢸⣿⡄⠀⠀⠀⠀⠀⠀⠀⠀⠀⣿⡀⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠘⢧⣳⡀⠀⠀⠀⠀⠀⠀⠀⠀⠘⣷⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠈⣷⣱⡀⠀⠀⠀⠀⣸⠀⠀⠀⠈⢻⣦⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⢸⣷⡙⣆⠀⠀⣾⠃⠀⠀⠀⠀⠈⢽⡆⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠸⡇⢷⡏⠃⢠⠇⠀⠀⣀⠄⠀⠀⠀⣿⡖⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⢀⡇⢨⠇⠀⡼⢀⠔⠊⠀⠀⠀⠀⠀⠘⣯⣄⢀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⢰⡇⣼⡀⣰⣷⠁⠀⠀⠀⠀⠀⠀⠀⠀⣇⢻⣧⡄
|
||||||
|
⠀⠀⠀⠀⣀⣮⣿⣿⣿⣯⡭⢉⠟⠛⠳⢤⣄⣀⣀⣀⣀⡴⢠⠨⢻⣿
|
||||||
|
⠀⠀⢀⣾⣿⣿⣿⣿⢏⠓⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⢨⣿
|
||||||
|
⠀⣰⣿⣿⣿⣿⣿⣿⡱⠌⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⢭⣾⠏
|
||||||
|
⣰⡿⠟⠋⠛⢿⣿⣿⣊⠡⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⣠⣼⡿⠋⠀
|
||||||
|
⠋⠁⠀⠀⠀⠀⠈⠑⠿⢶⣄⣀⣀⣀⣀⣀⣄⣤⡶⠿⠟⠋⠁⠀⠀⠀
|
||||||
29
homes/data/ascii-art/fox-7.txt
Normal file
29
homes/data/ascii-art/fox-7.txt
Normal file
|
|
@ -0,0 +1,29 @@
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠴⣄⠀⠀⠀⠀⣀⣀⣀⠤⣤⣄⠀⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⣏⠀⠋⠀⠀⢀⣨⡭⠽⠿⢯⡛⢿⡑⢦⡀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠘⢦⡤⠤⢖⣉⣁⣀⠀⠀⠀⠙⡄⠱⡀⠹⡄⠀⠀⠀⠀
|
||||||
|
⠀⠀⣀⠀⠀⠀⢀⠜⣁⠴⠚⠉⣁⣀⡀⠑⡀⠀⠀⠀⠀⡇⠀⠹⡄⠀⠀⠀
|
||||||
|
⠀⢺⠉⠃⠀⢠⡿⠚⣁⣤⠞⠉⣠⠤⠬⣷⡀⠀⠀⠀⠀⠇⠀⢀⣷⠀⠀⠀
|
||||||
|
⠀⠀⠙⠒⣲⠟⠓⠋⣵⠋⠀⠀⠈⠁⠀⠈⢧⠀⠀⠀⠀⠀⠀⡼⠀⣇⠀⠀
|
||||||
|
⠶⠤⠤⠖⢡⠶⣄⡜⠁⠀⠀⠀⠀⠀⠰⠖⣾⠀⠀⠀⠀⠀⡜⠀⠀⢸⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠉⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⡏⠀⠀⠀⠀⠊⠀⠀⠀⢸⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⣠⠞⠀⠀⠀⠀⠀⠀⠀⠀⠀⡸⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡠⠊⠁⠀⠀⠀⠀⠀⠀⠀⢀⣠⠴⠛⣉⡗
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⣠⠞⠁⠀⠀⠀⠀⠀⠀⠀⢰⠋⣡⡶⠛⠉⠁⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠀⢠⠇⠀⠀⠀⢀⣠⠤⢤⣤⣤⡾⠀⣏⣄⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠀⡾⠀⠀⠀⠰⠛⠉⠉⠉⠛⠉⠀⠀⣿⠀⡆⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠀⢧⠀⠀⠀⠀⠀⠀⠀⠀⢀⣤⠖⠚⡟⡆⢿⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠘⣆⠀⠀⠀⠀⠀⢀⣾⣍⣀⠀⣸⠇⢹⠈⢦⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠘⢦⡀⠀⠀⠀⠈⠸⡄⠈⠉⠁⠀⠀⢣⣠⠃⠀
|
||||||
|
⠀⠀⠀⠀⣰⢷⡀⠀⠀⠀⠀⠀⠹⣆⠀⠀⠀⠀⢳⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⢻⠀⠉⠍⠳⠤⠤⠤⢶⡄⣇⠀⠀⠀⠀⢱⡀⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⢷⡀⠀⠀⠀⠀⡴⠋⠀⢹⠀⠀⠀⠀⠀⣇⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⢇⣀⣀⣴⡄⠉⠲⠶⠚⠀⠀⠀⠀⠀⢸⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠸⡄⠈⠉⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⣸⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⢹⡄⠀⠀⠀⠀⢠⠀⠀⠀⠀⠀⡴⠃⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⣙⡶⣄⠀⢀⡘⣆⠀⠀⣶⠞⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⣠⠶⠒⠒⠋⠉⠁⠀⠈⣹⠻⠏⣻⠇⠀⢘⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⣼⣥⡶⠋⠉⠉⠉⠉⠉⠉⠁⢠⡞⠁⣠⡶⠋⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠈⠉⠀⠀⠀⠀⠀⠀⠀⠀⢠⠏⣠⠞⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢠⠏⣼⠃⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⣈⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠿⠟⠁⠀⠀⠀⠀
|
||||||
42
homes/data/ascii-art/fox-8.txt
Normal file
42
homes/data/ascii-art/fox-8.txt
Normal file
|
|
@ -0,0 +1,42 @@
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⣠⡀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⣰⢟⢿⣿⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢠⣾⡇⣸⣸⣿⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⣼⡟⢸⡷⣯⣼⣿⡆⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⣴⣿⡿⣆⠀⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⡼⢏⣷⠏⠀⠸⣿⣿⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⣴⣿⣿⠙⠁⢿⡀⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⡾⢡⡟⢻⠀⠀⠀⣹⣿⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⣰⣾⡿⠟⢻⡇⠀⠀⣷⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⡾⢡⣸⠁⠈⠀⠀⢠⣿⣿⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⣠⣾⣿⠋⠀⠀⢸⡇⠀⠀⣼⡄⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⣼⡇⣾⢿⡀⠀⠀⠀⣼⣿⣿⣿⣀⣀⡟⠦⣄⠀⠀⠀⠀⠀⢀⡾⣿⡿⠁⠀⠀⠀⢸⡇⠀⠀⣿⣇⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢸⣿⠀⣿⠀⠙⢀⣠⠴⠛⠉⠁⠀⠀⠉⠉⠁⠀⠛⢦⡀⠀⣰⠟⣧⣿⠃⠀⠀⠀⠴⠛⢛⣷⠀⢹⣿⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⣾⣿⠀⢻⡆⠐⠻⣿⡷⠆⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠈⠻⣿⣿⣿⡇⠀⠀⠀⠀⠀⢀⣾⠋⠀⣿⡿⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠀⢸⣿⣿⡄⠀⣻⣤⠾⠋⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠙⢿⣿⠀⠀⠀⠀⠐⠶⣿⠁⠀⢠⣿⠇⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠀⣿⣿⣿⣇⣰⠏⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠈⢧⠀⠀⠀⠀⠀⣼⠇⠀⠰⣱⣿⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠀⣿⣿⣿⠟⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠈⢳⡀⢀⣠⠞⠁⠀⢀⣼⣿⠇⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠀⢹⡿⠃⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠈⢻⡋⠀⠀⣠⣴⣿⣿⡿⠀⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⢠⠞⠁⠀⢠⣞⡋⢹⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠈⢷⣶⡿⢿⣿⣿⣿⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⣠⠏⠀⠀⢠⡏⠀⠱⢼⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⣤⠶⣄⠀⠀⠀⠀⠀⠀⠘⢿⣿⣿⣿⡿⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⢀⡀⠀⠀⠀⠀⢴⡛⢀⠀⠀⠋⣇⣀⣠⠏⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⣾⠑⣄⢸⡄⠀⠀⠀⠀⠀⠀⠘⣿⣿⡟⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⠸⡏⠓⠶⢤⡀⠀⣟⠛⠛⠙⠳⠮⣍⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠘⣧⠀⠈⣸⡗⠀⠀⠀⠀⠀⠀⠀⠸⡟⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⣧⠀⠀⠀⠈⠙⠚⢦⣄⡀⠀⠀⠈⠓⠲⠖⠒⢒⣲⣴⡤⣤⣀⠀⠀⠀⣙⣦⣤⣯⡤⠤⠤⢤⣄⡀⠀⠀⠀⠹⡄⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠈⢧⠀⠀⠀⠀⠀⠀⠀⠉⠓⠢⢤⡀⢰⡀⠀⠘⠛⠉⠀⠀⠈⠉⠉⠉⠀⠀⠀⠀⠀⠀⠀⠀⠐⠺⣧⣤⣤⣤⡿⠂⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠑⢦⡀⠀⠀⠀⠀⠀⠀⠀⠀⢸⣿⣷⣶⣾⣧⡀⠀⣠⠖⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠈⠙⣦⠟⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠈⠳⠤⣀⠈⠀⠀⠀⢰⣿⠿⠿⢿⣿⣿⣿⣿⣿⣿⣶⣶⣄⠀⠀⠀⠀⠀⠀⠀⠀⢀⣀⠴⠎⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠈⠉⠓⠲⠴⠇⠈⠳⢦⣄⣀⠉⠙⠛⢿⣿⣿⣿⣿⠀⢀⣀⣀⣤⡴⣶⡞⠉⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢸⡆⠉⠉⠁⠒⠒⠛⠛⠋⠉⣿⠛⠋⠁⠀⠀⠀⠹⣄⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢸⠁⠀⠀⠀⢄⠀⠀⠀⢀⠄⣷⠀⠀⠀⠀⠀⠀⠀⠈⠛⢦⡀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢰⠇⠀⠀⠀⠀⠀⠑⢤⠔⠁⠀⣿⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠙⢦⡀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⡎⠀⠀⠀⠀⠀⢀⠔⠁⠱⢄⠀⣿⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠙⣄⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⡎⠀⠀⠀⠀⠀⠐⠁⠀⠀⠀⠀⠁⣿⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠈⢳⡀⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⣾⠤⣴⠞⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⣿⡆⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠝⣆⠀⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢘⠈⠀⡸⠀⠀⠀⠀⠀⠀⠀⠀⠀⢳⣀⠸⣿⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠘⣤⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢧⠀⢀⡀⠀⠀⠀⠀⠀⢦⡀⣯⠛⠛⠀⠀⠀⠀⢠⡄⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡼⡄⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢸⡄⣼⠁⠀⠀⠀⠀⠀⠀⣹⠃⠀⠀⠀⠀⠀⠀⢸⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠐⣹⡀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢹⣿⡆⠀⠀⠀⡆⠀⠀⣿⠀⠀⠀⠀⠀⠀⢀⣿⢃⣀⠴⠶⠒⠀⠀⠀⠀⠀⠀⠀⢳⣷⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⣀⡠⠴⣶⡒⠲⣾⣇⠀⢀⡾⠀⠀⢀⡇⠀⠀⠀⠀⠀⣀⣾⡿⠋⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢹⡀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⢀⡤⠒⠉⠁⠀⠀⢈⣉⡷⣾⣿⣦⣾⣧⠀⠀⣸⣷⣦⣤⣤⣶⣿⣿⡟⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⣾⡏⠲⣄⡀⠀
|
||||||
|
⠀⠀⠀⠀⠀⣠⠞⠁⠀⠀⠀⠀⠀⠀⠀⠈⠛⢻⣿⣿⣿⣿⣷⣤⣿⣾⢼⣿⣿⣷⣾⡟⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⣿⡇⠈⣿⢿⣦
|
||||||
|
⠀⠀⠀⢀⠞⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢸⣿⣿⣿⣮⣿⣿⢿⣥⣾⣿⣿⣿⣿⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢠⣼⢹⠀⠀⡛⣿⠋
|
||||||
|
⠀⠀⢠⡏⣀⣀⡠⠤⠖⠀⠀⠀⠀⠀⠀⠀⠲⣿⣿⣿⣿⣿⣿⣿⡿⣿⣯⣿⣿⣿⣿⡄⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⣀⡴⠋⠀⡿⠀⠀⡿⣿⠀
|
||||||
|
⠀⠀⣟⠿⠉⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⣸⣿⣿⣿⣹⣿⣿⣿⣮⣻⣿⣿⣿⣿⣷⠀⠀⠀⠀⠀⠀⢀⣀⠤⠴⠾⠋⠀⠀⣼⠃⢀⣤⣿⣿⠀
|
||||||
|
⠀⠀⣿⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⣶⣿⣿⣿⣿⣿⣿⡗⣿⣟⣿⣿⣿⣿⣿⣿⣧⠀⠀⠀⠀⠀⠈⠁⠀⠀⠀⠀⠀⣴⠋⠀⣾⡷⠋⠁⠀
|
||||||
|
⠀⠀⠛⠛⠛⠛⠒⠒⠒⠒⠂⠠⠤⠤⠤⠤⢼⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣦⣄⠀⠀⠀⠀⠀⠀⢀⣤⠿⠷⠒⠛⠉⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠈⠛⠛⠛⠻⣿⣿⣿⣿⠟⠋⢻⣿⣿⣿⣿⣿⣇⣿⣿⣿⣿⠿⠟⠋⠉⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
||||||
23
homes/data/ascii-art/fox-9.txt
Normal file
23
homes/data/ascii-art/fox-9.txt
Normal file
|
|
@ -0,0 +1,23 @@
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⣀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⣿⠋⠛⢶⣤⣀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⣠⣤⣤⣄⡀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠸⡆⠀⠀⠉⠻⠷⣄⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⣠⡾⠋⢡⣀⠈⠙⣷⡄⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢻⠠⢤⣀⠀⠀⠈⢳⣦⣀⠀⠀⠀⠀⠀⠀⠀⠀⠀⣰⠟⠈⠀⡁⢻⡓⠘⢿⣷⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠸⡇⠀⠾⠄⠀⠀⠀⣿⣿⣟⡲⣤⡀⠀⠀⠀⠀⣰⣯⣤⠎⠰⡇⠀⣳⠀⠀⢻⣇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢿⠀⠰⠦⣤⣀⠀⠈⠏⢿⡑⣌⡟⣦⡀⠀⣴⡟⠾⠓⠒⠒⠦⡀⢹⣇⠀⠘⣿⡀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠘⡆⣸⣾⣿⣿⣦⣄⡀⠈⣿⡈⣻⡏⢽⣾⢻⠁⢀⠀⠀⢀⣠⣝⣭⣿⠀⠀⣿⣷⡀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠹⡍⠉⠵⢾⡗⠉⢧⢀⠻⣷⣿⣇⡾⠃⠘⠀⣄⠐⠀⠶⢟⣿⣿⣿⠀⠀⣿⣿⡱⣄⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⡻⣦⡀⠸⢯⠃⠈⠟⠀⠇⠀⠻⠃⠀⠀⢸⡿⠛⢰⣾⣿⣿⣿⠋⠀⣸⣿⡿⢽⢿⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠹⣟⡙⢶⡮⠛⠀⠀⠀⠀⠀⠀⠀⠀⠀⡟⠁⢀⣾⢹⣿⠋⠛⠀⢠⣥⣿⡄⠘⢻⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠌⠀⠀⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⣀⠼⠉⠈⠀⠀⠀⠀⢸⣅⣿⠿⠂⢸⡆⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢈⣿⠃⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠰⡆⠀⣀⣀⣀⣼⡿⠻⠀⠁⠀⢿⡄⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⣿⠃⠀⠀⠀⠀⠀⠀⠀⢀⣠⠀⠀⠀⠀⠀⠀⠀⠀⠉⠣⣿⣍⣭⣉⠀⠀⠭⠖⢦⣼⣧⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠈⠛⢷⡆⠀⠀⠀⠀⠀⣸⣿⡶⡶⢤⣄⣀⣸⢧⠀⠀⠀⠑⣦⣀⢪⡑⠦⡀⠀⠀⢸⣿⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢸⠾⡟⠀⠀⠀⠀⣠⣿⡿⠿⠷⠚⠉⠁⢉⠻⢽⣟⣀⠀⠀⠙⣦⡙⣷⡈⠣⡀⠸⣏⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠘⣾⠃⠀⠀⢠⣴⣿⡉⠉⠀⠀⠀⠀⠐⠛⠓⠀⠘⠛⠿⣶⡄⢹⣷⡜⣧⠀⠈⠀⢻⡄⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⡾⠃⠀⠀⠀⢹⡆⢿⡆⠀⠀⠀⠀⣀⣀⣀⠀⠀⠀⠀⠀⠀⠙⢦⠻⡹⡌⢧⡀⠀⢸⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⣴⠏⠀⠀⠀⠀⠀⣸⣷⣻⣷⣄⣤⠴⠒⠀⠠⠴⠤⠆⠀⠀⢦⣀⠀⠀⢳⡿⢿⡏⠳⣶⢸⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢠⣾⣁⣀⠀⠀⣀⣀⣼⣯⣽⣿⠙⠿⠛⣠⣴⡄⠀⠀⠀⠐⠀⠀⢠⢹⠀⠀⠀⠓⢸⢧⠀⢹⣼⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢺⣧⣽⣿⣿⠞⠋⠙⠛⠋⠿⢁⣠⣴⣋⣡⡤⠤⠤⠤⠤⠤⠤⣀⡈⢳⡇⠀⠀⠀⠸⣿⠀⣼⡿⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠙⣿⣿⣉⠀⠀⢀⣀⣤⣶⠿⠛⠋⠉⠀⠀⠀⠀⠀⠀⠀⠀⠈⠉⠙⠳⢤⡀⠀⠀⢹⣰⡿⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠈⠉⠉⠛⠻⠟⠊⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠈⠑⢧⣾⠏⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
||||||
14
homes/data/ascii-art/moon-1.txt
Normal file
14
homes/data/ascii-art/moon-1.txt
Normal file
|
|
@ -0,0 +1,14 @@
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⣀⣤⡴⠶⠿⠛⢏⡿⠖⠂⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⢀⡴⣞⠯⠉⠈⠀⣠⡶⠊⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⣠⣴⠟⠙⠈⣎⡹⠂⣴⠋⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⢠⣯⡟⢚⣀⠀⠀⠀⡰⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⡿⡃⢋⣌⠂⠈⠆⡠⡎⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⣸⢿⠎⢰⡈⠀⠈⠀⣹⠃⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⣸⣿⡄⠷⣠⠀⠀⠀⡸⡗⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⢹⣾⣿⣷⣛⠀⠀⠀⣜⣷⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⠸⣿⢻⣏⠸⡃⠀⠀⠈⢹⢧⡀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⢻⣿⡮⣠⣗⠒⠤⠀⠀⠹⣳⣤⡀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⣼⢿⣗⣧⣦⢤⠇⢀⣤⣄⠙⣿⡦⣄⠀⠀⠀⠀⠀⠀⠀⠀⢀⣤⠄
|
||||||
|
⠀⠀⠈⠛⢏⣷⣶⣜⣤⣈⠂⠜⠀⢀⣀⡉⡭⠯⠖⠲⠒⢶⢖⣯⠟⠁⠀
|
||||||
|
⠀⠀⠀⠀⠀⠙⠻⣿⣿⣷⣷⣯⣔⡿⣃⠦⡵⣠⠠⢤⣤⠿⠋⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠉⠛⠓⠿⠽⣷⣿⣾⡿⠞⠛⠉⠀⠀⠀⠀⠀⠀⠀
|
||||||
7
homes/data/ascii-art/nixos-small.txt
Normal file
7
homes/data/ascii-art/nixos-small.txt
Normal file
|
|
@ -0,0 +1,7 @@
|
||||||
|
⠀⠀\\⠀⠀\\⠀//⠀⠀
|
||||||
|
⠀==\\__\\/⠀//
|
||||||
|
⠀⠀⠀//⠀⠀⠀\\//⠀
|
||||||
|
==//⠀⠀⠀⠀⠀//==
|
||||||
|
⠀//\\___//⠀⠀⠀
|
||||||
|
//⠀/\\⠀⠀\\==⠀
|
||||||
|
⠀⠀//⠀\\⠀⠀\\⠀⠀
|
||||||
10
homes/data/ascii-art/puppy-1.txt
Normal file
10
homes/data/ascii-art/puppy-1.txt
Normal file
|
|
@ -0,0 +1,10 @@
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⣠⣄⢀⡀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢿⣿⣿⡿⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⣀⣀⣤⠖⠛⠉⠉⠉⠉⠉⠙⠒⠦⣿⣏⣀⠀⠀⠀⠀
|
||||||
|
⠀⠀⣠⠞⠁⠀⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠈⢵⡄⠀⠀
|
||||||
|
⠀⢰⣯⠀⠀⢀⠂⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⣀⠀⠀⣿⠀⠀
|
||||||
|
⠀⠈⣇⢀⢠⠇⠀⣶⡶⠄⠀⠀⠀⢠⣶⡶⠀⠀⣸⣀⣼⠟⠀⠀
|
||||||
|
⠀⠀⠙⠛⠾⡆⠀⠙⠛⠃⠀⠀⠀⠀⠙⠋⠀⠀⣹⠟⠁⠀⠀⠀
|
||||||
|
⢀⡴⠚⠉⠛⢿⠀⠀⠀⠀⢿⣿⠆⠀⠀⠀⠀⢀⣿⠋⠉⠉⢳⡄
|
||||||
|
⢾⡀⡄⠀⣄⡼⠻⢧⠤⣤⠤⠤⣤⣠⣦⣾⠶⠞⢿⣤⡄⣠⣀⡷
|
||||||
|
⠈⠙⠛⠋⠉⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠈⠉⠉⠉⠀
|
||||||
18
homes/data/ascii-art/puppy-2.txt
Normal file
18
homes/data/ascii-art/puppy-2.txt
Normal file
|
|
@ -0,0 +1,18 @@
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡠⠤⣄⣀⡤⠤⠤⡀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⣀⣀⣀⣀⣀⡀⠀⡎⠀⠀⠀⠉⠀⠀⠀⠙⡄⠀
|
||||||
|
⠀⢠⠖⠉⠓⢦⡏⠉⢆⡤⠒⠋⠉⠁⠀⠀⠀⠀⠈⠑⠃⠀⠀⠀⠀⠀⠀⠀⠀⠱⠀
|
||||||
|
⢠⠃⠀⠀⠀⠀⠀⠀⢨⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇
|
||||||
|
⡜⠀⠀⠀⠀⠀⠀⠀⡜⠀⠀⢠⠆⠀⠀⠀⠀⠀⠀⠀⠀⡄⠀⠀⠀⠀⠀⠀⠀⠀⡇
|
||||||
|
⡇⠀⠀⠀⠀⠀⠀⡸⠁⠀⠰⠥⠤⡄⠀⠀⠀⠀⠀⠀⠀⠈⢆⠀⠀⠀⠀⠀⠀⠀⡇
|
||||||
|
⡃⠀⠀⠀⠀⠀⢠⠃⠀⠀⠀⠀⢸⡁⠀⠀⡴⠀⠀⠀⠀⠀⠀⠣⢄⡀⠀⠀⠀⠀⡇
|
||||||
|
⡇⠀⠀⠀⠀⢀⠏⠀⠀⠀⠀⠀⠀⠉⠉⠉⠀⠀⠀⠀⠀⠀⠀⠀⠀⠉⢲⠒⠒⠋⠁
|
||||||
|
⢱⠀⠀⢀⡴⠁⢠⡤⢄⡀⠀⠀⠀⠀⠀⠀⠀⠀⠀⣀⡤⣔⠖⠋⠁⠀⠘⣆⠀⠀⠀
|
||||||
|
⠀⠉⢩⠃⠀⠀⠀⠉⠃⠚⠭⣆⡀⠀⠀⠀⠀⠀⠈⠓⠉⠀⠀⠀⠀⠀⠠⡞⠁⠀⠀
|
||||||
|
⠀⠰⠧⠤⢄⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠉⢆⠀⠀
|
||||||
|
⠀⠀⠀⠀⡎⠀⠀⠀⠀⠀⠀⠀⠀⣠⣶⣿⡯⠗⠀⠀⠀⠀⠀⠀⠀⠀⢠⠖⠚⠀⠀
|
||||||
|
⠀⠀⠀⢸⠀⠀⣀⡀⠀⠀⠀⠀⠀⠀⠉⠉⠁⠀⠀⠀⢀⠀⠀⠀⠀⠀⢨⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠈⠉⠉⠁⡇⠀⠀⠀⠀⢦⡀⢀⡤⢄⣀⣀⡴⢋⣀⡤⠖⠊⠉⠙⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠛⠉⠉⣉⠭⠉⠋⡏⠀⠀⢀⡇⠈⠓⠦⣄⠀⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠀⡴⠁⠀⠀⠀⠙⠒⠒⠉⠀⠀⠀⠀⠈⠳⣄⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⢀⡜⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠈⢧⡀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠈⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
||||||
35
homes/data/ascii-art/puppy-3.txt
Normal file
35
homes/data/ascii-art/puppy-3.txt
Normal file
|
|
@ -0,0 +1,35 @@
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⣴⣻⠟⠛⠛⠳⣯⡓⣆⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⣞⡿⠋⠀⠀⠀⠀⠀⠻⣮⢳⡀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⣀⢴⣿⣭⣭⣟⠶⣄⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢠⣾⡿⠁⠀⠀⠀⠀⡀⠀⠀⠘⢷⡹⡄⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⣰⣻⠟⠁⠀⠀⠈⠻⢦⡑⢄⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢠⣞⡾⠁⠀⠀⠀⠀⢠⡿⠀⠠⠀⠈⢷⡹⡄⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⣸⣳⠏⠀⠀⠀⠀⠀⠀⠈⠹⣦⡓⢄⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢠⣞⣾⠁⠀⠀⠀⠀⢀⣿⠃⢀⠁⠠⡀⠈⣷⣹⡀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⢠⣯⡟⠀⠀⠀⣤⠀⠀⠀⠀⠀⠈⠻⣮⡣⡄⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡜⣼⠃⠀⠀⠀⠀⠀⣼⡟⢀⠠⠐⠀⢡⠀⠘⣷⢳⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⣼⣿⠃⠀⣴⠀⠹⣷⡀⠀⠀⠀⠀⠀⠈⢷⣜⢦⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⣼⣿⠏⠀⠀⠀⠀⠀⢰⣿⠀⠄⠂⠐⡈⠀⢃⠀⢹⣎⣇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⡟⣿⠀⠀⠏⠀⡀⠻⣷⡀⠀⠀⠀⠀⠀⠈⢻⣌⢦⡀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⣏⡿⠀⠀⠀⠀⠀⠀⣸⡟⠀⠰⠀⠂⠡⢀⠸⡀⠈⣿⢿⡀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⢸⣟⡏⠀⣠⠂⠐⠀⡀⠙⣿⡄⠀⠀⠀⠀⠀⠀⠙⣧⡳⡄⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⣾⣿⠃⠀⠀⠀⠀⠀⠀⣿⠇⡂⠁⠄⡁⠐⠠⠀⢡⠀⠸⣏⣧⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⢸⣿⡇⠀⣟⠀⠠⠁⠀⠄⡈⢿⣆⠐⠀⠀⠀⠀⠀⠈⢿⡜⢦⣀⣤⢴⣖⣶⣿⣿⣿⣿⣿⡇⠀⠀⠀⠀⠀⠀⠀⣿⠀⡇⠈⡐⠀⠌⠐⠠⠘⡆⠀⢿⣼⡆⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⢸⣿⡇⠀⡯⠀⢂⠠⠁⠠⠀⠌⢿⣆⠀⠀⠀⠀⠀⠀⣀⣿⣾⡿⠛⠋⠉⠉⢹⡄⠀⢠⡿⠀⠀⠀⠀⠀⠀⠀⠀⣿⡄⣠⣐⡀⠁⠌⠠⢁⠀⢣⠀⠸⣏⣇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⢸⣿⡇⠀⢃⠐⠀⠄⠠⠁⡐⠈⡈⣿⡆⠀⠀⢀⣴⠿⠛⠉⢸⡇⠀⠀⠀⠀⢸⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠿⢟⠛⢻⡧⠐⠈⡐⠠⢀⠂⠆⠀⣿⣽⡄⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⢸⣿⡇⠀⠀⠂⢈⠀⢂⠐⠀⢂⠐⢸⣧⠀⠀⠀⠀⠀⠐⠀⢸⡁⠀⠀⠀⠀⠈⡗⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⣼⣧⣴⣤⡀⠂⢂⠀⡃⠀⢸⣿⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⠘⣿⡇⠀⠀⠡⠀⠂⠄⠂⢡⣾⠿⠿⠿⠀⠀⠀⠀⠀⠀⠀⢸⡇⠀⠀⠀⠀⠀⣟⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠸⠋⠉⠉⣿⡇⠀⠡⠀⢸⠀⠈⣧⣿⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⡿⣿⠀⠠⠁⠐⠠⠐⠠⡘⢿⣤⠀⠀⠀⠀⠀⠀⠀⠀⠀⠈⣇⠀⠀⠀⠀⠀⢻⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢰⡟⠀⢈⠐⠠⠈⠀⠀⣿⢸⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⣿⣿⠀⠀⡃⢀⠂⠀⣿⡿⠛⠿⠶⠀⠀⠀⠀⠀⠀⠀⠀⠀⢻⡀⠀⠀⠀⠀⠘⣧⠀⠀⠀⠀⠀⠀⣀⣀⠀⠀⠀⠀⠀⠀⠀⠈⢷⡀⢀⠈⠄⠐⡀⠀⢼⡾⣇⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⢿⣿⡇⠀⡇⠀⡀⠂⢹⣷⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⣸⡇⠀⠀⠀⠀⠀⠈⠳⣄⡀⠀⢀⣾⣿⣿⣿⣦⡀⠀⠀⠀⠀⠀⠈⢿⡄⠢⠐⠠⠀⠀⢸⡇⣿⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⢸⣿⣧⠀⠰⠀⠠⠐⠀⠹⣧⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⣠⠟⠀⠀⠀⠀⠀⠀⠀⠀⠈⠙⠶⣾⣿⣿⣿⣿⣿⣷⠀⠀⠀⠀⠀⠀⠘⢿⣄⠂⠐⠀⠀⣼⢧⡟⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠈⣿⣿⠀⠘⠄⠐⠀⠌⢠⡿⠀⠀⠀⠀⣀⣤⣦⣶⣤⣴⠏⠀⣀⣤⣴⣶⣶⣶⣦⣤⡀⠀⠀⠙⢿⣿⣿⣿⣿⡿⠀⠀⠀⠀⠀⠀⠀⠜⣿⡀⠈⠀⢠⣿⣿⠁⢀⡀⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠸⣿⣇⠀⠻⡀⠈⠀⣿⠃⠀⠀⢠⣾⣿⣿⡿⢿⣿⠏⢠⣾⣿⣿⣿⣿⣿⣿⣿⣿⣿⠀⠀⠀⠀⠉⢿⡛⠉⠀⠀⠀⠀⠀⠀⠀⠀⠐⠘⣿⣀⣴⣿⣿⣿⣿⣿⣭⣟⢦⣀⣀⣀⠀⠀
|
||||||
|
⠀⠀⠀⢻⣻⣆⠀⠱⣀⢩⣿⠀⠀⠀⠠⠟⠋⠁⠀⣰⠃⠀⠸⣿⣿⣿⣿⣿⣿⣿⣿⣿⡿⠀⠀⠀⠀⠀⠈⢷⡀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢹⣿⣿⡟⠙⣿⣿⠁⠀⢹⣿⡿⠿⣯⡻⡆
|
||||||
|
⠀⠀⠀⠈⢻⣻⣦⠀⠉⢸⡗⠀⠀⠀⠀⠀⠀⠀⢠⡟⠀⠀⠀⠈⠛⠿⣿⣿⣿⠿⠛⠉⠀⠀⠀⠀⣀⠀⠀⠈⣇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⣿⣿⡶⠀⣿⣿⡀⠐⠈⢁⠠⠀⣼⣇⡇
|
||||||
|
⠀⠀⠀⠀⠀⠙⢽⡷⣦⣽⡇⠀⠀⠀⠀⠀⠀⠀⢰⡇⢀⠀⠀⠀⠀⠀⠀⠀⢀⠀⠀⠀⠀⠀⠀⠀⣿⠀⠀⠀⠸⣆⠀⠀⠀⠀⠀⠀⠀⠀⠀⠈⠻⢿⣝⣿⡼⣿⣧⡐⠈⣠⣤⢾⣫⠟⠁
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠙⢻⣿⠇⠀⠀⠀⠀⠀⠀⠀⢸⠇⠘⣧⠀⠀⠀⠀⠀⢀⣾⣧⣄⣀⢀⣀⣠⣾⠋⠀⠀⠀⠀⠙⢦⣀⠀⠀⠀⠀⠀⠀⠀⠀⣠⣾⣻⡇⠀⠘⢿⣿⣛⡿⠷⠋⠁⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⡾⣿⠀⠀⠀⠀⠀⠀⠀⢠⡟⠀⠀⠈⠳⣶⣤⡴⣾⢿⡹⢮⡝⣯⢻⣽⣿⣿⣄⠀⠀⠀⠀⠀⠀⠉⠓⠦⣤⣄⣀⣀⣠⣤⠿⢻⡞⣷⠀⠀⠀⠉⠁⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⢀⣾⣷⣿⠀⠀⠀⠀⠀⣀⡴⠋⠀⠀⠀⠀⠀⠹⣷⡹⣎⢷⡹⢧⣻⣼⠿⣿⣄⠉⠙⢷⡄⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⣾⣿⡿⠃⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⢻⣽⣧⣤⣀⣀⣠⡴⠞⠋⠀⠀⠀⠀⠀⠀⠀⠀⠘⠻⣯⣞⣭⣻⣟⣷⡀⢀⠛⢿⡄⢸⣿⠀⠀⠀⠀⠀⠀⠀⠀⠀⠐⣶⣶⣶⣿⡿⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠈⢿⣿⡿⠛⠛⠋⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠉⠛⠛⠛⠛⠻⣧⡈⠐⢈⣡⣾⠏⠀⠀⠀⠀⠀⠀⠀⣀⣤⣶⣯⠿⠟⠋⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠘⢿⣓⣶⣆⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠉⠛⠻⠛⠋⠁⠀⠀⠀⠀⠀⠀⠶⠛⠉⢸⣿⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠉⠻⣿⣺⣿⣿⣻⢦⣤⣤⣀⣀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⣸⢿⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠉⢿⣿⣧⠀⠉⠉⠉⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢠⣿⣿⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡿⣾⠹⣧⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⣾⠛⣯⣷⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢈⣷⡿⠀⠘⠻⣤⡀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⣠⠟⠁⠀⢿⣸⡀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠸⣿⡇⠀⠀⠖⠀⠙⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠈⠁⢶⠀⠀⢸⣿⠇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠈⠉⠉⠙⠒⠒⠒⠖⠶⠦⠤⠤⢤⡤⣤⠤⣤⢤⡤⣤⢤⡤⠤⠤⠤⠴⠶⠒⠒⠒⠒⠊⠉⠉⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
||||||
27
homes/data/ascii-art/woman-with-gun.txt
Normal file
27
homes/data/ascii-art/woman-with-gun.txt
Normal file
|
|
@ -0,0 +1,27 @@
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⣠⣄⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢰⣶⢤⣀⠀⠀⢀⣤⣾⢿⣿⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠸⣿⣀⡼⠟⠋⠉⢝⠃⢸⣛⣇⠀⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⣿⠋⠰⠀⠀⠀⠈⢧⣀⠹⠹⣆⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢠⡇⢀⡇⠀⢠⡀⠀⠘⣿⡌⠇⣿⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⣀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⣼⢁⡾⢳⣦⠘⣟⣆⡀⣿⣷⢠⢺⡇⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⣽⣧⡀⠀⠀⢀⣴⣞⡛⣿⣿⣿⡟⢿⠿⠁⠉⠛⢉⣿⣿⡟⢳⣿⠿⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢰⣶⣦⣤⣤⣼⣿⣿⣿⣿⣿⠛⠿⣿⣿⣿⣿⣿⣷⣾⡇⠀⠀⠠⠿⣯⣿⣷⣾⣟⣀⣤⡀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠘⠛⠿⢿⣿⠿⠿⠆⠀⠙⢿⣿⣿⠿⢿⣿⣦⣤⣴⣾⡿⣻⡿⠛⣿⣶⣾⡧⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠙⠳⠶⣤⣀⣀⠀⠙⠷⣀⣼⣿⣿⣿⣿⣥⣾⣿⣧⣼⣿⣿⣿⣷⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢸⣻⣿⠑⢦⡀⠈⠻⢧⣿⣿⠋⠼⢿⣿⣿⣿⣿⣿⣿⣿⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⣿⣿⣿⠉⣿⡷⢤⡀⠀⠉⠛⠚⣁⣌⣿⣿⣿⣿⣿⣿⣿⣷⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⣠⠔⠛⠓⢿⠇⠀⢠⣀⡴⠛⢦⣄⠀⢀⣨⣿⣿⣿⣿⣿⣿⣿⣿⣿⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⣠⠞⠁⠀⠀⠀⠘⣶⣀⣼⣿⣉⠙⠚⢿⡿⠿⣄⣿⣏⢻⣿⣿⣿⣿⠃⣏⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⣠⠞⠁⠀⠀⠀⣤⡀⠀⠈⢧⠈⣟⣿⣤⡀⠠⡇⠀⠀⣿⣿⡆⠻⣿⡿⠻⢾⠋⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⣠⠞⠁⠀⠀⠀⣠⠞⠉⣿⣦⡀⢸⠀⠹⣝⡻⣿⣿⠃⠀⠀⣸⣿⠣⡄⠹⣆⠀⠘⢇⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡠⠞⠙⢄⠀⣠⡴⠚⠁⠀⠀⢛⣹⣿⣎⠀⠀⠀⠑⠚⡛⠀⠀⠀⣹⣿⡷⠄⠀⠈⢷⣄⠈⣷⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⢀⣤⣤⣀⡴⠋⠀⣀⣴⠾⠋⠁⠀⠀⠀⠀⠀⡼⣻⣿⣿⣧⡀⠀⠀⢠⠇⠤⣀⣠⣿⣿⡀⠀⠀⠀⢸⠏⠀⣿⡄⠀
|
||||||
|
⣴⣶⣶⣶⣶⣿⣿⣿⣿⣤⣀⣬⡟⠁⠀⠀⠀⠀⢰⡶⠤⠞⣿⣿⣻⣿⣿⣷⣄⢀⡞⠀⠀⣰⡿⢻⣿⡿⢿⣷⡆⠀⣀⡴⠋⢙⣆
|
||||||
|
⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⠁⠀⠀⠀⠀⠀⠀⠙⠲⢄⣉⣿⣿⡿⣿⣿⣿⣿⠇⠀⢰⣿⠳⣼⣿⠃⣠⠀⠙⣆⠀⠀⠀⢻⡟
|
||||||
|
⠀⠉⠛⠿⠿⣿⣿⣿⣿⣿⣿⣿⡆⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠈⠉⠉⠀⠀⢈⡝⠀⢠⣿⡇⠀⢻⡟⠚⠁⠀⠄⠈⢧⡴⠀⠈⣧
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠙⠿⠿⠿⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⣤⣾⣿⣿⣶⣴⣿⡉⠉⠙⠳⡀⠀⠀⠀⣒⣚⠡⢒⣶⡿
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠈⣻⣿⣿⣿⣿⣿⣿⡀⠀⠀⠀⠉⠲⠤⠤⣄⣸⡤⠔⠋⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⣠⣾⣿⣿⣿⣿⣿⣿⣿⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢰⣿⣿⣿⣿⣿⣿⣿⣿⠿⠃⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠸⣿⣿⣿⣿⣿⣿⣿⠟⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠈⠉⠉⠉⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
||||||
|
|
@ -37,6 +37,7 @@ tooltip label {
|
||||||
#network,
|
#network,
|
||||||
#workspaces,
|
#workspaces,
|
||||||
#taskbar,
|
#taskbar,
|
||||||
|
#submap,
|
||||||
#cpu,
|
#cpu,
|
||||||
#pulseaudio,
|
#pulseaudio,
|
||||||
#privacy,
|
#privacy,
|
||||||
|
|
@ -74,6 +75,7 @@ right-side modules
|
||||||
#cpu,
|
#cpu,
|
||||||
#pulseaudio,
|
#pulseaudio,
|
||||||
#tray,
|
#tray,
|
||||||
|
#submap,
|
||||||
#privacy {
|
#privacy {
|
||||||
margin: 4px 0px 4px 4px;
|
margin: 4px 0px 4px 4px;
|
||||||
}
|
}
|
||||||
|
|
@ -96,6 +98,10 @@ right-side modules
|
||||||
border: none;
|
border: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#submap.name {
|
||||||
|
color: @colorfg;
|
||||||
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
connects the workspace and taskbar together :3
|
connects the workspace and taskbar together :3
|
||||||
*/
|
*/
|
||||||
|
|
@ -114,7 +120,7 @@ right-side modules
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#cpu {
|
#cpu {
|
||||||
margin: 4px 0 4px 0;
|
margin: 4px 0 4px 4px;
|
||||||
border-radius: 32px 0px 0px 32px;
|
border-radius: 32px 0px 0px 32px;
|
||||||
}
|
}
|
||||||
#memory {
|
#memory {
|
||||||
|
|
|
||||||
|
|
@ -8,12 +8,18 @@
|
||||||
height = 20;
|
height = 20;
|
||||||
modules-left = ["hyprland/workspaces" "wlr/taskbar" "custom/media"];
|
modules-left = ["hyprland/workspaces" "wlr/taskbar" "custom/media"];
|
||||||
modules-center = ["clock"];
|
modules-center = ["clock"];
|
||||||
modules-right = ["cpu" "memory" "network" "pulseaudio" "privacy" "tray"];
|
modules-right = ["hyprland/submap" "cpu" "memory" "network" "pulseaudio" "privacy" "tray"];
|
||||||
|
|
||||||
# left
|
# left
|
||||||
"hyprland/workspaces" = {
|
"hyprland/workspaces" = {
|
||||||
format = "{id}";
|
format = "{id}";
|
||||||
};
|
};
|
||||||
|
"ext/workspaces" = {
|
||||||
|
# not enabled yet, hyprland and mango need two different configs ;-;
|
||||||
|
format = "{id}";
|
||||||
|
ignore-hidden = true;
|
||||||
|
on-click = "activate";
|
||||||
|
};
|
||||||
"wlr/taskbar" = {
|
"wlr/taskbar" = {
|
||||||
format = "{icon}";
|
format = "{icon}";
|
||||||
icon-size = 12;
|
icon-size = 12;
|
||||||
|
|
@ -33,6 +39,13 @@
|
||||||
};
|
};
|
||||||
|
|
||||||
# right
|
# right
|
||||||
|
"hyprland/submap" = {
|
||||||
|
format = "{}";
|
||||||
|
# always-on = true;
|
||||||
|
# default-submap = "normal";
|
||||||
|
max-length = 12;
|
||||||
|
tooltip = false;
|
||||||
|
};
|
||||||
"cpu" = {
|
"cpu" = {
|
||||||
format = " {usage}%";
|
format = " {usage}%";
|
||||||
interval = 1;
|
interval = 1;
|
||||||
|
|
@ -84,11 +97,6 @@
|
||||||
# fixes spotify not showing up when "close button should minimize the Spotify window" is false
|
# fixes spotify not showing up when "close button should minimize the Spotify window" is false
|
||||||
show-passive-items = true;
|
show-passive-items = true;
|
||||||
};
|
};
|
||||||
|
|
||||||
# i only enable this for debugging of window rules lol
|
|
||||||
"hyprland/window" = {
|
|
||||||
format = "{class} | {title}";
|
|
||||||
};
|
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
||||||
12
homes/modules/programs/alacritty/alacritty.toml
Normal file
12
homes/modules/programs/alacritty/alacritty.toml
Normal file
|
|
@ -0,0 +1,12 @@
|
||||||
|
[font]
|
||||||
|
size = 10
|
||||||
|
normal = { family = "DepartureMono Nerd Font Mono", style = "Regular" }
|
||||||
|
|
||||||
|
[general]
|
||||||
|
import = ["theme.toml"]
|
||||||
|
|
||||||
|
[mouse]
|
||||||
|
hide_when_typing = true
|
||||||
|
|
||||||
|
[scrolling]
|
||||||
|
history = 100000
|
||||||
10
homes/modules/programs/alacritty/default.nix
Normal file
10
homes/modules/programs/alacritty/default.nix
Normal file
|
|
@ -0,0 +1,10 @@
|
||||||
|
{upkgs, ...}: {
|
||||||
|
programs.alacritty = {
|
||||||
|
enable = true;
|
||||||
|
package = upkgs.alacritty-graphics;
|
||||||
|
};
|
||||||
|
|
||||||
|
xdg.configFile."alacritty/alacritty.toml" = {
|
||||||
|
source = ./alacritty.toml;
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
@ -7,4 +7,4 @@ enabled = true
|
||||||
show_message = false
|
show_message = false
|
||||||
|
|
||||||
[image_preview]
|
[image_preview]
|
||||||
protocol.type = "kitty"
|
protocol.type = "sixel"
|
||||||
|
|
|
||||||
|
|
@ -8,6 +8,19 @@ vim.opt.colorcolumn = "80"
|
||||||
require("plugins")
|
require("plugins")
|
||||||
require("lsp")
|
require("lsp")
|
||||||
|
|
||||||
|
vim.keymap.set("n", "<A-h>", function()
|
||||||
|
vim.cmd("wincmd h")
|
||||||
|
end)
|
||||||
|
vim.keymap.set("n", "<A-j>", function()
|
||||||
|
vim.cmd("wincmd j")
|
||||||
|
end)
|
||||||
|
vim.keymap.set("n", "<A-k>", function()
|
||||||
|
vim.cmd("wincmd k")
|
||||||
|
end)
|
||||||
|
vim.keymap.set("n", "<A-l>", function()
|
||||||
|
vim.cmd("wincmd l")
|
||||||
|
end)
|
||||||
|
|
||||||
local uv = vim.loop
|
local uv = vim.loop
|
||||||
local colorscheme_filepath = "/home/aurora/.cache/nvim/neovim-colors"
|
local colorscheme_filepath = "/home/aurora/.cache/nvim/neovim-colors"
|
||||||
local colors = {}
|
local colors = {}
|
||||||
|
|
|
||||||
|
|
@ -15,7 +15,22 @@ return {
|
||||||
|
|
||||||
blink.setup({
|
blink.setup({
|
||||||
keymap = {
|
keymap = {
|
||||||
preset = "default",
|
["<C-space>"] = { "show", "show_documentation", "hide_documentation" },
|
||||||
|
["<C-e>"] = { "hide", "fallback" },
|
||||||
|
["<C-y>"] = { "select_and_accept", "fallback" },
|
||||||
|
|
||||||
|
["<C-k>"] = { "select_prev", "fallback_to_mappings" },
|
||||||
|
["<C-j>"] = { "select_next", "fallback_to_mappings" },
|
||||||
|
["<Up>"] = { "select_prev", "fallback" },
|
||||||
|
["<Down>"] = { "select_next", "fallback" },
|
||||||
|
|
||||||
|
["<C-b>"] = { "scroll_documentation_up", "fallback" },
|
||||||
|
["<C-f>"] = { "scroll_documentation_down", "fallback" },
|
||||||
|
|
||||||
|
["<Tab>"] = { "snippet_forward", "fallback" },
|
||||||
|
["<S-Tab>"] = { "snippet_backward", "fallback" },
|
||||||
|
|
||||||
|
["<C-S-k>"] = { "show_signature", "hide_signature", "fallback" },
|
||||||
},
|
},
|
||||||
|
|
||||||
appearance = {
|
appearance = {
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,5 @@
|
||||||
vim.api.nvim_create_autocmd("FileType", {
|
vim.api.nvim_create_autocmd("FileType", {
|
||||||
pattern = "lua",
|
pattern = { "lua", "nix", "gleam" },
|
||||||
callback = function()
|
callback = function()
|
||||||
vim.opt_local.shiftwidth = 2
|
vim.opt_local.shiftwidth = 2
|
||||||
vim.opt_local.tabstop = 2
|
vim.opt_local.tabstop = 2
|
||||||
|
|
@ -7,11 +7,14 @@ vim.api.nvim_create_autocmd("FileType", {
|
||||||
end,
|
end,
|
||||||
})
|
})
|
||||||
|
|
||||||
vim.api.nvim_create_autocmd("FileType", {
|
vim.api.nvim_create_autocmd("User", {
|
||||||
pattern = "nix",
|
pattern = "TelescopePreviewerLoaded",
|
||||||
callback = function()
|
callback = function(args)
|
||||||
vim.opt_local.shiftwidth = 2
|
local ft = args.data.filetype
|
||||||
vim.opt_local.tabstop = 2
|
if vim.tbl_contains({ "lua", "nix", "gleam", "rust" }, ft) then
|
||||||
vim.opt_local.expandtab = true
|
vim.bo.shiftwidth = 2
|
||||||
|
vim.bo.tabstop = 2
|
||||||
|
vim.bo.expandtab = true
|
||||||
|
end
|
||||||
end,
|
end,
|
||||||
})
|
})
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,7 @@
|
||||||
local servers = {}
|
local servers = {}
|
||||||
|
|
||||||
servers.lua_ls = {
|
if nixCats("lang.lua.lsp") then
|
||||||
|
servers.lua_ls = {
|
||||||
settings = {
|
settings = {
|
||||||
Lua = {
|
Lua = {
|
||||||
formatters = {
|
formatters = {
|
||||||
|
|
@ -19,14 +20,18 @@ servers.lua_ls = {
|
||||||
},
|
},
|
||||||
telemetry = { enabled = false },
|
telemetry = { enabled = false },
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
|
end
|
||||||
|
|
||||||
servers.nil_ls = {
|
if nixCats("lang.nix.lsp") then
|
||||||
|
servers.nil_ls = {
|
||||||
settings = {},
|
settings = {},
|
||||||
}
|
}
|
||||||
|
end
|
||||||
|
|
||||||
local rust_analyzer_cmd = os.getenv("RUST_ANALYZER_CMD")
|
if nixCats("lang.rust.lsp") then
|
||||||
servers.rust_analyzer = {
|
local rust_analyzer_cmd = os.getenv("RUST_ANALYZER_CMD")
|
||||||
|
servers.rust_analyzer = {
|
||||||
cmd = { rust_analyzer_cmd },
|
cmd = { rust_analyzer_cmd },
|
||||||
settings = {
|
settings = {
|
||||||
server = {
|
server = {
|
||||||
|
|
@ -43,28 +48,38 @@ servers.rust_analyzer = {
|
||||||
enable = true,
|
enable = true,
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
|
end
|
||||||
|
|
||||||
servers.zls = {
|
if nixCats("lang.zig.lsp") then
|
||||||
|
servers.zls = {
|
||||||
settings = {},
|
settings = {},
|
||||||
}
|
}
|
||||||
|
end
|
||||||
|
|
||||||
local elixir_ls_cmd = os.getenv("ELIXIR_LS_CMD")
|
if nixCats("lang.elixir.lsp") then
|
||||||
servers.elixirls = {
|
local elixir_ls_cmd = os.getenv("ELIXIR_LS_CMD")
|
||||||
|
servers.elixirls = {
|
||||||
cmd = { elixir_ls_cmd },
|
cmd = { elixir_ls_cmd },
|
||||||
settings = {},
|
settings = {},
|
||||||
}
|
}
|
||||||
|
end
|
||||||
|
|
||||||
servers.gleam = {
|
if nixCats("lang.gleam.lsp") then
|
||||||
|
servers.gleam = {
|
||||||
settings = {},
|
settings = {},
|
||||||
}
|
}
|
||||||
|
end
|
||||||
|
|
||||||
servers.hls = {
|
if nixCats("lang.haskell.lsp") then
|
||||||
|
servers.hls = {
|
||||||
settings = {},
|
settings = {},
|
||||||
}
|
}
|
||||||
|
end
|
||||||
|
|
||||||
local java_home = os.getenv("JAVA_HOME")
|
if nixCats("lang.java.lsp") then
|
||||||
servers.jdtls = {
|
local java_home = os.getenv("JAVA_HOME")
|
||||||
|
servers.jdtls = {
|
||||||
settings = {
|
settings = {
|
||||||
java = {
|
java = {
|
||||||
contentProvider = { preferred = "fernflower" },
|
contentProvider = { preferred = "fernflower" },
|
||||||
|
|
@ -82,7 +97,14 @@ servers.jdtls = {
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
|
end
|
||||||
|
|
||||||
|
if nixCats("lang.protobuf.lsp") then
|
||||||
|
servers.protols = {
|
||||||
|
settings = {},
|
||||||
|
}
|
||||||
|
end
|
||||||
|
|
||||||
-- Taken from nixCats example:
|
-- Taken from nixCats example:
|
||||||
-- If you were to comment out this autocommand
|
-- If you were to comment out this autocommand
|
||||||
|
|
|
||||||
|
|
@ -8,13 +8,13 @@ return {
|
||||||
line = "<leader>cc",
|
line = "<leader>cc",
|
||||||
block = "<leader>bc",
|
block = "<leader>bc",
|
||||||
},
|
},
|
||||||
opLeader = {
|
opleader = {
|
||||||
line = "<leader>c",
|
line = "<leader>c",
|
||||||
block = "<leader>b",
|
block = "<leader>b",
|
||||||
},
|
},
|
||||||
extra = {
|
extra = {
|
||||||
above = "<leader>c0",
|
above = "<leader>c<S-o>",
|
||||||
below = "<leader>bo",
|
below = "<leader>co",
|
||||||
eol = "<leader>cA",
|
eol = "<leader>cA",
|
||||||
},
|
},
|
||||||
})
|
})
|
||||||
|
|
|
||||||
|
|
@ -1,8 +1,53 @@
|
||||||
|
vim.keymap.set("n", "<leader>P", function()
|
||||||
|
vim.api.nvim_exec_autocmds("User", { pattern = "ConformProject" })
|
||||||
|
vim.cmd("ConformProject")
|
||||||
|
end, { noremap = true, silent = true })
|
||||||
|
|
||||||
|
vim.api.nvim_create_user_command("ConformProject", function()
|
||||||
|
local conform = require("conform")
|
||||||
|
local root = vim.fn.getcwd()
|
||||||
|
|
||||||
|
-- respects .gitignore
|
||||||
|
local handle = io.popen(string.format("cd %s && git ls-files --cached --others --exclude-standard", root))
|
||||||
|
|
||||||
|
if not handle then
|
||||||
|
vim.notify("Failed to scan project files", vim.log.levels.ERROR)
|
||||||
|
return
|
||||||
|
end
|
||||||
|
|
||||||
|
local files = {}
|
||||||
|
for file in handle:lines() do
|
||||||
|
table.insert(files, vim.fn.fnamemodify(file, ":p"))
|
||||||
|
end
|
||||||
|
handle:close()
|
||||||
|
|
||||||
|
-- format each file
|
||||||
|
-- TODO: maybe run each formatter on the directory instead as it may be faster
|
||||||
|
-- although that would actually mean we can't count what files were formatted so i don't know
|
||||||
|
local formatted_count = 0
|
||||||
|
for _, filepath in ipairs(files) do
|
||||||
|
local bufnr = vim.fn.bufadd(filepath)
|
||||||
|
vim.fn.bufload(bufnr)
|
||||||
|
|
||||||
|
local ok, err = conform.format({ bufnr = bufnr })
|
||||||
|
if ok then
|
||||||
|
formatted_count = formatted_count + 1
|
||||||
|
-- Save the buffer
|
||||||
|
vim.api.nvim_buf_call(bufnr, function()
|
||||||
|
vim.cmd("write")
|
||||||
|
end)
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
vim.notify(string.format("Formatted %d files", formatted_count), vim.log.levels.INFO)
|
||||||
|
end, {})
|
||||||
|
|
||||||
-- docs -> https://github.com/stevearc/conform.nvim
|
-- docs -> https://github.com/stevearc/conform.nvim
|
||||||
return {
|
return {
|
||||||
{
|
{
|
||||||
"conform.nvim",
|
"conform.nvim",
|
||||||
enabled = nixCats("format") or false,
|
enabled = nixCats("format") or false,
|
||||||
|
event = "User ConformProject", -- also will load when we format the entire project yayayayy :333
|
||||||
keys = {
|
keys = {
|
||||||
{ "<leader>p", desc = "Format File (pretty :3)" },
|
{ "<leader>p", desc = "Format File (pretty :3)" },
|
||||||
},
|
},
|
||||||
|
|
@ -12,9 +57,11 @@ return {
|
||||||
conform.setup({
|
conform.setup({
|
||||||
formatters_by_ft = {
|
formatters_by_ft = {
|
||||||
lua = nixCats("lang.lua.format") and { "stylua" } or nil,
|
lua = nixCats("lang.lua.format") and { "stylua" } or nil,
|
||||||
nix = nixCats("lang.nix.format") and { "nixfmt" } or nil,
|
nix = nixCats("lang.nix.format") and { "alejandra" } or nil,
|
||||||
rust = nixCats("lang.rust.format") and { "rustfmt", lsp_format = "fallback" } or nil,
|
rust = nixCats("lang.rust.format") and { "rustfmt", lsp_format = "fallback" } or nil,
|
||||||
haskell = nixCats("lang.haskell.format") and { "ormolu" } or nil,
|
haskell = nixCats("lang.haskell.format") and { "ormolu" } or nil,
|
||||||
|
proto = nixCats("lang.protobuf.format") and { "buf" } or nil,
|
||||||
|
toml = nixCats("lang.toml.format") and { "taplo" } or nil,
|
||||||
},
|
},
|
||||||
format_on_save = {
|
format_on_save = {
|
||||||
timeout_ms = 500,
|
timeout_ms = 500,
|
||||||
|
|
|
||||||
24
homes/modules/programs/neovim/lua/plugins/git.lua
Normal file
24
homes/modules/programs/neovim/lua/plugins/git.lua
Normal file
|
|
@ -0,0 +1,24 @@
|
||||||
|
return {
|
||||||
|
{
|
||||||
|
"vim-fugitive",
|
||||||
|
enabled = nixCats("git") or false,
|
||||||
|
cmd = { "Git", "Gvdiffsplit" },
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"resolve-nvim",
|
||||||
|
enabled = nixCats("git") or false,
|
||||||
|
event = { "BufReadPre", "BufNewFile" },
|
||||||
|
after = function(plugin)
|
||||||
|
require("resolve").setup({
|
||||||
|
default_keymaps = false,
|
||||||
|
on_conflicts_resolved = function(info)
|
||||||
|
-- NOTE: am not sure if i wanna stage files automatically
|
||||||
|
-- local filepath = vim.api.nvim_buf_get_name(info.bufnr)
|
||||||
|
-- vim.fn.system({ "git", "add", filepath })
|
||||||
|
-- vim.notify("conflicts resolved :3 file staged yayayayy <3", vim.log.levels.INFO)
|
||||||
|
vim.notify("conflicts resolved :3", vim.log.levels.INFO)
|
||||||
|
end,
|
||||||
|
})
|
||||||
|
end,
|
||||||
|
},
|
||||||
|
}
|
||||||
|
|
@ -6,4 +6,5 @@ require("lze").load({
|
||||||
{ import = "plugins.mini-hipatterns" },
|
{ import = "plugins.mini-hipatterns" },
|
||||||
{ import = "plugins.format" },
|
{ import = "plugins.format" },
|
||||||
{ import = "plugins.comment" },
|
{ import = "plugins.comment" },
|
||||||
|
{ import = "plugins.git" },
|
||||||
})
|
})
|
||||||
|
|
|
||||||
|
|
@ -2,16 +2,14 @@
|
||||||
# https://github.com/BirdeeHub/nix-wrapper-modules
|
# https://github.com/BirdeeHub/nix-wrapper-modules
|
||||||
{
|
{
|
||||||
inputs,
|
inputs,
|
||||||
spkgs,
|
|
||||||
mpkgs,
|
mpkgs,
|
||||||
...
|
...
|
||||||
}:
|
}: let
|
||||||
let
|
inherit
|
||||||
inherit (inputs.nixcats)
|
(inputs.nixcats)
|
||||||
utils
|
utils
|
||||||
;
|
;
|
||||||
in
|
in {
|
||||||
{
|
|
||||||
imports = [
|
imports = [
|
||||||
inputs.nixcats.homeModule
|
inputs.nixcats.homeModule
|
||||||
];
|
];
|
||||||
|
|
@ -32,15 +30,14 @@ in
|
||||||
];
|
];
|
||||||
# see the packageDefinitions below.
|
# see the packageDefinitions below.
|
||||||
# This says which of those to install.
|
# This says which of those to install.
|
||||||
packageNames = [ "auroranvim" ];
|
packageNames = ["auroranvim"];
|
||||||
|
|
||||||
luaPath = "${./.}";
|
luaPath = "${./.}";
|
||||||
|
|
||||||
# the .replace vs .merge options are for modules based on existing configurations,
|
# the .replace vs .merge options are for modules based on existing configurations,
|
||||||
# they refer to how multiple categoryDefinitions get merged together by the module.
|
# they refer to how multiple categoryDefinitions get merged together by the module.
|
||||||
# for useage of this section, refer to :h nixCats.flake.outputs.categories
|
# for useage of this section, refer to :h nixCats.flake.outputs.categories
|
||||||
categoryDefinitions.replace =
|
categoryDefinitions.replace = {
|
||||||
{
|
|
||||||
pkgs,
|
pkgs,
|
||||||
settings,
|
settings,
|
||||||
categories,
|
categories,
|
||||||
|
|
@ -48,8 +45,7 @@ in
|
||||||
name,
|
name,
|
||||||
mkNvimPlugin,
|
mkNvimPlugin,
|
||||||
...
|
...
|
||||||
}@packageDef:
|
} @ packageDef: {
|
||||||
{
|
|
||||||
lspsAndRuntimeDeps = with pkgs; {
|
lspsAndRuntimeDeps = with pkgs; {
|
||||||
general = [
|
general = [
|
||||||
ripgrep
|
ripgrep
|
||||||
|
|
@ -60,41 +56,53 @@ in
|
||||||
];
|
];
|
||||||
lang = {
|
lang = {
|
||||||
lua = {
|
lua = {
|
||||||
lsp = [ lua-language-server ];
|
lsp = [lua-language-server];
|
||||||
format = [ stylua ];
|
format = [stylua];
|
||||||
};
|
};
|
||||||
nix = {
|
nix = {
|
||||||
lsp = [
|
lsp = [nil];
|
||||||
nil
|
format = [alejandra];
|
||||||
nix-doc # TODO: i forgot what this is for
|
docs = [nix-doc]; # TODO: i forgot how to integrate this into neovim
|
||||||
];
|
|
||||||
format = [ nixfmt ];
|
|
||||||
};
|
};
|
||||||
rust = {
|
rust = {
|
||||||
lsp = [
|
lsp = [cargo mpkgs.rust-analyzer];
|
||||||
cargo
|
# nightly rustfmt has nicer features :3
|
||||||
mpkgs.rust-analyzer
|
format = [inputs.fenix.packages.${system}.complete.rustfmt];
|
||||||
];
|
};
|
||||||
format = [ rustfmt ];
|
zig = {
|
||||||
|
lsp = [zls];
|
||||||
|
# TODO: needs formatter field
|
||||||
|
};
|
||||||
|
elixir = {
|
||||||
|
lsp = [elixir-ls];
|
||||||
|
# TODO: needs formatter field
|
||||||
|
};
|
||||||
|
gleam = {
|
||||||
|
lsp = [gleam];
|
||||||
|
# TODO: needs formatter field
|
||||||
};
|
};
|
||||||
zig = [
|
|
||||||
spkgs.zls # FIX: using spkgs version as zls is broken rn ;-;
|
|
||||||
];
|
|
||||||
elixir = [
|
|
||||||
elixir-ls
|
|
||||||
];
|
|
||||||
gleam = [
|
|
||||||
gleam
|
|
||||||
];
|
|
||||||
haskell = {
|
haskell = {
|
||||||
lsp = [ haskell-language-server ];
|
lsp = [haskell-language-server];
|
||||||
format = [ ormolu ];
|
format = [ormolu];
|
||||||
};
|
};
|
||||||
java = [
|
java = {
|
||||||
|
lsp = [
|
||||||
jdt-language-server
|
jdt-language-server
|
||||||
javaPackages.compiler.openjdk17
|
javaPackages.compiler.openjdk17
|
||||||
javaPackages.compiler.openjdk21
|
javaPackages.compiler.openjdk21
|
||||||
];
|
];
|
||||||
|
# TODO: needs formatter field
|
||||||
|
};
|
||||||
|
protobuf = {
|
||||||
|
lsp = [protols];
|
||||||
|
format = [buf];
|
||||||
|
};
|
||||||
|
toml = {
|
||||||
|
format = [taplo];
|
||||||
|
};
|
||||||
|
bash = {
|
||||||
|
lsp = [bash-language-server];
|
||||||
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
@ -114,8 +122,7 @@ in
|
||||||
};
|
};
|
||||||
|
|
||||||
optionalPlugins = with pkgs.vimPlugins; {
|
optionalPlugins = with pkgs.vimPlugins; {
|
||||||
general = [
|
general = [];
|
||||||
];
|
|
||||||
ui = [
|
ui = [
|
||||||
dressing-nvim
|
dressing-nvim
|
||||||
];
|
];
|
||||||
|
|
@ -155,6 +162,10 @@ in
|
||||||
comment = [
|
comment = [
|
||||||
comment-nvim
|
comment-nvim
|
||||||
];
|
];
|
||||||
|
git = [
|
||||||
|
resolve-nvim
|
||||||
|
vim-fugitive
|
||||||
|
];
|
||||||
lang = {
|
lang = {
|
||||||
java = [
|
java = [
|
||||||
nvim-jdtls
|
nvim-jdtls
|
||||||
|
|
@ -188,11 +199,7 @@ in
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
extraWrapperArgs = {
|
extraWrapperArgs = {};
|
||||||
test = [
|
|
||||||
''--set CATTESTVAR2 "It worked again!"''
|
|
||||||
];
|
|
||||||
};
|
|
||||||
# lists of the functions you would have passed to
|
# lists of the functions you would have passed to
|
||||||
# python.withPackages or lua.withPackages
|
# python.withPackages or lua.withPackages
|
||||||
|
|
||||||
|
|
@ -200,22 +207,16 @@ in
|
||||||
# in your lua config via
|
# in your lua config via
|
||||||
# vim.g.python3_host_prog
|
# vim.g.python3_host_prog
|
||||||
# or run from nvim terminal via :!<packagename>-python3
|
# or run from nvim terminal via :!<packagename>-python3
|
||||||
extraPython3Packages = {
|
extraPython3Packages = {};
|
||||||
test = _: [ ];
|
|
||||||
};
|
|
||||||
# populates $LUA_PATH and $LUA_CPATH
|
# populates $LUA_PATH and $LUA_CPATH
|
||||||
extraLuaPackages = {
|
extraLuaPackages = {};
|
||||||
test = [ (_: [ ]) ];
|
|
||||||
};
|
|
||||||
};
|
};
|
||||||
|
|
||||||
# see :help nixCats.flake.outputs.packageDefinitions
|
# see :help nixCats.flake.outputs.packageDefinitions
|
||||||
packageDefinitions.replace = {
|
packageDefinitions.replace = {
|
||||||
# these are the names of your packages
|
# these are the names of your packages
|
||||||
# you can include as many as you wish.
|
# you can include as many as you wish.
|
||||||
auroranvim =
|
auroranvim = {pkgs, ...}: {
|
||||||
{ pkgs, ... }:
|
|
||||||
{
|
|
||||||
# they contain a settings set defined above
|
# they contain a settings set defined above
|
||||||
# see :help nixCats.flake.outputs.settings
|
# see :help nixCats.flake.outputs.settings
|
||||||
settings = {
|
settings = {
|
||||||
|
|
@ -223,12 +224,10 @@ in
|
||||||
# IMPORTANT:
|
# IMPORTANT:
|
||||||
# your alias may not conflict with your other packages.
|
# your alias may not conflict with your other packages.
|
||||||
aliases = [
|
aliases = [
|
||||||
"auroravim"
|
|
||||||
"auravim"
|
"auravim"
|
||||||
"foxyvim"
|
"foxyvim"
|
||||||
"avix"
|
"avix"
|
||||||
"fvix"
|
"fvix"
|
||||||
"auim"
|
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
# and a set of categories that you want
|
# and a set of categories that you want
|
||||||
|
|
@ -240,33 +239,48 @@ in
|
||||||
qol = true;
|
qol = true;
|
||||||
telescope = true;
|
telescope = true;
|
||||||
fyler = true;
|
fyler = true;
|
||||||
|
|
||||||
lsp = true;
|
lsp = true;
|
||||||
completion = true;
|
completion = true;
|
||||||
treesitter = true;
|
treesitter = true;
|
||||||
|
|
||||||
format = true;
|
format = true;
|
||||||
comment = true;
|
comment = true;
|
||||||
|
|
||||||
|
git = false; # not really setup yet
|
||||||
|
|
||||||
lang = {
|
lang = {
|
||||||
lua = {
|
lua.lsp = true;
|
||||||
lsp = true;
|
lua.format = true;
|
||||||
format = true;
|
|
||||||
};
|
nix.lsp = true;
|
||||||
nix = {
|
nix.format = true;
|
||||||
lsp = true;
|
nix.docs = true;
|
||||||
format = true;
|
|
||||||
};
|
rust.lsp = true;
|
||||||
rust = {
|
rust.format = true;
|
||||||
lsp = true;
|
|
||||||
format = true;
|
zig.lsp = true;
|
||||||
};
|
zig.format = true;
|
||||||
zig = true;
|
|
||||||
elixir = true;
|
elixir.lsp = true;
|
||||||
gleam = true;
|
elixir.format = true;
|
||||||
haskell = {
|
|
||||||
lsp = true;
|
gleam.lsp = true;
|
||||||
format = true;
|
gleam.format = true;
|
||||||
};
|
|
||||||
java = true;
|
haskell.lsp = true;
|
||||||
|
haskell.format = true;
|
||||||
|
|
||||||
|
java.lsp = true;
|
||||||
|
java.format = true;
|
||||||
|
|
||||||
|
protobuf.lsp = true;
|
||||||
|
protobuf.format = true;
|
||||||
|
|
||||||
|
toml.format = true;
|
||||||
|
|
||||||
|
bash.lsp = true;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,9 @@
|
||||||
{inputs, ...}: {
|
{
|
||||||
|
inputs,
|
||||||
|
upkgs,
|
||||||
|
mpkgs,
|
||||||
|
...
|
||||||
|
}: {
|
||||||
imports = [
|
imports = [
|
||||||
inputs.nixcord.homeModules.nixcord
|
inputs.nixcord.homeModules.nixcord
|
||||||
];
|
];
|
||||||
|
|
@ -6,10 +11,12 @@
|
||||||
programs.nixcord = {
|
programs.nixcord = {
|
||||||
enable = true;
|
enable = true;
|
||||||
equibop.enable = true;
|
equibop.enable = true;
|
||||||
|
equibop.package = upkgs.equibop;
|
||||||
|
|
||||||
discord = {
|
discord = {
|
||||||
vencord.enable = false;
|
vencord.enable = false;
|
||||||
equicord.enable = true;
|
equicord.enable = true;
|
||||||
|
equicord.package = mpkgs.equicord;
|
||||||
};
|
};
|
||||||
|
|
||||||
config = {
|
config = {
|
||||||
|
|
@ -157,7 +164,6 @@
|
||||||
"1436964273162289185"
|
"1436964273162289185"
|
||||||
"1436988320474206311"
|
"1436988320474206311"
|
||||||
"1449837047383855119"
|
"1449837047383855119"
|
||||||
"1436965652861685891"
|
|
||||||
"1436968495190642722"
|
"1436968495190642722"
|
||||||
"1465424321919975454"
|
"1465424321919975454"
|
||||||
"1468324280445046824"
|
"1468324280445046824"
|
||||||
|
|
@ -202,6 +208,7 @@
|
||||||
"1419557866502754334"
|
"1419557866502754334"
|
||||||
"1436985041203892315"
|
"1436985041203892315"
|
||||||
"1438071327515742229"
|
"1438071327515742229"
|
||||||
|
"1436965652861685891"
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
{
|
{
|
||||||
|
|
@ -247,4 +254,8 @@
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
programs.nixcord.config.plugins.bypassStatus = {
|
||||||
|
enable = true;
|
||||||
|
};
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -8,7 +8,7 @@
|
||||||
|
|
||||||
programs.yazi = {
|
programs.yazi = {
|
||||||
enable = true;
|
enable = true;
|
||||||
enableZshIntegration = false; # i mod"if"ied the script in my .zshrc
|
enableZshIntegration = false; # i modified the script in my .zshrc
|
||||||
|
|
||||||
settings = {
|
settings = {
|
||||||
mgr = {
|
mgr = {
|
||||||
|
|
@ -170,7 +170,7 @@
|
||||||
[filechooser]
|
[filechooser]
|
||||||
cmd=${upkgs.xdg-desktop-portal-termfilechooser}/share/xdg-desktop-portal-termfilechooser/yazi-wrapper.sh
|
cmd=${upkgs.xdg-desktop-portal-termfilechooser}/share/xdg-desktop-portal-termfilechooser/yazi-wrapper.sh
|
||||||
default_dir=$HOME
|
default_dir=$HOME
|
||||||
env=TERMCMD='kitty --title filechooser'
|
env=TERMCMD='alacritty --title filechooser -e '
|
||||||
open_mode=suggested
|
open_mode=suggested
|
||||||
save_mode=last
|
save_mode=last
|
||||||
'';
|
'';
|
||||||
|
|
|
||||||
1
homes/modules/scripts/hyprland-layout-toggle.sh
Normal file
1
homes/modules/scripts/hyprland-layout-toggle.sh
Normal file
|
|
@ -0,0 +1 @@
|
||||||
|
#!/usr/bin/env bash
|
||||||
|
|
@ -1,2 +1,2 @@
|
||||||
#!/usr/bin/env bash
|
#!/usr/bin/env bash
|
||||||
pkill -f "kitty --title btop -e btop" || { kitty --title btop -e btop & disown; }
|
pkill -f "alacritty --title btop -e btop" || { alacritty --title btop -e btop & disown; }
|
||||||
|
|
|
||||||
128
homes/modules/shell/fastfetch/themes/laimu.jsonc
Normal file
128
homes/modules/shell/fastfetch/themes/laimu.jsonc
Normal file
|
|
@ -0,0 +1,128 @@
|
||||||
|
{
|
||||||
|
"$schema": "https://github.com/fastfetch-cli/fastfetch/raw/dev/doc/json_schema.json",
|
||||||
|
"logo": {
|
||||||
|
"type": "auto",
|
||||||
|
"source": "nixos",
|
||||||
|
},
|
||||||
|
"display": {
|
||||||
|
"separator": " > ",
|
||||||
|
"constants": [],
|
||||||
|
},
|
||||||
|
"modules": [
|
||||||
|
{
|
||||||
|
"type": "title",
|
||||||
|
"format": "╭─────╯ {user-name}@{host-name} ╰───────────────╌╌╌┄┄┄┈┈┈",
|
||||||
|
"outputColor": "cyan",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"type": "os",
|
||||||
|
"key": "│ os",
|
||||||
|
"keyColor": "cyan",
|
||||||
|
"format": "{name} {version}",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"type": "kernel",
|
||||||
|
"key": "│ kernel",
|
||||||
|
"keyColor": "cyan",
|
||||||
|
"format": "{sysname} {arch} - {release}",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"type": "uptime",
|
||||||
|
"key": "│ uptime",
|
||||||
|
"keyColor": "cyan",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"type": "packages",
|
||||||
|
"key": "│ pkgs",
|
||||||
|
"keyColor": "cyan",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"type": "cpu",
|
||||||
|
"key": "│ cpu",
|
||||||
|
"keyColor": "magenta",
|
||||||
|
"temp": true,
|
||||||
|
"format": "{name} {cores-physical}c/{cores-logical}t @ {freq-max} ({temperature})",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"type": "gpu",
|
||||||
|
"key": "│ gpu{1}",
|
||||||
|
"keyColor": "magenta",
|
||||||
|
"driverSpecific": false,
|
||||||
|
"detectionMethod": "pci",
|
||||||
|
"temp": true,
|
||||||
|
"percent": {
|
||||||
|
"green": 50,
|
||||||
|
"yellow": 80,
|
||||||
|
"type": 0
|
||||||
|
},
|
||||||
|
"format": "{name} ({temperature}) [{type}]",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"type": "memory",
|
||||||
|
"key": "│ memory",
|
||||||
|
"keyColor": "magenta",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"type": "swap",
|
||||||
|
"key": "│ swap",
|
||||||
|
"keyColor": "magenta",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"type": "disk",
|
||||||
|
"key": "│ disk({1})",
|
||||||
|
"keyColor": "magenta",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"type": "shell",
|
||||||
|
"key": "│ shell",
|
||||||
|
"keyColor": "green",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"type": "terminal",
|
||||||
|
"key": "│ term",
|
||||||
|
"keyColor": "green",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"type": "wm",
|
||||||
|
"key": "│ wm",
|
||||||
|
"keyColor": "green",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"type": "terminalfont",
|
||||||
|
"key": "│ font",
|
||||||
|
"keyColor": "green",
|
||||||
|
"format": "{name}",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"type": "locale",
|
||||||
|
"key": "│ locale",
|
||||||
|
"keyColor": "green",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"type": "title",
|
||||||
|
"format": "├─────────────────────────────────────────╌╌╌┄┄┄┈┈┈",
|
||||||
|
"outputColor": "red",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"type": "command",
|
||||||
|
"key": "│",
|
||||||
|
"keyWidth": 3,
|
||||||
|
"keyColor": "red",
|
||||||
|
"shell": "bash",
|
||||||
|
"text": "for i in {0..7}; do printf \"\\e[4%dm \\e[0m\" $i; done",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"type": "command",
|
||||||
|
"key": "│",
|
||||||
|
"keyWidth": 3,
|
||||||
|
"keyColor": "red",
|
||||||
|
"shell": "bash",
|
||||||
|
"text": "for i in {0..7}; do printf \"\\e[10%dm \\e[0m\" $i; done",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"type": "title",
|
||||||
|
"format": "╰─────────────────────────────────────────╌╌╌┄┄┄┈┈┈",
|
||||||
|
"outputColor": "red",
|
||||||
|
},
|
||||||
|
]
|
||||||
|
}
|
||||||
|
|
@ -16,14 +16,20 @@
|
||||||
initContent = ''
|
initContent = ''
|
||||||
# yazi wrapper!!!
|
# yazi wrapper!!!
|
||||||
function yazi() {
|
function yazi() {
|
||||||
local tmp="$(mktemp -p "/run/user/$UID" -t "yazi-cwd.XXXXXX")" cwd
|
local tmp="$(mktemp -p "/run/user/$UID" -t "yazi-cwd.XXXXXXXX")" cwd
|
||||||
command yazi "$@" --cwd-file="$tmp"
|
command yazi "$@" --cwd-file="$tmp"
|
||||||
IFS= read -r -d ''' cwd < "$tmp"
|
IFS= read -r -d ''' cwd < "$tmp"
|
||||||
[ -n "$cwd" ] && [ "$cwd" != "$PWD" ] && builtin cd -- "$cwd"
|
[ -n "$cwd" ] && [ "$cwd" != "$PWD" ] && builtin cd -- "$cwd"
|
||||||
rm -f -- "$tmp"
|
rm -f -- "$tmp"
|
||||||
}
|
}
|
||||||
|
|
||||||
hyfetch # oh i'm so gay!! :3
|
# oh i'm so gay!! :3
|
||||||
|
function hf() {
|
||||||
|
local queer_flags=('genderfae' 'lesbian' 'xenogender' 'transgender' 'transfeminine' 'transbian' 'pansexual')
|
||||||
|
local ascii_art=('fox-1.txt' 'fox-2.txt' 'fox-3.txt' 'blackhole-1.txt' 'butterfly-4.txt' 'butterfly-7.txt' 'flower-3.txt' 'flower-4.txt')
|
||||||
|
hyfetch --ascii-file="$XDG_DATA_HOME/ascii-art/$ascii_art[RANDOM % $#ascii_art + 1]" --preset="$queer_flags[RANDOM % $#queer_flags + 1]" --args="--config themes/laimu.jsonc"
|
||||||
|
}
|
||||||
|
hf
|
||||||
'';
|
'';
|
||||||
|
|
||||||
shellAliases = {
|
shellAliases = {
|
||||||
|
|
@ -65,9 +71,6 @@
|
||||||
# upgrades the system
|
# upgrades the system
|
||||||
upgrade = "cdns && nix flake update && nh os switch ./ --accept-flake-config";
|
upgrade = "cdns && nix flake update && nh os switch ./ --accept-flake-config";
|
||||||
|
|
||||||
# kitty's ssh command (to fix xterm and other stuff qwq)
|
|
||||||
kssh = "kitty +kitten ssh";
|
|
||||||
|
|
||||||
# pipes are prettyyyy!!!! :3333
|
# pipes are prettyyyy!!!! :3333
|
||||||
pipes1 = "pipes.sh -r 1024 -p 8 -f 30";
|
pipes1 = "pipes.sh -r 1024 -p 8 -f 30";
|
||||||
pipes2 = "pipes.sh -r 4096 -p 16 -f 100";
|
pipes2 = "pipes.sh -r 4096 -p 16 -f 100";
|
||||||
|
|
|
||||||
|
|
@ -0,0 +1,27 @@
|
||||||
|
[colors.primary]
|
||||||
|
background = '{{ background }}'
|
||||||
|
foreground = '{{ foreground }}'
|
||||||
|
|
||||||
|
[colors.cursor]
|
||||||
|
cursor = '{{ cursor }}'
|
||||||
|
text = '{{ cursor }}'
|
||||||
|
|
||||||
|
[colors.normal]
|
||||||
|
black = '{{ color0 }}'
|
||||||
|
red = '{{ color1 }}'
|
||||||
|
green = '{{ color2 }}'
|
||||||
|
yellow = '{{ color3 }}'
|
||||||
|
blue = '{{ color4 }}'
|
||||||
|
magenta = '{{ color5 }}'
|
||||||
|
cyan = '{{ color6 }}'
|
||||||
|
white = '{{ color7 }}'
|
||||||
|
|
||||||
|
[colors.bright]
|
||||||
|
black = '{{ color8 }}'
|
||||||
|
red = '{{ color9 }}'
|
||||||
|
green = '{{ color10 }}'
|
||||||
|
yellow = '{{ color11 }}'
|
||||||
|
blue = '{{ color12 }}'
|
||||||
|
magenta = '{{ color13 }}'
|
||||||
|
cyan = '{{ color14 }}'
|
||||||
|
white = '{{ color15 }}'
|
||||||
24
homes/modules/themeing/wallust/templates/foot-template.ini
Normal file
24
homes/modules/themeing/wallust/templates/foot-template.ini
Normal file
|
|
@ -0,0 +1,24 @@
|
||||||
|
[colors]
|
||||||
|
alpha=1.000000
|
||||||
|
alpha-mode=default
|
||||||
|
background={{ background | strip }}
|
||||||
|
foreground={{ foreground | strip }}
|
||||||
|
selection-background={{ foreground | strip }}
|
||||||
|
selection-foreground={{ background | strip }}
|
||||||
|
regular0={{ color0 | strip }}
|
||||||
|
regular1={{ color1 | strip }}
|
||||||
|
regular2={{ color2 | strip }}
|
||||||
|
regular3={{ color3 | strip }}
|
||||||
|
regular4={{ color4 | strip }}
|
||||||
|
regular5={{ color5 | strip }}
|
||||||
|
regular6={{ color6 | strip }}
|
||||||
|
regular7={{ color7 | strip }}
|
||||||
|
bright0={{ color8 | strip }}
|
||||||
|
bright1={{ color9 | strip }}
|
||||||
|
bright2={{ color10 | strip }}
|
||||||
|
bright3={{ color11 | strip }}
|
||||||
|
bright4={{ color12 | strip }}
|
||||||
|
bright5={{ color13 | strip }}
|
||||||
|
bright6={{ color14 | strip }}
|
||||||
|
bright7={{ color15 | strip }}
|
||||||
|
urls={{ color13 | strip }}
|
||||||
11
homes/modules/themeing/wallust/templates/mango-template.conf
Normal file
11
homes/modules/themeing/wallust/templates/mango-template.conf
Normal file
|
|
@ -0,0 +1,11 @@
|
||||||
|
# background color of the root window
|
||||||
|
rootcolor=0x{{ color12 | strip }}ff
|
||||||
|
|
||||||
|
# inactive window border
|
||||||
|
bordercolor=0x{{ color0 | strip }}ff
|
||||||
|
|
||||||
|
# active window border
|
||||||
|
focuscolor=0x{{ color14 | strip }}ff
|
||||||
|
|
||||||
|
# urgent / alerted window border
|
||||||
|
urgentcolor=0x{{ color10 | strip }}ff
|
||||||
|
|
@ -13,12 +13,18 @@ equibop.target = "~/.config/equibop/themes/base16-colors.css"
|
||||||
equicord.template = "discord-template.css"
|
equicord.template = "discord-template.css"
|
||||||
equicord.target = "~/.config/Equicord/themes/base16-colors.css"
|
equicord.target = "~/.config/Equicord/themes/base16-colors.css"
|
||||||
|
|
||||||
kitty.template = "kitty-template.conf"
|
|
||||||
kitty.target = "~/.config/kitty/theme.conf"
|
|
||||||
|
|
||||||
hyprland.template = "hyprland-template.conf"
|
hyprland.template = "hyprland-template.conf"
|
||||||
hyprland.target = "~/.config/hypr/colors.conf"
|
hyprland.target = "~/.config/hypr/colors.conf"
|
||||||
|
|
||||||
|
mango.template = "mango-template.conf"
|
||||||
|
mango.target = "~/.config/mango/colors.conf"
|
||||||
|
|
||||||
|
foot.template = "foot-template.ini"
|
||||||
|
foot.target = "~/.config/foot/theme.ini"
|
||||||
|
|
||||||
|
alacritty.template = "alacritty-template.toml"
|
||||||
|
alacritty.target = "~/.config/alacritty/theme.toml"
|
||||||
|
|
||||||
waybar.template = "waybar-template.css"
|
waybar.template = "waybar-template.css"
|
||||||
waybar.target = "~/.config/waybar/colors.css"
|
waybar.target = "~/.config/waybar/colors.css"
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,7 @@
|
||||||
# a submap for emulating keys/buttons/functions on the keyboard or mouse
|
# a submap for emulating keys/buttons/functions on the keyboard or mouse
|
||||||
|
|
||||||
bind = $mod+shift+alt, a, submap, virtual
|
bind = $mod+shift, c, submap, cursor
|
||||||
submap = virtual
|
submap = cursor
|
||||||
|
|
||||||
# exit submap
|
# exit submap
|
||||||
bind = , escape, submap, reset
|
bind = , escape, submap, reset
|
||||||
|
|
@ -38,6 +38,6 @@ binde = alt, e, exec, wlrctl pointer scroll -15 0 # scroll left
|
||||||
binde = alt, y, exec, wlrctl pointer scroll 0 15 # scroll right
|
binde = alt, y, exec, wlrctl pointer scroll 0 15 # scroll right
|
||||||
|
|
||||||
# catches all other keys and keeps us in the submap
|
# catches all other keys and keeps us in the submap
|
||||||
bind = , catchall, submap, virtual
|
bind = , catchall, submap, cursor
|
||||||
|
|
||||||
submap = reset
|
submap = reset
|
||||||
|
|
|
||||||
|
|
@ -1,10 +1,19 @@
|
||||||
# window rules
|
# window rules
|
||||||
|
|
||||||
|
# ---------------------------------------------------------------------------- #
|
||||||
|
# terminal - blur
|
||||||
|
windowrule {
|
||||||
|
name = terminal-blur
|
||||||
|
match:class = ^(foot|Alacritty)$
|
||||||
|
match:fullscreen = false
|
||||||
|
opacity = 0.95
|
||||||
|
}
|
||||||
|
|
||||||
# ---------------------------------------------------------------------------- #
|
# ---------------------------------------------------------------------------- #
|
||||||
# task manager
|
# task manager
|
||||||
windowrule {
|
windowrule {
|
||||||
name = task-manager
|
name = terminal-manager
|
||||||
match:class = ^(kitty)$
|
match:class = ^(foot|Alacritty)$
|
||||||
match:title = ^(btop)$
|
match:title = ^(btop)$
|
||||||
float = true
|
float = true
|
||||||
center = true
|
center = true
|
||||||
|
|
@ -15,33 +24,13 @@ windowrule {
|
||||||
# terminal filechooser
|
# terminal filechooser
|
||||||
windowrule {
|
windowrule {
|
||||||
name = terminal-filechooser
|
name = terminal-filechooser
|
||||||
match:class = ^(kitty)$
|
match:class = ^(foot|Alacritty)$
|
||||||
match:title = ^(filechooser)$
|
match:title = ^(filechooser)$
|
||||||
float = true
|
float = true
|
||||||
center = true
|
center = true
|
||||||
size = (monitor_w*0.85) (monitor_h*0.85)
|
size = (monitor_w*0.85) (monitor_h*0.85)
|
||||||
}
|
}
|
||||||
|
|
||||||
# ---------------------------------------------------------------------------- #
|
|
||||||
# yazi explorer
|
|
||||||
#windowrule {
|
|
||||||
#name = yazi
|
|
||||||
#match:class = ^(kitty)$
|
|
||||||
#match:title = ^(yazi)$
|
|
||||||
#float = true
|
|
||||||
#center = true
|
|
||||||
#size = (monitor_w*0.85) (monitor_h*0.85)
|
|
||||||
#}
|
|
||||||
|
|
||||||
# ---------------------------------------------------------------------------- #
|
|
||||||
# kitty - blur
|
|
||||||
windowrule {
|
|
||||||
name = kitty-blur
|
|
||||||
match:class = ^(kitty)$
|
|
||||||
match:fullscreen = false
|
|
||||||
opacity = 0.95
|
|
||||||
}
|
|
||||||
|
|
||||||
# ---------------------------------------------------------------------------- #
|
# ---------------------------------------------------------------------------- #
|
||||||
# imhex - blur
|
# imhex - blur
|
||||||
windowrule {
|
windowrule {
|
||||||
|
|
@ -59,3 +48,13 @@ windowrule {
|
||||||
match:fullscreen = false
|
match:fullscreen = false
|
||||||
opacity = 0.97
|
opacity = 0.97
|
||||||
}
|
}
|
||||||
|
|
||||||
|
# ---------------------------------------------------------------------------- #
|
||||||
|
# spotify - blur
|
||||||
|
windowrule {
|
||||||
|
name = spotify-blur
|
||||||
|
match:class = ^(spotify)$
|
||||||
|
match:initial_class = ^(spotify)$
|
||||||
|
match:fullscreen = false
|
||||||
|
opacity = 0.93
|
||||||
|
}
|
||||||
|
|
|
||||||
|
|
@ -4,10 +4,6 @@
|
||||||
package = null;
|
package = null;
|
||||||
portalPackage = null;
|
portalPackage = null;
|
||||||
|
|
||||||
plugins = [
|
|
||||||
#inputs.hyprland-plugins.packages.${pkgs.stdenv.hostPlatform.system}.hyprscrolling
|
|
||||||
];
|
|
||||||
|
|
||||||
xwayland.enable = true;
|
xwayland.enable = true;
|
||||||
|
|
||||||
extraConfig = ''
|
extraConfig = ''
|
||||||
|
|
@ -23,8 +19,8 @@
|
||||||
"$mod" = "SUPER";
|
"$mod" = "SUPER";
|
||||||
|
|
||||||
# applications
|
# applications
|
||||||
"$terminal" = "kitty";
|
"$terminal" = "alacritty";
|
||||||
"$explorer" = "kitty -e yazi";
|
"$explorer" = "alacritty -e yazi";
|
||||||
"$browser" = "zen-twilight";
|
"$browser" = "zen-twilight";
|
||||||
|
|
||||||
# menu
|
# menu
|
||||||
|
|
@ -64,18 +60,18 @@
|
||||||
layout = "dwindle";
|
layout = "dwindle";
|
||||||
};
|
};
|
||||||
|
|
||||||
plugin = {
|
|
||||||
# options at https://github.com/hyprwm/hyprland-plugins/tree/main/hyprscrolling
|
|
||||||
hyprscrolling = {
|
|
||||||
fullscreen_on_one_column = false;
|
|
||||||
column_width = 1.0;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
dwindle = {
|
dwindle = {
|
||||||
preserve_split = true;
|
preserve_split = true;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
scrolling = {
|
||||||
|
fullscreen_on_one_column = true;
|
||||||
|
column_width = 0.9;
|
||||||
|
wrap_focus = true;
|
||||||
|
wrap_swapcol = true;
|
||||||
|
direction = "right";
|
||||||
|
};
|
||||||
|
|
||||||
decoration = {
|
decoration = {
|
||||||
rounding = 8;
|
rounding = 8;
|
||||||
|
|
||||||
|
|
@ -111,7 +107,7 @@
|
||||||
force_no_accel = false; # not recommended to turn on
|
force_no_accel = false; # not recommended to turn on
|
||||||
};
|
};
|
||||||
|
|
||||||
cursor.no_hardware_cursors = true;
|
# cursor.no_hardware_cursors = true;
|
||||||
|
|
||||||
misc = {
|
misc = {
|
||||||
enable_anr_dialog = false;
|
enable_anr_dialog = false;
|
||||||
|
|
@ -130,6 +126,12 @@
|
||||||
"alt, tab, exec, pkill -x rofi || rofi -modi window -show window -show-icons"
|
"alt, tab, exec, pkill -x rofi || rofi -modi window -show window -show-icons"
|
||||||
"$mod, v, exec, pkill -x rofi || cliphist list | rofi -dmenu | cliphist decode | wl-copy"
|
"$mod, v, exec, pkill -x rofi || cliphist list | rofi -dmenu | cliphist decode | wl-copy"
|
||||||
|
|
||||||
|
# manage windows / session
|
||||||
|
"$mod+alt, c, killactive"
|
||||||
|
"$mod, f, fullscreen"
|
||||||
|
"$mod, x, togglefloating"
|
||||||
|
"$mod+Alt, Delete, exit" # exit hyprland
|
||||||
|
|
||||||
# screenshots
|
# screenshots
|
||||||
# todo: add active monitor
|
# todo: add active monitor
|
||||||
"$mod, s, exec, grim -g \"\$(slurp -d)\" - | wl-copy" # region
|
"$mod, s, exec, grim -g \"\$(slurp -d)\" - | wl-copy" # region
|
||||||
|
|
@ -137,7 +139,7 @@
|
||||||
"$mod+ctrl, s, exec, grim - | wl-copy" # all monitors
|
"$mod+ctrl, s, exec, grim - | wl-copy" # all monitors
|
||||||
|
|
||||||
# hyprpicker
|
# hyprpicker
|
||||||
"$mod, n, exec, hyprpicker -v"
|
"$mod, n, exec, hyprpicker | wl-copy"
|
||||||
# hyprlock
|
# hyprlock
|
||||||
"$mod+alt, y, exec, hyprlock"
|
"$mod+alt, y, exec, hyprlock"
|
||||||
# task manager
|
# task manager
|
||||||
|
|
@ -152,12 +154,8 @@
|
||||||
"Shift_R, XF86AudioPlay, exec, playerctl shuffle toggle"
|
"Shift_R, XF86AudioPlay, exec, playerctl shuffle toggle"
|
||||||
"Shift_R, XF86AudioNext, exec, playerctl loop track"
|
"Shift_R, XF86AudioNext, exec, playerctl loop track"
|
||||||
|
|
||||||
# manage windows / session
|
# dwindle layout keybinds
|
||||||
"$mod+alt, c, killactive"
|
"$mod, i, layoutmsg, togglesplit"
|
||||||
"$mod, f, fullscreen"
|
|
||||||
"$mod, x, togglefloating"
|
|
||||||
"$mod, i, togglesplit"
|
|
||||||
"$mod+Alt, Delete, exit" # exit hyprland
|
|
||||||
|
|
||||||
# move focus
|
# move focus
|
||||||
"$mod, h, movefocus, l"
|
"$mod, h, movefocus, l"
|
||||||
|
|
@ -290,14 +288,17 @@
|
||||||
];
|
];
|
||||||
|
|
||||||
env = [
|
env = [
|
||||||
"EDITOR,auravim"
|
|
||||||
|
|
||||||
"XCURSOR_THEME,Bunny (Icy) and Strawberries"
|
"XCURSOR_THEME,Bunny (Icy) and Strawberries"
|
||||||
"XCURSOR_SIZE,24"
|
"XCURSOR_SIZE,24"
|
||||||
"HYPRCURSOR_THEME,Bunny (Icy) and Strawberries"
|
"HYPRCURSOR_THEME,Bunny (Icy) and Strawberries"
|
||||||
"HYPRCURSOR_SIZE,24"
|
"HYPRCURSOR_SIZE,24"
|
||||||
|
|
||||||
"QT_QPA_PLATFORM,wayland"
|
"QT_QPA_PLATFORM,wayland"
|
||||||
|
|
||||||
|
# makes portals work correctly
|
||||||
|
"QT_QPA_PLATFORMTHEME,xdgdesktopportal"
|
||||||
|
# the other option that might work :3
|
||||||
|
#"QT_QPA_PLATFORMTHEME,flatpak"
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
|
||||||
14
homes/modules/wm/mango/default.nix
Normal file
14
homes/modules/wm/mango/default.nix
Normal file
|
|
@ -0,0 +1,14 @@
|
||||||
|
{inputs, ...}: {
|
||||||
|
imports = [
|
||||||
|
inputs.mango.hmModules.mango
|
||||||
|
];
|
||||||
|
|
||||||
|
wayland.windowManager.mango = {
|
||||||
|
enable = true;
|
||||||
|
};
|
||||||
|
|
||||||
|
xdg.configFile."mango" = {
|
||||||
|
recursive = true;
|
||||||
|
source = ./mango;
|
||||||
|
};
|
||||||
|
}
|
||||||
248
homes/modules/wm/mango/mango/config.conf
Normal file
248
homes/modules/wm/mango/mango/config.conf
Normal file
|
|
@ -0,0 +1,248 @@
|
||||||
|
################################################################################
|
||||||
|
##### Monitors /////////////////////////////////////////////////////////////////
|
||||||
|
################################################################################
|
||||||
|
|
||||||
|
# note: display stream compression pending for open source
|
||||||
|
# amd gpu driver and my monitor (VG279QM) only supports DP 1.2
|
||||||
|
# so no >240hz atm
|
||||||
|
|
||||||
|
# main monitor
|
||||||
|
monitorrule = name:DP-2,width:1920,height:1080,refresh:240,x:0,y:0
|
||||||
|
# second monitor
|
||||||
|
monitorrule = name:DP-3,width:1920,height:1080,refresh:144,x:1920,y:0
|
||||||
|
# third monitor (drawing tablet)
|
||||||
|
monitorrule = name:HDMI-A-2,width:2560,height:1440,refresh:60,x:3840,y:0
|
||||||
|
# tv
|
||||||
|
monitorrule = name:HDMI-A-1,width:1920,height:1080,refresh:60,x:-1920,y:0
|
||||||
|
|
||||||
|
################################################################################
|
||||||
|
##### Startup //////////////////////////////////////////////////////////////////
|
||||||
|
################################################################################
|
||||||
|
|
||||||
|
exec-once = waybar
|
||||||
|
exec-once = waybar --config ~/.config/mango/waybar.jsonc
|
||||||
|
exec-once = awww-daemon
|
||||||
|
|
||||||
|
exec-once = wl-paste --type text --watch cliphist store
|
||||||
|
exec-once = wl-paste --type image --watch cliphist store
|
||||||
|
exec-once = wl-clip-persist --clipboard regular
|
||||||
|
|
||||||
|
exec-once = playerctld daemon
|
||||||
|
|
||||||
|
exec-once = dbus-update-activation-environment --systemd WAYLAND_DISPLAY DISPLAY XDG_SESSION_TYPE=wayland XDG_CURRENT_DESKTOP=wlroots PATH
|
||||||
|
|
||||||
|
################################################################################
|
||||||
|
##### Themeing /////////////////////////////////////////////////////////////////
|
||||||
|
################################################################################
|
||||||
|
|
||||||
|
borderpx = 2
|
||||||
|
|
||||||
|
gappih = 5 # inner gap horizontal
|
||||||
|
gappiv = 5 # inner gap vertical
|
||||||
|
gappoh = 10 # outer gap horizontal
|
||||||
|
# we set the bottom vertical gap by using an empty layer that defines an exclusive zone
|
||||||
|
gappov = 0 # outer gap vertical
|
||||||
|
|
||||||
|
border_radius = 8
|
||||||
|
|
||||||
|
focused_opacity = 1.0
|
||||||
|
unfocused_opacity = 1.0
|
||||||
|
|
||||||
|
blur = 1
|
||||||
|
blur_layer = 1
|
||||||
|
blur_optimized = 1
|
||||||
|
blur_params_radius = 6
|
||||||
|
blur_params_num_passes = 2
|
||||||
|
blur_params_noise = 0.02
|
||||||
|
blur_params_brightness = 0.9
|
||||||
|
blur_params_contrast = 0.9
|
||||||
|
blur_params_saturation = 1.2
|
||||||
|
|
||||||
|
cursor_size=24
|
||||||
|
cursor_theme=Bunny (Icy) and Strawberries
|
||||||
|
|
||||||
|
################################################################################
|
||||||
|
##### Animations ///////////////////////////////////////////////////////////////
|
||||||
|
################################################################################
|
||||||
|
|
||||||
|
animations=1
|
||||||
|
layer_animations=1
|
||||||
|
|
||||||
|
################################################################################
|
||||||
|
##### Input ////////////////////////////////////////////////////////////////////
|
||||||
|
################################################################################
|
||||||
|
|
||||||
|
# keyboard stuff
|
||||||
|
repeat_rate = 50
|
||||||
|
repeat_delay = 300
|
||||||
|
|
||||||
|
# mouse stuff
|
||||||
|
accel_profile = 0
|
||||||
|
|
||||||
|
################################################################################
|
||||||
|
##### Keybinds /////////////////////////////////////////////////////////////////
|
||||||
|
################################################################################
|
||||||
|
|
||||||
|
# applications
|
||||||
|
bind = SUPER, t, spawn, alacritty
|
||||||
|
bind = SUPER, e, spawn, alacritty -e yazi
|
||||||
|
bind = SUPER, r, spawn, zen-twilight
|
||||||
|
|
||||||
|
# rofi
|
||||||
|
bind = SUPER, d, spawn_shell, pkill -x rofi || rofi -show drun -show-icons
|
||||||
|
bind = SUPER, v, spawn_shell, pkill -x rofi || cliphist list | rofi -dmenu | cliphist decode | wl-copy
|
||||||
|
bind = ALT, TAB, spawn_shell, pkill -x rofi || rofi -modi window -show window -show-icons
|
||||||
|
|
||||||
|
# manage session
|
||||||
|
bind = SUPER+ALT, c, killclient
|
||||||
|
bind = SUPER+SHIFT, r, reload_config
|
||||||
|
bind = SUPER+ALT, delete, quit
|
||||||
|
|
||||||
|
# screenshots
|
||||||
|
# grim - | wl-copy
|
||||||
|
bind = SUPER, s, spawn_shell, grim -g $(slurp -d) - | wl-copy
|
||||||
|
bind = SUPER+ALT, s, spawn_shell, grim -g $(slurp -o) - | wl-copy
|
||||||
|
bind = SUPER+CTRL, s, spawn_shell, grim - | wl-copy
|
||||||
|
|
||||||
|
# task manager
|
||||||
|
bind = SUPER+CTRL, escape, spawn, task-manager.sh
|
||||||
|
bind = SUPER+CTRL, grave, spawn, task-manager.sh
|
||||||
|
|
||||||
|
# color picker
|
||||||
|
bind = SUPER, n, spawn, hyprpicker -v
|
||||||
|
# lock screen
|
||||||
|
bind = SUPER+ALT, y, spawn, hyprlock
|
||||||
|
|
||||||
|
# media keybinds
|
||||||
|
bind = NONE, XF86AudioMute, spawn, wpctl set-mute @DEFAULT_AUDIO_SINK@ toggle
|
||||||
|
bind = NONE, XF86AudioPlay, spawn, playerctl play-pause
|
||||||
|
bind = NONE, XF86AudioNext, spawn, playerctl next
|
||||||
|
bind = NONE, XF86AudioPrev, spawn, playerctl previous
|
||||||
|
|
||||||
|
# needs to be `bind` for some reason, doesn't work otherwise
|
||||||
|
# if all of them are `bind` and not `binds`, it also doesn't work
|
||||||
|
# weird bug!! qwq
|
||||||
|
binds = Shift_R, XF86AudioPlay, spawn_shell, playerctl shuffle toggle
|
||||||
|
binds = Shift_R, XF86AudioNext, spawn, playerctl loop track
|
||||||
|
|
||||||
|
bind = NONE, XF86AudioRaiseVolume, spawn, wpctl set-volume -l 1.0 @DEFAULT_AUDIO_SINK@ 5%+
|
||||||
|
bind = NONE, XF86AudioLowerVolume, spawn, wpctl set-volume -l 1.0 @DEFAULT_AUDIO_SINK@ 5%-
|
||||||
|
|
||||||
|
binds = Shift_R, XF86AudioRaiseVolume, spawn, playerctl volume 0.05+
|
||||||
|
binds = Shift_R, XF86AudioLowerVolume, spawn, playerctl volume 0.05-
|
||||||
|
|
||||||
|
# window states
|
||||||
|
bind = SUPER, f, togglefullscreen
|
||||||
|
bind = SUPER+ALT, f, togglefakefullscreen
|
||||||
|
bind = SUPER, x, togglefloating
|
||||||
|
|
||||||
|
# layouts
|
||||||
|
bind = SUPER, u, switch_layout
|
||||||
|
|
||||||
|
# move focus - l/d/u/r
|
||||||
|
bind = SUPER, h, focusdir, left
|
||||||
|
bind = SUPER, j, focusdir, down
|
||||||
|
bind = SUPER, k, focusdir, up
|
||||||
|
bind = SUPER, l, focusdir, right
|
||||||
|
|
||||||
|
# move focus - stack
|
||||||
|
bind = SUPER+SHIFT, j, focusstack, next
|
||||||
|
bind = SUPER+SHIFT, k, focusstack, prev
|
||||||
|
|
||||||
|
# swap window - l/d/u/r
|
||||||
|
bind = SUPER+ALT, h, exchange_client, left
|
||||||
|
bind = SUPER+ALT, j, exchange_client, down
|
||||||
|
bind = SUPER+ALT, k, exchange_client, up
|
||||||
|
bind = SUPER+ALT, l, exchange_client, right
|
||||||
|
|
||||||
|
# swap window - stack
|
||||||
|
bind = SUPER+SHIFT, h, exchange_stack_client, next
|
||||||
|
bind = SUPER+SHIFT, l, exchange_stack_client, prev
|
||||||
|
|
||||||
|
# swap focused window with master
|
||||||
|
bind = SUPER, g, zoom
|
||||||
|
|
||||||
|
# view tag
|
||||||
|
BIND = SUPER, 1, view, 1, 0
|
||||||
|
BIND = SUPER, 2, view, 2, 0
|
||||||
|
BIND = SUPER, 3, view, 3, 0
|
||||||
|
BIND = SUPER, 4, view, 4, 0
|
||||||
|
BIND = SUPER, 5, view, 5, 0
|
||||||
|
BIND = SUPER, 6, view, 6, 0
|
||||||
|
BIND = SUPER, 7, view, 7, 0
|
||||||
|
BIND = SUPER, 8, view, 8, 0
|
||||||
|
BIND = SUPER, 9, view, 9, 0
|
||||||
|
BIND = SUPER, 0, view, 10, 0
|
||||||
|
BIND = SUPER, minus, view, 11, 0
|
||||||
|
BIND = SUPER, equal, view, 12, 0
|
||||||
|
|
||||||
|
# toggle tag on monitor
|
||||||
|
BIND = SUPER+ALT, 1, toggletag, 1, 0
|
||||||
|
BIND = SUPER+ALT, 2, toggletag, 2, 0
|
||||||
|
BIND = SUPER+ALT, 3, toggletag, 3, 0
|
||||||
|
BIND = SUPER+ALT, 4, toggletag, 4, 0
|
||||||
|
BIND = SUPER+ALT, 5, toggletag, 5, 0
|
||||||
|
BIND = SUPER+ALT, 6, toggletag, 6, 0
|
||||||
|
BIND = SUPER+ALT, 7, toggletag, 7, 0
|
||||||
|
BIND = SUPER+ALT, 8, toggletag, 8, 0
|
||||||
|
BIND = SUPER+ALT, 9, toggletag, 9, 0
|
||||||
|
BIND = SUPER+ALT, 0, toggletag, 10, 0
|
||||||
|
BIND = SUPER+ALT, minus, toggletag, 11, 0
|
||||||
|
BIND = SUPER+ALT, equal, toggletag, 12, 0
|
||||||
|
|
||||||
|
# move window to tag
|
||||||
|
BIND = SUPER+SHIFT, 1, tag, 1, 0
|
||||||
|
BIND = SUPER+SHIFT, 2, tag, 2, 0
|
||||||
|
BIND = SUPER+SHIFT, 3, tag, 3, 0
|
||||||
|
BIND = SUPER+SHIFT, 4, tag, 4, 0
|
||||||
|
BIND = SUPER+SHIFT, 5, tag, 5, 0
|
||||||
|
BIND = SUPER+SHIFT, 6, tag, 6, 0
|
||||||
|
BIND = SUPER+SHIFT, 7, tag, 7, 0
|
||||||
|
BIND = SUPER+SHIFT, 8, tag, 8, 0
|
||||||
|
BIND = SUPER+SHIFT, 9, tag, 9, 0
|
||||||
|
BIND = SUPER+SHIFT, 0, tag, 10, 0
|
||||||
|
BIND = SUPER+SHIFT, minus, tag, 11, 0
|
||||||
|
BIND = SUPER+SHIFT, equal, tag, 12, 0
|
||||||
|
|
||||||
|
# mouse binds :3
|
||||||
|
mousebind = SUPER, btn_left, moveresize, curmove
|
||||||
|
mousebind = SUPER, btn_right, moveresize, curresize
|
||||||
|
|
||||||
|
################################################################################
|
||||||
|
##### Miscellaneous ////////////////////////////////////////////////////////////
|
||||||
|
################################################################################
|
||||||
|
|
||||||
|
# focus follows mouse cursor
|
||||||
|
sloppyfocus = 1
|
||||||
|
|
||||||
|
# automatically focus windows when they request activiation
|
||||||
|
focus_on_activate = 1
|
||||||
|
|
||||||
|
# scroll speed
|
||||||
|
axis_scroll_factor = 1.0
|
||||||
|
|
||||||
|
# disables hotarea for overview mode
|
||||||
|
enable_hotarea = 0
|
||||||
|
|
||||||
|
################################################################################
|
||||||
|
##### Environment Variables ////////////////////////////////////////////////////
|
||||||
|
################################################################################
|
||||||
|
|
||||||
|
env = XCURSOR_THEME,Bunny (Icy) and Strawberries
|
||||||
|
env = XCURSOR_SIZE,24
|
||||||
|
|
||||||
|
env = QT_QPA_PLATFORM,wayland
|
||||||
|
env = QT_QPA_PLATFORMTHEME,xdgdesktopportal
|
||||||
|
|
||||||
|
################################################################################
|
||||||
|
##### Imports //////////////////////////////////////////////////////////////////
|
||||||
|
################################################################################
|
||||||
|
|
||||||
|
# windowrules!!! <3
|
||||||
|
source = ./windowrules.conf
|
||||||
|
|
||||||
|
# layerrules :3
|
||||||
|
source = ./layerrules.conf
|
||||||
|
|
||||||
|
# colors generated from palette generator
|
||||||
|
source = ./colors.conf
|
||||||
3
homes/modules/wm/mango/mango/layerrules.conf
Normal file
3
homes/modules/wm/mango/mango/layerrules.conf
Normal file
|
|
@ -0,0 +1,3 @@
|
||||||
|
# ---------------------------------------------------------------------------- #
|
||||||
|
# slurp no blur
|
||||||
|
layerrule=noblur:1,layer_name:selection
|
||||||
5
homes/modules/wm/mango/mango/waybar.jsonc
Normal file
5
homes/modules/wm/mango/mango/waybar.jsonc
Normal file
|
|
@ -0,0 +1,5 @@
|
||||||
|
{
|
||||||
|
"layer": "bottom",
|
||||||
|
"position": "bottom",
|
||||||
|
"height": 10,
|
||||||
|
}
|
||||||
7
homes/modules/wm/mango/mango/windowrules.conf
Normal file
7
homes/modules/wm/mango/mango/windowrules.conf
Normal file
|
|
@ -0,0 +1,7 @@
|
||||||
|
# ---------------------------------------------------------------------------- #
|
||||||
|
# i don't wanna minimise windows
|
||||||
|
windowrule = ignore_minimise
|
||||||
|
|
||||||
|
# ---------------------------------------------------------------------------- #
|
||||||
|
# terminal - blur
|
||||||
|
windowrule = appid:^(foot|Alacritty)$, focused_opacity:0.95, unfocused_opacity:0.95
|
||||||
|
|
@ -1,16 +1,15 @@
|
||||||
{spkgs, ...}: {
|
{...}: {
|
||||||
wayland.windowManager.river = let
|
wayland.windowManager.river = let
|
||||||
layout = "rivertile";
|
layout = "rivertile";
|
||||||
in {
|
in {
|
||||||
enable = true;
|
enable = true;
|
||||||
xwayland.enable = true;
|
xwayland.enable = true;
|
||||||
package = spkgs.river-classic; # FIX: using spkgs version as zls is broken rn ;-;
|
|
||||||
|
|
||||||
settings = let
|
settings = let
|
||||||
main = "Super";
|
main = "Super";
|
||||||
|
|
||||||
# applications
|
# applications
|
||||||
terminal = "kitty";
|
terminal = "alacritty";
|
||||||
browser = "firefox";
|
browser = "firefox";
|
||||||
in {
|
in {
|
||||||
default-layout = "${layout}";
|
default-layout = "${layout}";
|
||||||
|
|
@ -18,7 +17,7 @@
|
||||||
border-width = 1;
|
border-width = 1;
|
||||||
|
|
||||||
spawn = [
|
spawn = [
|
||||||
''${layout}''
|
"${layout}"
|
||||||
|
|
||||||
"awww-daemon"
|
"awww-daemon"
|
||||||
"waybar"
|
"waybar"
|
||||||
|
|
@ -37,7 +36,7 @@
|
||||||
"${main} R" = ''spawn "${browser}"'';
|
"${main} R" = ''spawn "${browser}"'';
|
||||||
|
|
||||||
# move focused view to top of layout stack
|
# move focused view to top of layout stack
|
||||||
"${main} N" = ''zoom'';
|
"${main} N" = "zoom";
|
||||||
|
|
||||||
# focus next/previous view
|
# focus next/previous view
|
||||||
"${main} J" = "focus-view previous";
|
"${main} J" = "focus-view previous";
|
||||||
|
|
|
||||||
|
|
@ -3,7 +3,7 @@
|
||||||
enable = true;
|
enable = true;
|
||||||
config = rec {
|
config = rec {
|
||||||
modifier = "Mod4"; # Mod4 = Super/Meta
|
modifier = "Mod4"; # Mod4 = Super/Meta
|
||||||
terminal = "kitty";
|
terminal = "alacritty";
|
||||||
|
|
||||||
# disable sway bar
|
# disable sway bar
|
||||||
bars = [];
|
bars = [];
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,4 @@
|
||||||
{ config, lib, pkgs, ... }:
|
{pkgs, ...}: {
|
||||||
{
|
|
||||||
imports = [
|
imports = [
|
||||||
./hardware-configuration.nix
|
./hardware-configuration.nix
|
||||||
];
|
];
|
||||||
|
|
@ -14,7 +13,7 @@
|
||||||
};
|
};
|
||||||
|
|
||||||
boot = {
|
boot = {
|
||||||
kernelPackages = pkgs.linuxPackages_latest;
|
kernelPackages = pkgs.linuxPackages_6_12;
|
||||||
loader = {
|
loader = {
|
||||||
systemd-boot.enable = true;
|
systemd-boot.enable = true;
|
||||||
efi.canTouchEfiVariables = true;
|
efi.canTouchEfiVariables = true;
|
||||||
|
|
@ -35,10 +34,6 @@
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
systemd.services.systemd-networkd.environment = {
|
|
||||||
SYSTEMD_LOG_LEVEL = "debug";
|
|
||||||
};
|
|
||||||
|
|
||||||
systemd.network = {
|
systemd.network = {
|
||||||
enable = true;
|
enable = true;
|
||||||
|
|
||||||
|
|
@ -117,7 +112,7 @@
|
||||||
|
|
||||||
users.users.foxora = {
|
users.users.foxora = {
|
||||||
isNormalUser = true;
|
isNormalUser = true;
|
||||||
extraGroups = [ "wheel" ];
|
extraGroups = ["wheel"];
|
||||||
|
|
||||||
packages = with pkgs; [
|
packages = with pkgs; [
|
||||||
tree
|
tree
|
||||||
|
|
|
||||||
|
|
@ -1,31 +1,34 @@
|
||||||
# Do not modify this file! It was generated by ‘nixos-generate-config’
|
# Do not modify this file! It was generated by ‘nixos-generate-config’
|
||||||
# and may be overwritten by future invocations. Please make changes
|
# and may be overwritten by future invocations. Please make changes
|
||||||
# to /etc/nixos/configuration.nix instead.
|
# to /etc/nixos/configuration.nix instead.
|
||||||
{ config, lib, pkgs, modulesPath, ... }:
|
|
||||||
|
|
||||||
{
|
{
|
||||||
imports =
|
config,
|
||||||
[ (modulesPath + "/installer/scan/not-detected.nix")
|
lib,
|
||||||
|
modulesPath,
|
||||||
|
...
|
||||||
|
}: {
|
||||||
|
imports = [
|
||||||
|
(modulesPath + "/installer/scan/not-detected.nix")
|
||||||
];
|
];
|
||||||
|
|
||||||
boot.initrd.availableKernelModules = [ "ahci" "ehci_pci" "megaraid_sas" "usb_storage" "usbhid" "sd_mod" "sr_mod" ];
|
boot.initrd.availableKernelModules = ["ahci" "ehci_pci" "megaraid_sas" "usb_storage" "usbhid" "sd_mod" "sr_mod"];
|
||||||
boot.initrd.kernelModules = [ ];
|
boot.initrd.kernelModules = [];
|
||||||
boot.kernelModules = [ "kvm-intel" ];
|
boot.kernelModules = ["kvm-intel"];
|
||||||
boot.extraModulePackages = [ ];
|
boot.extraModulePackages = [];
|
||||||
|
|
||||||
fileSystems."/" =
|
fileSystems."/" = {
|
||||||
{ device = "/dev/disk/by-uuid/7f22e35f-7536-49c4-9c04-88874e87f266";
|
device = "/dev/disk/by-uuid/7f22e35f-7536-49c4-9c04-88874e87f266";
|
||||||
fsType = "btrfs";
|
fsType = "btrfs";
|
||||||
};
|
};
|
||||||
|
|
||||||
fileSystems."/boot" =
|
fileSystems."/boot" = {
|
||||||
{ device = "/dev/disk/by-uuid/0213-F9A0";
|
device = "/dev/disk/by-uuid/0213-F9A0";
|
||||||
fsType = "vfat";
|
fsType = "vfat";
|
||||||
options = [ "fmask=0077" "dmask=0077" ];
|
options = ["fmask=0077" "dmask=0077"];
|
||||||
};
|
};
|
||||||
|
|
||||||
swapDevices =
|
swapDevices = [
|
||||||
[ { device = "/dev/disk/by-uuid/0d04172b-aed8-42ea-9cb8-e5dcbf960200"; }
|
{device = "/dev/disk/by-uuid/0d04172b-aed8-42ea-9cb8-e5dcbf960200";}
|
||||||
];
|
];
|
||||||
|
|
||||||
nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux";
|
nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux";
|
||||||
|
|
|
||||||
85
hosts/delphinus/configuration.nix
Normal file
85
hosts/delphinus/configuration.nix
Normal file
|
|
@ -0,0 +1,85 @@
|
||||||
|
{
|
||||||
|
config,
|
||||||
|
lib,
|
||||||
|
pkgs,
|
||||||
|
...
|
||||||
|
}: {
|
||||||
|
imports = [
|
||||||
|
./hardware-configuration.nix
|
||||||
|
];
|
||||||
|
|
||||||
|
networking.hostName = "delphinus";
|
||||||
|
|
||||||
|
boot = {
|
||||||
|
kernelPackages = pkgs.linuxPackages_latest;
|
||||||
|
loader = {
|
||||||
|
timeout = 10;
|
||||||
|
grub = {
|
||||||
|
enable = true;
|
||||||
|
forceInstall = true;
|
||||||
|
device = "nodev";
|
||||||
|
extraConfig = ''
|
||||||
|
serial --speed=19200 --unit=0 --word=8 --parity=no --stop=1;
|
||||||
|
terminal_input serial;
|
||||||
|
terminal_output serial
|
||||||
|
'';
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
networking = {
|
||||||
|
networkmanager.enable = true;
|
||||||
|
useDHCP = false;
|
||||||
|
usePredictableInterfaceNames = false;
|
||||||
|
nftables.enable = true;
|
||||||
|
|
||||||
|
firewall = {
|
||||||
|
enable = true;
|
||||||
|
allowedTCPPorts = [6767];
|
||||||
|
allowedUDPPorts = [];
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
time.timeZone = "Europe/Amsterdam";
|
||||||
|
|
||||||
|
i18n.defaultLocale = "en_US.UTF-8";
|
||||||
|
console = {
|
||||||
|
font = "Lat2-Terminus16";
|
||||||
|
keyMap = "us";
|
||||||
|
};
|
||||||
|
|
||||||
|
users.users.fox = {
|
||||||
|
isNormalUser = true;
|
||||||
|
extraGroups = ["wheel"];
|
||||||
|
packages = with pkgs; [
|
||||||
|
tree
|
||||||
|
];
|
||||||
|
|
||||||
|
openssh.authorizedKeys.keys = [
|
||||||
|
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIPGwai/gXJOJZQujpk0BSwdjSe2as3pT567bYhzjaQ4M aurora@nixarawrui"
|
||||||
|
];
|
||||||
|
};
|
||||||
|
|
||||||
|
services = {
|
||||||
|
openssh = {
|
||||||
|
enable = true;
|
||||||
|
|
||||||
|
ports = [6767];
|
||||||
|
settings = {
|
||||||
|
PasswordAuthentication = false;
|
||||||
|
PermitRootLogin = "no";
|
||||||
|
AllowUsers = ["fox"];
|
||||||
|
UseDns = false; # disable rDNS lookup
|
||||||
|
X11Forwarding = false;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
environment.systemPackages = with pkgs; [
|
||||||
|
neovim
|
||||||
|
git
|
||||||
|
wget
|
||||||
|
];
|
||||||
|
|
||||||
|
system.stateVersion = "25.11";
|
||||||
|
}
|
||||||
26
hosts/delphinus/hardware-configuration.nix
Normal file
26
hosts/delphinus/hardware-configuration.nix
Normal file
|
|
@ -0,0 +1,26 @@
|
||||||
|
# Do not modify this file! It was generated by ‘nixos-generate-config’
|
||||||
|
# and may be overwritten by future invocations. Please make changes
|
||||||
|
# to /etc/nixos/configuration.nix instead.
|
||||||
|
{ config, lib, pkgs, modulesPath, ... }:
|
||||||
|
|
||||||
|
{
|
||||||
|
imports =
|
||||||
|
[ (modulesPath + "/profiles/qemu-guest.nix")
|
||||||
|
];
|
||||||
|
|
||||||
|
boot.initrd.availableKernelModules = [ "virtio_pci" "virtio_scsi" "ahci" "sd_mod" ];
|
||||||
|
boot.initrd.kernelModules = [ ];
|
||||||
|
boot.kernelModules = [ ];
|
||||||
|
boot.extraModulePackages = [ ];
|
||||||
|
|
||||||
|
fileSystems."/" =
|
||||||
|
{ device = "/dev/sda";
|
||||||
|
fsType = "ext4";
|
||||||
|
};
|
||||||
|
|
||||||
|
swapDevices =
|
||||||
|
[ { device = "/dev/sdb"; }
|
||||||
|
];
|
||||||
|
|
||||||
|
nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux";
|
||||||
|
}
|
||||||
|
|
@ -1,5 +1,4 @@
|
||||||
{ config, lib, pkgs, ... }:
|
{pkgs, ...}: {
|
||||||
{
|
|
||||||
imports = [
|
imports = [
|
||||||
./hardware-configuration.nix
|
./hardware-configuration.nix
|
||||||
];
|
];
|
||||||
|
|
@ -14,7 +13,7 @@
|
||||||
};
|
};
|
||||||
|
|
||||||
boot = {
|
boot = {
|
||||||
kernelPackages = pkgs.linuxPackages_latest;
|
kernelPackages = pkgs.linuxPackages_6_12;
|
||||||
loader = {
|
loader = {
|
||||||
systemd-boot.enable = true;
|
systemd-boot.enable = true;
|
||||||
efi.canTouchEfiVariables = true;
|
efi.canTouchEfiVariables = true;
|
||||||
|
|
@ -23,11 +22,13 @@
|
||||||
|
|
||||||
networking = {
|
networking = {
|
||||||
networkmanager.enable = true;
|
networkmanager.enable = true;
|
||||||
|
nftables.enable = true;
|
||||||
|
|
||||||
firewall = {
|
firewall = {
|
||||||
allowedTCPPorts = [
|
allowedTCPPorts = [
|
||||||
2222
|
2222
|
||||||
];
|
];
|
||||||
|
allowedUDPPorts = [];
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
@ -40,7 +41,7 @@
|
||||||
PasswordAuthentication = false;
|
PasswordAuthentication = false;
|
||||||
PermitRootLogin = "no";
|
PermitRootLogin = "no";
|
||||||
AllowUsers = ["foxora"];
|
AllowUsers = ["foxora"];
|
||||||
UseDns = false; # enables rDNS lookup
|
UseDns = false; # disable rDNS lookup
|
||||||
X11Forwarding = false;
|
X11Forwarding = false;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
@ -57,7 +58,7 @@
|
||||||
|
|
||||||
users.users.foxora = {
|
users.users.foxora = {
|
||||||
isNormalUser = true;
|
isNormalUser = true;
|
||||||
extraGroups = [ "wheel" ];
|
extraGroups = ["wheel"];
|
||||||
|
|
||||||
packages = with pkgs; [
|
packages = with pkgs; [
|
||||||
tree
|
tree
|
||||||
|
|
@ -91,4 +92,3 @@
|
||||||
|
|
||||||
system.stateVersion = "25.11";
|
system.stateVersion = "25.11";
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,31 +1,34 @@
|
||||||
# Do not modify this file! It was generated by ‘nixos-generate-config’
|
# Do not modify this file! It was generated by ‘nixos-generate-config’
|
||||||
# and may be overwritten by future invocations. Please make changes
|
# and may be overwritten by future invocations. Please make changes
|
||||||
# to /etc/nixos/configuration.nix instead.
|
# to /etc/nixos/configuration.nix instead.
|
||||||
{ config, lib, pkgs, modulesPath, ... }:
|
|
||||||
|
|
||||||
{
|
{
|
||||||
imports =
|
config,
|
||||||
[ (modulesPath + "/installer/scan/not-detected.nix")
|
lib,
|
||||||
|
modulesPath,
|
||||||
|
...
|
||||||
|
}: {
|
||||||
|
imports = [
|
||||||
|
(modulesPath + "/installer/scan/not-detected.nix")
|
||||||
];
|
];
|
||||||
|
|
||||||
boot.initrd.availableKernelModules = [ "ahci" "xhci_pci" "megaraid_sas" "usb_storage" "usbhid" "sd_mod" ];
|
boot.initrd.availableKernelModules = ["ahci" "xhci_pci" "megaraid_sas" "usb_storage" "usbhid" "sd_mod"];
|
||||||
boot.initrd.kernelModules = [ ];
|
boot.initrd.kernelModules = [];
|
||||||
boot.kernelModules = [ "kvm-intel" ];
|
boot.kernelModules = ["kvm-intel"];
|
||||||
boot.extraModulePackages = [ ];
|
boot.extraModulePackages = [];
|
||||||
|
|
||||||
fileSystems."/" =
|
fileSystems."/" = {
|
||||||
{ device = "/dev/disk/by-uuid/1bc53888-6db8-46df-aa28-975b710c5de8";
|
device = "/dev/disk/by-uuid/1bc53888-6db8-46df-aa28-975b710c5de8";
|
||||||
fsType = "ext4";
|
fsType = "ext4";
|
||||||
};
|
};
|
||||||
|
|
||||||
fileSystems."/boot" =
|
fileSystems."/boot" = {
|
||||||
{ device = "/dev/disk/by-uuid/12CE-A600";
|
device = "/dev/disk/by-uuid/12CE-A600";
|
||||||
fsType = "vfat";
|
fsType = "vfat";
|
||||||
options = [ "fmask=0077" "dmask=0077" ];
|
options = ["fmask=0077" "dmask=0077"];
|
||||||
};
|
};
|
||||||
|
|
||||||
swapDevices =
|
swapDevices = [
|
||||||
[ { device = "/dev/disk/by-uuid/60643004-6916-46b3-8655-66fdc28cf5ad"; }
|
{device = "/dev/disk/by-uuid/60643004-6916-46b3-8655-66fdc28cf5ad";}
|
||||||
];
|
];
|
||||||
|
|
||||||
nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux";
|
nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux";
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,8 @@
|
||||||
{
|
{
|
||||||
inputs,
|
lib,
|
||||||
|
config,
|
||||||
|
root,
|
||||||
upkgs,
|
upkgs,
|
||||||
spkgs,
|
|
||||||
...
|
...
|
||||||
}: {
|
}: {
|
||||||
imports = [
|
imports = [
|
||||||
|
|
@ -19,10 +20,23 @@
|
||||||
efi.canTouchEfiVariables = true;
|
efi.canTouchEfiVariables = true;
|
||||||
};
|
};
|
||||||
|
|
||||||
kernelPackages = upkgs.cachyosKernels.linuxPackages-cachyos-latest-lto-x86_64-v4;
|
# kernelPackages = upkgs.cachyosKernels.linuxPackages-cachyos-latest-lto-x86_64-v4;
|
||||||
# TODO: idk make this a toggle or smth idfk
|
# TODO: idk make this a toggle or smth idfk
|
||||||
# kernelPackages = upkgs.linuxPackages_latest;
|
kernelPackages = upkgs.linuxPackages_zen;
|
||||||
kernelModules = ["v4l2loopback"];
|
kernelModules = ["v4l2loopback"];
|
||||||
|
kernelParams = [
|
||||||
|
# force kernel to use dGPU
|
||||||
|
"amdgpu.primary=0000:03:00.0"
|
||||||
|
"video=PCI:0000:03:00.0:e"
|
||||||
|
"initcall_blacklist=simpledrm_platform_driver_init"
|
||||||
|
"fbcon=map:0"
|
||||||
|
|
||||||
|
# stops kernel from setting power states on nvme drives because it keeps
|
||||||
|
# disconnecting my drive and my system locks up
|
||||||
|
"nvme_core.default_ps_max_latency_us=0"
|
||||||
|
"pcie_aspm=off"
|
||||||
|
"pcie_port_pm=off"
|
||||||
|
];
|
||||||
extraModulePackages = with kernelPackages; [v4l2loopback];
|
extraModulePackages = with kernelPackages; [v4l2loopback];
|
||||||
|
|
||||||
# qemu
|
# qemu
|
||||||
|
|
@ -84,10 +98,6 @@
|
||||||
|
|
||||||
environment.sessionVariables = {
|
environment.sessionVariables = {
|
||||||
NIXOS_OZONE_WL = "1";
|
NIXOS_OZONE_WL = "1";
|
||||||
|
|
||||||
# makes portals work correctly
|
|
||||||
QT_QPA_PLATFORMTHEME = "xdgdesktopportal";
|
|
||||||
#QT_QPA_PLATFORMTHEME = "flatpak"; # sometimes might need this
|
|
||||||
};
|
};
|
||||||
|
|
||||||
xdg.portal = {
|
xdg.portal = {
|
||||||
|
|
@ -133,6 +143,30 @@
|
||||||
services = {
|
services = {
|
||||||
displayManager.sddm.enable = true;
|
displayManager.sddm.enable = true;
|
||||||
displayManager.sddm.wayland.enable = true;
|
displayManager.sddm.wayland.enable = true;
|
||||||
|
# force sddm to be on the dGPU
|
||||||
|
displayManager.sddm.wayland.compositor = "weston";
|
||||||
|
displayManager.sddm.settings = let
|
||||||
|
xcfg = config.services.xserver;
|
||||||
|
# from: https://github.com/NixOS/nixpkgs/blob/1ad2d2e524cb1e7b91ebebcd10d224105dd4e1f2/nixos/modules/services/display-managers/sddm.nix#L132-L143
|
||||||
|
# as for some reason they do it like this and it makes it harder for me to set the option correctly for my gpu
|
||||||
|
# NOTE: ask butterfly if there is a better way <3
|
||||||
|
westonIni = (upkgs.formats.ini {}).generate "weston.ini" {
|
||||||
|
libinput = {
|
||||||
|
enable-tap = config.services.libinput.mouse.tapping;
|
||||||
|
left-handed = config.services.libinput.mouse.leftHanded;
|
||||||
|
};
|
||||||
|
keyboard = {
|
||||||
|
keymap_model = xcfg.xkb.model;
|
||||||
|
keymap_layout = xcfg.xkb.layout;
|
||||||
|
keymap_variant = xcfg.xkb.variant;
|
||||||
|
keymap_options = xcfg.xkb.options;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
in {
|
||||||
|
Wayland = {
|
||||||
|
CompositorCommand = "${lib.getExe upkgs.weston} --shell=kiosk --drm-device=card0 -c ${westonIni}";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
udisks2.enable = true;
|
udisks2.enable = true;
|
||||||
flatpak.enable = true;
|
flatpak.enable = true;
|
||||||
|
|
@ -195,7 +229,15 @@
|
||||||
users.aurora = {
|
users.aurora = {
|
||||||
isNormalUser = true;
|
isNormalUser = true;
|
||||||
uid = 1000;
|
uid = 1000;
|
||||||
extraGroups = ["wheel" "disk" "input" "video" "audio" "networkmanager" "games"];
|
extraGroups = [
|
||||||
|
"wheel"
|
||||||
|
"disk"
|
||||||
|
"input"
|
||||||
|
"video"
|
||||||
|
"audio"
|
||||||
|
"networkmanager"
|
||||||
|
"games"
|
||||||
|
];
|
||||||
|
|
||||||
shell = upkgs.zsh;
|
shell = upkgs.zsh;
|
||||||
|
|
||||||
|
|
@ -209,6 +251,13 @@
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
systemd.tmpfiles.rules = let
|
||||||
|
imagePath = root + "/homes/aurora/profile.png";
|
||||||
|
in
|
||||||
|
lib.mkIf (builtins.pathExists imagePath) [
|
||||||
|
"L+ /var/lib/AccountsService/icons/aurora - - - - ${imagePath}"
|
||||||
|
];
|
||||||
|
|
||||||
programs = {
|
programs = {
|
||||||
# nix-ld runs unpatched dynamic binaries on nixos :3
|
# nix-ld runs unpatched dynamic binaries on nixos :3
|
||||||
nix-ld.enable = true;
|
nix-ld.enable = true;
|
||||||
|
|
@ -236,8 +285,11 @@
|
||||||
portalPackage = upkgs.hyprland-git.xdg-desktop-portal-hyprland;
|
portalPackage = upkgs.hyprland-git.xdg-desktop-portal-hyprland;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
mango = {
|
||||||
|
enable = true;
|
||||||
|
};
|
||||||
|
|
||||||
river-classic = {
|
river-classic = {
|
||||||
package = spkgs.river-classic; # FIX: using spkgs version as zls is broken rn ;-;
|
|
||||||
enable = true;
|
enable = true;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
@ -258,7 +310,7 @@
|
||||||
|
|
||||||
alvr = {
|
alvr = {
|
||||||
enable = true;
|
enable = true;
|
||||||
package = spkgs.alvr;
|
package = upkgs.alvr;
|
||||||
openFirewall = true;
|
openFirewall = true;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
@ -274,7 +326,7 @@
|
||||||
fish.enable = true;
|
fish.enable = true;
|
||||||
|
|
||||||
silentSDDM = {
|
silentSDDM = {
|
||||||
enable = false;
|
enable = true;
|
||||||
theme = "rei";
|
theme = "rei";
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
@ -285,6 +337,9 @@
|
||||||
# linux packages!!!
|
# linux packages!!!
|
||||||
linuxPackages.v4l2loopback
|
linuxPackages.v4l2loopback
|
||||||
|
|
||||||
|
# weston is needed for sddm
|
||||||
|
weston
|
||||||
|
|
||||||
# android yay
|
# android yay
|
||||||
android-tools
|
android-tools
|
||||||
|
|
||||||
|
|
@ -322,8 +377,6 @@
|
||||||
libxscrnsaver
|
libxscrnsaver
|
||||||
];
|
];
|
||||||
}).run
|
}).run
|
||||||
|
|
||||||
inputs.nix-alien.packages.${stdenv.hostPlatform.system}.nix-alien
|
|
||||||
];
|
];
|
||||||
|
|
||||||
system.stateVersion = "24.11";
|
system.stateVersion = "24.11";
|
||||||
|
|
|
||||||
16
overlays.nix
16
overlays.nix
|
|
@ -16,4 +16,20 @@
|
||||||
});
|
});
|
||||||
|
|
||||||
hyprland-git = inputs.hyprland-git.packages.${system};
|
hyprland-git = inputs.hyprland-git.packages.${system};
|
||||||
|
|
||||||
|
vimPlugins =
|
||||||
|
(super.vimPlugins or {})
|
||||||
|
// {
|
||||||
|
resolve-nvim = super.vimUtils.buildVimPlugin rec {
|
||||||
|
pname = "resolve-nvim";
|
||||||
|
src = super.fetchFromGitHub {
|
||||||
|
owner = "spacedentist";
|
||||||
|
repo = "resolve.nvim";
|
||||||
|
rev = "1ed8bcc9ce7d43a0e8e05d0001c9cadb822d95a8";
|
||||||
|
sha256 = "1h359zv3hcbg81plch1j1hs9nxpi719ygl2slkfdqigz406r9q86";
|
||||||
|
};
|
||||||
|
doCheck = false;
|
||||||
|
version = builtins.toString (src.lastModified or "master");
|
||||||
|
};
|
||||||
|
};
|
||||||
})
|
})
|
||||||
|
|
|
||||||
18
snow.nix
18
snow.nix
|
|
@ -6,6 +6,7 @@ cerulean.mkNexus ./. (self: {
|
||||||
modules = with inputs; [];
|
modules = with inputs; [];
|
||||||
|
|
||||||
base = inputs.nixpkgs;
|
base = inputs.nixpkgs;
|
||||||
|
homeManager = inputs.home-manager;
|
||||||
|
|
||||||
groups = {
|
groups = {
|
||||||
servers = {};
|
servers = {};
|
||||||
|
|
@ -21,9 +22,11 @@ cerulean.mkNexus ./. (self: {
|
||||||
system = "x86_64-linux";
|
system = "x86_64-linux";
|
||||||
|
|
||||||
base = inputs.nixpkgs-unstable;
|
base = inputs.nixpkgs-unstable;
|
||||||
|
homeManager = inputs.home-manager-unstable;
|
||||||
|
|
||||||
modules = with inputs; [
|
modules = with inputs; [
|
||||||
sddm-silent.nixosModules.default
|
sddm-silent.nixosModules.default
|
||||||
|
inputs.mango.nixosModules.mango
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
@ -47,7 +50,11 @@ cerulean.mkNexus ./. (self: {
|
||||||
|
|
||||||
networking.hostName = "home-assistant";
|
networking.hostName = "home-assistant";
|
||||||
|
|
||||||
boot.kernelParams = ["console=ttyS0" "console=ttyS1" "8250.nr_uarts=2"];
|
boot.kernelParams = [
|
||||||
|
"console=ttyS0"
|
||||||
|
"console=ttyS1"
|
||||||
|
"8250.nr_uarts=2"
|
||||||
|
];
|
||||||
systemd.services."serial-getty@ttyS1".enable = true;
|
systemd.services."serial-getty@ttyS1".enable = true;
|
||||||
|
|
||||||
microvm = {
|
microvm = {
|
||||||
|
|
@ -55,9 +62,12 @@ cerulean.mkNexus ./. (self: {
|
||||||
|
|
||||||
# needed to get interface working
|
# needed to get interface working
|
||||||
qemu.extraArgs = [
|
qemu.extraArgs = [
|
||||||
"-monitor" "unix:/var/lib/microvms/home-assistant/monitor.sock,server,nowait"
|
"-monitor"
|
||||||
"-chardev" "socket,id=serial1,path=/var/lib/microvms/home-assistant/serial.sock,server=on,wait=off"
|
"unix:/var/lib/microvms/home-assistant/monitor.sock,server,nowait"
|
||||||
"-serial" "chardev:serial1"
|
"-chardev"
|
||||||
|
"socket,id=serial1,path=/var/lib/microvms/home-assistant/serial.sock,server=on,wait=off"
|
||||||
|
"-serial"
|
||||||
|
"chardev:serial1"
|
||||||
];
|
];
|
||||||
|
|
||||||
# memory cannot be 2GB so i doubled it and used 4GB:
|
# memory cannot be 2GB so i doubled it and used 4GB:
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,4 @@
|
||||||
{ config, lib, pkgs, ... }:
|
{pkgs, ...}: {
|
||||||
{
|
|
||||||
services.home-assistant = {
|
services.home-assistant = {
|
||||||
enable = true;
|
enable = true;
|
||||||
configDir = "/var/lib/hass/hass";
|
configDir = "/var/lib/hass/hass";
|
||||||
|
|
@ -12,9 +11,17 @@
|
||||||
"esphome"
|
"esphome"
|
||||||
"met"
|
"met"
|
||||||
"radio_browser"
|
"radio_browser"
|
||||||
|
"hassio"
|
||||||
|
"stream"
|
||||||
|
"cast"
|
||||||
|
"plex"
|
||||||
|
"dhcp"
|
||||||
|
"go2rtc"
|
||||||
|
"mobile_app"
|
||||||
];
|
];
|
||||||
|
|
||||||
extraPackages = python3Packages: with python3Packages; [
|
extraPackages = python3Packages:
|
||||||
|
with python3Packages; [
|
||||||
getmac
|
getmac
|
||||||
aiohue
|
aiohue
|
||||||
numpy
|
numpy
|
||||||
|
|
@ -32,10 +39,10 @@
|
||||||
# configures the config directory to be mounted
|
# configures the config directory to be mounted
|
||||||
# correctly with the right permissions
|
# correctly with the right permissions
|
||||||
systemd.services.hass-permissions = {
|
systemd.services.hass-permissions = {
|
||||||
wantedBy = [ "multi-user.target" ];
|
wantedBy = ["multi-user.target"];
|
||||||
after = [ "var-lib-hass.mount" ];
|
after = ["var-lib-hass.mount"];
|
||||||
requires = [ "var-lib-hass.mount" ];
|
requires = ["var-lib-hass.mount"];
|
||||||
before = [ "home-assistant.service" ];
|
before = ["home-assistant.service"];
|
||||||
serviceConfig = {
|
serviceConfig = {
|
||||||
Type = "oneshot";
|
Type = "oneshot";
|
||||||
ExecStart = "${pkgs.bash}/bin/bash -c 'mkdir -p /var/lib/hass/hass && chown hass:hass /var/lib/hass/hass'";
|
ExecStart = "${pkgs.bash}/bin/bash -c 'mkdir -p /var/lib/hass/hass && chown hass:hass /var/lib/hass/hass'";
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue