[
  {
    "path": ".config/fish/aliases.fish",
    "content": "# ┌─────────┐\n# │ Aliases │\n# └─────────┘\n\n# ── Listing ──\nalias ls 'eza -1 --icons=auto'\nalias l 'eza -lh --icons=auto'\nalias ll 'eza -lha --icons=auto --sort=name --group-directories-first'\nalias ld 'eza -lhD --icons=auto'\nalias lt 'eza --icons=auto --tree'\nalias ltt 'eza --tree --level=2 --long --icons --git'\nalias lta 'lt -a'\n\n# ── Navigation ──\nalias cd 'z'\nalias .. 'cd ..'\nalias ... 'cd ../..'\n\n# ── Editors ──\nabbr -a n nvim\nalias zed 'zeditor'\nabbr -a c 'code .'\n\n# ── Config files ──\nalias bfile 'nvim ~/.bashrc'\nalias ffile 'nvim ~/.config/fish/config.fish'\n\n# ── File managers & terminals ──\nabbr -a zz yazi\nabbr -a open 'thunar .'\n\n# ── Search & history ──\nabbr -a h \"history | grep \"\n\n# ── Dev tools ──\nabbr -a nd 'npm run dev'\nabbr -a mr 'make run'\nabbr -a mp 'makepkg -si'\nabbr -a lg lazygit\nabbr -a d docker\nabbr -a gits 'git status'\nabbr -a ghp 'gh repo create --public $(basename \"$PWD\") --source=. --description=\"desc\" --push'\n\n# ── Mobile & Android ──\nalias emu \"QT_QPA_PLATFORM=xcb ~/Android/Sdk/emulator/emulator -avd Pixel_9 &\"\n\n# ── Media ──\nalias rip \"yt-dlp -x --audio-format=\\\"mp3\\\"\"\n\n# ── TTY fonts ──\nabbr -a bigfont \"setfont ter-132b\"\nabbr -a regfont \"setfont default8x16\"\n\n# ── Safety wrappers ──\nabbr -a mkdir 'mkdir -p'\nabbr -a ping 'ping -c 10'\nabbr -a tar \"tar -xvf\"\n\n# ── System ──\nalias last-updated 'grep -i \"full system upgrade\" /var/log/pacman.log | tail -n 1'\nalias pwreset 'faillock --reset --user vyrx'\nabbr -a pg 'ping -c 10 google.com'\nalias cache 'du -sh /var/cache/pacman/pkg .cache/paru'\nalias folders 'du -h --max-depth=1'\n\n# ── Package management ──\nalias pp \"paru -Slq | fzf --multi --preview 'paru -Sii {1}' --preview-window=down:55% | xargs -ro paru -S\"\nalias cleanup 'sudo pacman -Rns (pacman -Qdtq)'\nalias mirrorfix 'sudo reflector --latest 20 --sort rate --save /etc/pacman.d/mirrorlist'\nalias cleanc 'sudo pacman -Sc && yay -Sc'\n\n# ── Shell switching ──\nalias tobash \"chsh $USER -s /usr/bin/bash && echo 'Log out and log back in for change to take effect.'\"\nalias tofish \"chsh $USER -s /usr/bin/fish && echo 'Log out and log back in for change to take effect.'\"\n\n# ── Tmux ──\nabbr -a tmuxk 'tmux kill-session'\n\n# ── Misc ──\nabbr -a chx 'chmod +x'\nabbr -a x exit\n\n# ── Snapper / BTRFS ──\nabbr -a slsr 'sudo snapper -c root list'\nabbr -a slsh 'sudo snapper -c home list'\nabbr -a sdu 'sudo btrfs filesystem du -s /.snapshots/*'\nabbr -a sdelr 'sudo snapper -c root delete'\nabbr -a sdelh 'sudo snapper -c home delete --sync'\nabbr -a sbdel 'sudo btrfs subvolume delete'\n"
  },
  {
    "path": ".config/fish/completions/pipx.fish",
    "content": "\nfunction __fish_pipx_complete\n    set -x _ARGCOMPLETE 1\n    set -x _ARGCOMPLETE_DFS \\t\n    set -x _ARGCOMPLETE_IFS \\n\n    set -x _ARGCOMPLETE_SUPPRESS_SPACE 1\n    set -x _ARGCOMPLETE_SHELL fish\n    set -x COMP_LINE (commandline -p)\n    set -x COMP_POINT (string length (commandline -cp))\n    set -x COMP_TYPE\n    if set -q _ARC_DEBUG\n        pipx 8>&1 9>&2 1>&9 2>&1\n    else\n        pipx 8>&1 9>&2 1>/dev/null 2>&1\n    end\nend\ncomplete --command pipx -f -a '(__fish_pipx_complete)'\n"
  },
  {
    "path": ".config/fish/config.fish",
    "content": "set -g fish_greeting\nfish_default_key_bindings\n\n# Environment\nset -gx EDITOR nvim\nset -gx SUDO_EDITOR $EDITOR\nset -gx VISUAL nvim\nset -gx TERMINAL kitty\nset -gx MANPAGER \"nvim +Man!\"\nset -gx MPD_HOST \"/run/user/\"(id -u)\"/mpd/socket\"\n\n# PATH\nfish_add_path ~/.local/bin\n# fish_add_path ~/Scripts\nfish_add_path ~/dev-tools/flutter/bin\nfish_add_path ~/.pub-cache/bin\nfish_add_path ~/.spicetify/bin\n\n# Keybinds\nbind \\ck sessionizer\n\n# Tools\nfzf --fish | source\nzoxide init fish | source\nstarship init fish | source\n\n# Keychain\nif status is-interactive\n    keychain --eval --quiet id_rsa | source\nend\n\n# Aliases\nsource ~/.config/fish/aliases.fish\n"
  },
  {
    "path": ".config/fish/functions/android-studio-wayland.fish",
    "content": "function android-studio-wayland\n    env GDK_BACKEND=x11 android-studio $argv\nend\n"
  },
  {
    "path": ".config/fish/functions/flutter-watch.fish",
    "content": "function flutter-watch\n    # Ensure the temp file for the PID is available\n    set pid_file \"/tmp/tf1.pid\"\n    touch $pid_file\n\n    # Run flutter and watch for changes\n    tmux send-keys \"flutter run $argv --pid-file=$pid_file\" Enter \\; \\\n         split-window -v \\; \\\n         send-keys 'npx -y nodemon -e dart -x \"cat /tmp/tf1.pid | xargs kill -s USR1\"' Enter \\; \\\n         resize-pane -y 5 -t 1 \\; \\\n         select-pane -t 0 \\;\nend\n"
  },
  {
    "path": ".config/fish/functions/sessionizer.fish",
    "content": "function sessionizer --description \"Launch sessionX script\"\n    $HOME/Scripts/sessionX\nend\n"
  },
  {
    "path": ".config/fish/functions/yazi.fish",
    "content": "# yazi shell wrapper (change the current working directory when exiting Yazi)\nfunction y\n    set tmp (mktemp -t \"yazi-cwd.XXXXXX\")\n    yazi $argv --cwd-file=\"$tmp\"\n    if read -z cwd <\"$tmp\"; and [ -n \"$cwd\" ]; and [ \"$cwd\" != \"$PWD\" ]\n        builtin cd -- \"$cwd\"\n    end\n    rm -f -- \"$tmp\"\nend\n"
  },
  {
    "path": ".config/fuzzel/fuzzel.ini",
    "content": "[main]\nfont=Inter:size=9.5\nwidth=28\nlines=8\nanchor=center\nprompt=\"> \"\nterminal=kitty\nicon-theme=Papirus-Dark\nicons-enabled=yes\nmatch-mode=fuzzy\nhorizontal-pad=10\nvertical-pad=6\ninner-pad=6\nline-height=15\ndpi-aware=auto\nlayer=overlay\nexit-on-keyboard-focus-loss=yes\n\n[colors]\nbackground=0d0d0dff\ntext=999999ff\nmatch=ccccccff\nselection=1a1a1aff\nselection-text=e0e0e0ff\nselection-match=ffffffc0\nborder=0d0d0dff\n\n[border]\nwidth=0\nradius=10\n\n[key-bindings]\ndelete-line-forward=none\nprev=Up Control+p Control+k\nnext=Down Control+n Control+j\ncancel=Escape\n"
  },
  {
    "path": ".config/geary/user-style.css",
    "content": "@media (prefers-color-scheme: dark) {\n  :root,\n  body,\n  *:not(a) {\n    background-color: #1e1e1e !important;\n    color: #dcdcdc !important;\n  }\n\n  a {\n    color: #78aeed !important;\n  }\n\n  table,\n  div,\n  section {\n    background-color: transparent !important;\n  }\n\n  img {\n    filter: brightness(0.85) !important;\n  }\n}\n"
  },
  {
    "path": ".config/ghostty/config",
    "content": "# Fonts\nfont-family = \"JetBrainsMono Nerd Font\"\nfont-style = Medium\nfont-size = 11\n\n# Mouse\nmouse-hide-while-typing = true\n\n# Window\nwindow-theme = ghostty\nwindow-padding-x = 10\nwindow-padding-y = 0\nconfirm-close-surface=false\nresize-overlay = never\ngtk-toolbar-style = flat\n# gtk-single-instance = false\nbackground-opacity = 1\n\n# Cursor\ncursor-style = block\ncursor-style-blink = false\nshell-integration-features = no-cursor\n\n# Keybindings\nkeybind = ctrl+shift+h=goto_split:left\nkeybind = ctrl+shift+j=goto_split:bottom\nkeybind = ctrl+shift+k=goto_split:top\nkeybind = ctrl+shift+l=goto_split:right\nkeybind = super+shift+enter=new_split:auto\nkeybind = super+alt+m=toggle_split_zoom\nkeybind = super+shift+q=close_surface\nkeybind = ctrl+shift+comma=reload_config\n\n# Scrolling\nscrollback-limit = 100000\nmouse-scroll-multiplier = 2\n\nbackground = #0a0a0a\nforeground = #c0c0c0\ncursor-color = #c0c0c0\nselection-foreground = #0a0a0a\nselection-background = #c0c0c0\n\npalette = 0=#1a1a1a\npalette = 1=#a85858\npalette = 2=#6a8a5a\npalette = 3=#c4a65a\npalette = 4=#6a7a8a\npalette = 5=#8a6a8a\npalette = 6=#6a8a8a\npalette = 7=#a0a0a0\npalette = 8=#3a3a3a\npalette = 9=#c06060\npalette = 10=#8aaa7a\npalette = 11=#d4b87c\npalette = 12=#7a8a9a\npalette = 13=#9a7a9a\npalette = 14=#7a9a9a\npalette = 15=#c0c0c0\n"
  },
  {
    "path": ".config/kanshi/config",
    "content": "# swaymsg -t get_outputs  →  check output names & modes\n# kanshictl switch <name>  →  switch to a profile by name\n\nprofile laptop-only {\n    output eDP-1 enable mode 1920x1080@144.003Hz\n}\n\nprofile laptop-left {\n    output eDP-1    enable mode 1920x1080@144.003Hz position 0,0\n    output HDMI-A-1 enable mode 1920x1080@100Hz     position 1920,0\n}\n\nprofile monitor-top {\n    output HDMI-A-1 enable mode 1920x1080@100Hz     position 0,0\n    output eDP-1    enable mode 1920x1080@144.003Hz position 0,1080\n}\n\nprofile monitor-right {\n    output HDMI-A-1 enable mode 1920x1080@100Hz     position 0,0\n    output eDP-1    enable mode 1920x1080@144.003Hz position 1920,0\n}\n\nprofile monitor-only {\n    output HDMI-A-1 enable mode 1920x1080@100Hz position 0,0\n    output eDP-1    disable\n}\n"
  },
  {
    "path": ".config/kitty/kitty.conf",
    "content": "# Fonts\nfont_family JetBrainsMono Nerd Font\nbold_italic_font auto\nfont_size 11\n\n# Window\nwindow_padding_width 0 5\n# background_opacity 0.95\nhide_window_decorations yes\nscrollback_indicator_opacity 0.0\n\n# Cursor\ncursor_trail 1\ncursor_shape block\ncursor_blink_interval 0\nshell_integration no-cursor\n\n# Behavior\nenable_audio_bello no\nconfirm_os_window_close 0\nallow_remote_control yes\n\n# Colors\nbackground #0d0d0d\nforeground #c1c1c1\ncursor #c1c1c1\ncursor_text_color #000000\nselection_foreground #000000\nselection_background #c1c1c1\n\ncolor0 #000000\ncolor1 #c45555\ncolor2 #9b8d7f\ncolor3 #8c7f70\ncolor4 #7a9aaa\ncolor5 #999999\ncolor6 #a7c7c7\ncolor7 #c1c1c1\ncolor8 #333333\ncolor9 #d47070\ncolor10 #9b8d7f\ncolor11 #8c7f70\ncolor12 #4a5f6a\ncolor13 #999999\ncolor14 #9cb7b7\ncolor15 #c1c1c1\n"
  },
  {
    "path": ".config/mako/colors",
    "content": "background-color=#0d0d0dee\ntext-color=#c1c1c1\nborder-color=#b3c7cc\n"
  },
  {
    "path": ".config/mako/config",
    "content": "include=~/.config/mako/colors\nsort=-time\nlayer=overlay\nwidth=320\nheight=100\nborder-size=0\nborder-radius=4\nmargin=10\npadding=10\nicons=1\nmax-icon-size=64\nmax-history=10\ndefault-timeout=10000\nignore-timeout=1\nfont=Inter 11\n\n[app-name=lol]\nlayer=overlay\nhistory=0\n\n\n"
  },
  {
    "path": ".config/mpd/mpd.conf",
    "content": "# ~/.config/mpd/mpd.conf\n\nmusic_directory     \"~/Music/mpd\"\nplaylist_directory  \"~/Music/Playlists\"\n\nauto_update         \"yes\"\nbind_to_address    \"127.0.0.1\"\nbind_to_address    \"/run/user/1000/mpd/socket\"\nrestore_paused     \"yes\"\nmax_output_buffer_size \"16384\"\n\n# Audio output for your system (choose one)\naudio_output {\n    type \"pulse\"\n    name \"pulse audio\"\n}\n\n# FIFO output for cava visualizer\naudio_output {\n    type   \"fifo\"\n    name   \"cava_fifo\"\n    path   \"/tmp/mpd.fifo\"\n    format \"44100:16:2\"\n}\n"
  },
  {
    "path": ".config/mpdscribble/mpdscribble.conf",
    "content": "[last.fm]\nurl = https://post.audioscrobbler.com/\nusername = YOUR_LASTFM_USERNAME\npassword = YOUR_LASTFM_PASSWORD\n"
  },
  {
    "path": ".config/niri/config.kdl",
    "content": "// Niri Configuration\n// https://github.com/YaLTeR/niri/wiki/Configuration\n\n// ╭───────────────────────────────────────────────────────────────────────╮\n// │ ENVIRONMENT & INPUT                                                   │\n// ╰───────────────────────────────────────────────────────────────────────╯\n\nprefer-no-csd\nscreenshot-path null\n\nenvironment {\n    ELECTRON_OZONE_PLATFORM_HINT \"auto\"\n    QT_QPA_PLATFORM \"wayland\"\n    QT_WAYLAND_DISABLE_WINDOWDECORATION \"1\"\n    XDG_SESSION_TYPE \"wayland\"\n    XDG_CURRENT_DESKTOP \"niri\"\n    QT_QPA_PLATFORMTHEME \"qt6ct\"\n    TERMINAL \"ghostty\"\n    XCURSOR_THEME \"Bibata-Modern-Ice\"\n    XCURSOR_SIZE \"24\"\n}\n\nhotkey-overlay {\n    skip-at-startup\n}\n\ndebug {\n    honor-xdg-activation-with-invalid-serial\n}\n\ninput {\n    keyboard {\n        xkb {\n            layout \"us\"\n        }\n        numlock\n        repeat-delay 200\n        repeat-rate 60\n    }\n\n    touchpad {\n        tap\n        natural-scroll\n    }\n\n    focus-follows-mouse\n    workspace-auto-back-and-forth\n}\n\n\n// ╭───────────────────────────────────────────────────────────────────────╮\n// │ OUTPUTS                                                               │\n// ╰───────────────────────────────────────────────────────────────────────╯\n\noutput \"eDP-1\" {\n    mode \"1920x1080@144.003\"\n    scale 1\n    position x=0 y=0\n}\n\noutput \"HDMI-A-1\" {\n    mode \"1920x1080@100.000\"\n    scale 1\n    // transform \"90\"      \n    position x=1920 y=0\n}\n\n// ╭───────────────────────────────────────────────────────────────────────╮\n// │ LAYOUT & APPEARANCE                                                   │\n// ╰───────────────────────────────────────────────────────────────────────╯\n\nlayout {\n    gaps 0\n    center-focused-column \"never\"\n    default-column-width { proportion 0.5; }\n    background-color \"transparent\"\n\n    preset-column-widths {\n        proportion 0.33333\n        proportion 0.5\n        proportion 0.66667\n    }\n\n    struts {}\n\n    focus-ring {\n        on\n        width 1\n        active-color \"#ffffff66\"\n        inactive-color \"#ffffff11\"\n    }\n}\n\noverview {\n    backdrop-color \"#1a1a1a\"\n    zoom 0.3\n    workspace-shadow {\n        off\n    }\n}\n\n\n// ╭───────────────────────────────────────────────────────────────────────╮\n// │ ANIMATIONS                                                            │\n// ╰───────────────────────────────────────────────────────────────────────╯\n\nanimations {\n    workspace-switch {\n        spring damping-ratio=1.0 stiffness=1000 epsilon=0.0001\n    }\n    window-open {\n        duration-ms 100\n        curve \"ease-out-quad\"\n    }\n    window-close {\n        duration-ms 100\n        curve \"ease-out-cubic\"\n    }\n    horizontal-view-movement {\n        spring damping-ratio=1.0 stiffness=900 epsilon=0.0001\n    }\n    window-movement {\n        spring damping-ratio=1.0 stiffness=800 epsilon=0.0001\n    }\n    window-resize {\n        spring damping-ratio=1.0 stiffness=1000 epsilon=0.0001\n    }\n    config-notification-open-close {\n        spring damping-ratio=0.6 stiffness=1200 epsilon=0.001\n    }\n    screenshot-ui-open {\n        duration-ms 300\n        curve \"ease-out-quad\"\n    }\n    overview-open-close {\n        spring damping-ratio=1.0 stiffness=900 epsilon=0.0001\n    }\n}\n\n\n// ╭───────────────────────────────────────────────────────────────────────╮\n// │ LAYER RULES                                                           │\n// ╰───────────────────────────────────────────────────────────────────────╯\n\nlayer-rule {\n    match namespace=\"waybar\"\n    match at-startup=true\n    opacity 0.90\n\n    shadow {\n        on\n        softness 10\n        spread 5\n        offset x=0 y=5\n    }\n\n    geometry-corner-radius 10\n}\n\n\n// ╭───────────────────────────────────────────────────────────────────────╮\n// │ WINDOW RULES                                                          │\n// ╰───────────────────────────────────────────────────────────────────────╯\n\n// Global defaults\nwindow-rule {\n    geometry-corner-radius 0\n    open-maximized true\n    clip-to-geometry true\n}\n\n// Floating dialogs & popups\nwindow-rule {\n    match app-id=\"confirm\"\n    match app-id=\"satty\"\n    match app-id=\"com.network.manager\"\n    match app-id=\"pavucontrol\"\n    match app-id=\"blueman-manager\"\n    match app-id=\"nm-connection-editor\"\n    match app-id=\"localsend\"\n    match app-id=\"easyeffects\"\n    match app-id=\"Hello\"\n    match app-id=\"xdg-desktop-portal-gtk\"\n    match app-id=\"system-config-printer\"\n    match app-id=\"ghostty_journalctl\"\n    match title=r#\".*Extension.*Bitwarden.*\"#\n    match app-id=\"brave-keep\"\n    match app-id=\"thunar\"\n    match title=\"Oklch Color Picker\"\n    open-floating true\n    default-column-width { proportion 0.5; }\n    default-window-height { proportion 0.5; }\n}\n\n// Terminal applications that should float\nwindow-rule {\n    match app-id=\"ghostty\" title=\"rmpc-music\"\n    match app-id=\"ghostty\" title=\"btop-system\"\n    match app-id=\"ghostty\" title=\"yazi-files\"\n    match app-id=\"ghostty\" title=\"webapp-list\"\n    match app-id=\"ghostty\" title=\"webapp-list\"\n    match app-id=\"ghostty\" title=\"gh-notify\"\n    open-floating true\n    default-column-width { proportion 0.6; }\n    default-window-height { proportion 0.7; }\n}\n\nwindow-rule {\n    match app-id=\"ghostty\" title=\"gh-dash\"\n    open-fullscreen true\n}\n\n// Transparent applications\nwindow-rule {\n    draw-border-with-background false\n    match app-id=\"zed\"\n    match app-id=\"code\"\n    match app-id=\"ghostty\"\n    match app-id=\"vesktop\"\n    match app-id=\"org.qbittorrent.qBittorrent\"\n    match app-id=\"thunar\"\n    match app-id=\"org.gnome.Nautilus\"\n    match app-id=\"zathura\"\n    match app-id=\"obsidian\"\n    match app-id=\"obs-studio\"\n    opacity 0.95\n}\n\n// Terminal windows\nwindow-rule {\n    match app-id=\"com.mitchellh.ghostty\"\n    open-maximized false\n    draw-border-with-background false\n    default-column-width { proportion 0.5; }\n}\n\n// Picture-in-Picture\nwindow-rule {\n    match app-id=r#\"firefox$\"# title=\"^Picture-in-Picture$\"\n    match app-id=\"zen\" title=\"^Picture-in-Picture$\"\n    open-floating true\n    open-focused false\n    default-floating-position x=32 y=32 relative-to=\"bottom-right\"\n    default-column-width { proportion 0.3; }\n    default-window-height { proportion 0.3; }\n}\n\n// Block Bitwarden from screen capture\nwindow-rule {\n    match app-id=r#\"Bitwarden\"#\n    block-out-from \"screen-capture\"\n}\n\n// scrcpy (Android screen mirror)\nwindow-rule {\n    match app-id=\"scrcpy\"\n    open-maximized false\n    default-column-width { fixed 478; }\n    default-window-height { fixed 1080; }\n}\n\n\n// ╭───────────────────────────────────────────────────────────────────────╮\n// │ STARTUP APPLICATIONS                                                  │\n// ╰───────────────────────────────────────────────────────────────────────╯\n\nspawn-sh-at-startup \"/usr/lib/polkit-gnome/polkit-gnome-authentication-agent-1\"\nspawn-sh-at-startup \"swayidle -w timeout 300 'swaylock -f' timeout 600 'niri msg action power-off-monitors' resume 'niri msg action power-on-monitors' before-sleep 'swaylock -f'\"\nspawn-at-startup \"waybar\"\nspawn-at-startup \"mako\"\nspawn-sh-at-startup \"wl-clip-persist --clipboard regular\"\nspawn-sh-at-startup \"wl-paste --watch cliphist store\"\nspawn-at-startup \"kdeconnect-indicator\"\nspawn-sh-at-startup \"$HOME/Scripts/battery-monitor\"\nspawn-sh-at-startup \"$HOME/Scripts/set-wallpaper random\"\n\n\n// ╭───────────────────────────────────────────────────────────────────────╮\n// │ KEYBINDINGS                                                           │\n// ╰───────────────────────────────────────────────────────────────────────╯\n\nbinds {\n\n    // ─── Core Applications ───\n    Mod+Return                          hotkey-overlay-title=\"Open Terminal: ghostty\" { spawn \"ghostty\"; }\n    Mod+Space                           hotkey-overlay-title=\"Open App Launcher: fuzzel\" { spawn-sh \"fuzzel\"; }\n    // Mod+B                               hotkey-overlay-title=\"Open Browser: zen-browser\" { spawn \"zen-browser\"; }\n    Mod+B                              hotkey-overlay-title=\"Open Browser: Brave Browser\" { spawn \"brave\"; }\n    Mod+E                               hotkey-overlay-title=\"File Manager: Thunar\" { spawn \"thunar\"; }\n    Mod+C                               hotkey-overlay-title=\"Open Vs Code Editor\" { spawn \"code\"; }\n    Mod+D                               hotkey-overlay-title=\"Open Discord\" { spawn \"vesktop\"; }\n    // Mod+M                               hotkey-overlay-title=\"Open Spotify\" { spawn \"spotify-launcher\"; }\n    Mod+SHIFT+G                         hotkey-overlay-title=\"Open Email\" { spawn \"geary\"; }\n\n    // ─── Terminal Applications ───\n    Mod+Shift+D                         hotkey-overlay-title=\"Open Lazy Docker\" { spawn-sh \"ghostty -e lazydocker\"; }\n    Alt+Slash                           hotkey-overlay-title=\"Open btop\" { spawn-sh \"ghostty --title='btop-system' -e btop\"; }\n    Alt+N                               hotkey-overlay-title=\"Open Nvim\" { spawn-sh \"ghostty -e nvim\"; }\n    Alt+Q                               hotkey-overlay-title=\"Open Yazi\" { spawn-sh \"ghostty --title='yazi-files' -e yazi\"; }\n    Alt+M                               hotkey-overlay-title=\"Open Rmpc\" { spawn-sh \"ghostty --title='rmpc-music' -e rmpc\"; }\n    Alt+Return                          hotkey-overlay-title=\"Open Github notify\" { spawn-sh \"ghostty --title='gh-notify' -e sh -c 'gh notify; read'\"; }\n    Alt+G                               hotkey-overlay-title=\"Open Github dash\" { spawn-sh \"ghostty --title='gh-dash' -e gh dash\"; }\n    \n\n    // ─── Web Applications ───\n    Mod+A                               hotkey-overlay-title=\"Open ChatGpt\" { spawn-sh \"~/Scripts/launch-webapp https://chatgpt.com\"; }\n    Mod+Shift+A                         hotkey-overlay-title=\"Open Gemini\" { spawn-sh \"~/Scripts/launch-webapp https://gemini.google.com\"; }\n    Mod+Alt+A                               hotkey-overlay-title=\"Open perplexity\" { spawn-sh \"~/Scripts/launch-webapp https://perplexity.ai\"; }\n    Mod+T                               hotkey-overlay-title=\"Open Todoist\" { spawn-sh \"~/Scripts/launch-webapp https://todoist.com\"; }\n    Alt+C                               hotkey-overlay-title=\"Open Calendar\" { spawn-sh \"~/Scripts/launch-webapp https://calendar.google.com\"; }\n    Mod+Y                               hotkey-overlay-title=\"Open Youtube\" { spawn-sh \"~/Scripts/launch-webapp https://youtube.com\"; }\n    Mod+G                               hotkey-overlay-title=\"Open Github\" { spawn-sh \"~/Scripts/launch-webapp https://github.com\"; }\n    Mod+W                               hotkey-overlay-title=\"Open Whatsapp\" { spawn-sh \"~/Scripts/launch-webapp https://web.whatsapp.com\"; }\n    Mod+M                               hotkey-overlay-title=\"Open Spotify\" { spawn-sh \"~/Scripts/launch-webapp https://open.spotify.com/\"; }\n    Mod+X                               hotkey-overlay-title=\"Open X\" { spawn-sh \"~/Scripts/launch-webapp https://x.com\"; }\n    Mod+Backslash                       hotkey-overlay-title=\"Open DevHints\" { spawn-sh \"~/Scripts/launch-webapp https://devhints.io\"; }\n    Mod+I                               hotkey-overlay-title=\"Install Webapps\" { spawn-sh \" ghostty --title='webapp-list' -e ~/Scripts/webapps\"; }\n    Mod+Shift+I                         hotkey-overlay-title=\"Remove Webapps\" { spawn-sh \" ghostty --title='webapp-list' -e ~/Scripts/webapp-remove\"; }\n\n    // ─── Utilities & Tools ───\n    Alt+comma                           hotkey-overlay-title=\"Open Clipboard\" { spawn-sh \"cliphist list | fuzzel --dmenu | cliphist decode | wl-copy\"; }\n    Alt+period                          hotkey-overlay-title=\"Open Emoji\" { spawn-sh \"~/Scripts/fuzzel-emoji\"; }\n    Mod+S                               hotkey-overlay-title=\"Open Volume Control\" { spawn \"pavucontrol\"; }\n    Mod+Backspace                       hotkey-overlay-title=\"Toggle Terminal Transparency\" { spawn-sh \"~/Scripts/toggle-terminal-transparency\"; }\n    Mod+Shift+Space                     hotkey-overlay-title=\"Toggle Waybar\" { spawn-sh \"~/Scripts/toggle-waybar\"; }\n    Mod+SHIFT+M                         hotkey-overlay-title=\"Online Music\" { spawn-sh \"~/Scripts/beats\"; }\n    Mod+Shift+Backspace                 hotkey-overlay-title=\"Mirror Phone\" { spawn-sh \"~/Scripts/run-scrcpy mirror\"; }\n    Mod+Ctrl+Backspace                  hotkey-overlay-title=\"Phone Webcam\" { spawn-sh \"~/Scripts/run-scrcpy webcam\"; }\n    Mod+Alt+Return                      hotkey-overlay-title=\"Attach Existing Tmux Session\" { spawn-sh \"ghostty -e tmux a\"; }\n    Mod+Alt+N                           hotkey-overlay-title=\"Nightlight\" { spawn-sh \"~/Scripts/toggle-wlsunset\"; }\n    Mod+N                               hotkey-overlay-title=\"Notification Restore\" { spawn-sh \"makoctl restore\"; }\n    Mod+Shift+N                         hotkey-overlay-title=\"Notification Clear\" { spawn-sh \"makoctl dismiss -a\"; }\n    // Alt+Space                           hotkey-overlay-title=\"Run Code in Tmux\" { spawn-sh \"ghostty -e ~/Scripts/code-in-tmux\"; }\n    Alt+Space                           hotkey-overlay-title=\"Run Portfolio in Localhost\" { spawn-sh \"launch-webapp https://vyrx.dev\"; }\n    Print                               hotkey-overlay-title=\"Color Picker\" { spawn-sh \"niri msg pick-color| wl-copy\"; }\n    Mod+Alt+P                           hotkey-overlay-title=\"Launch Android Emulator\" { spawn-sh \"env QT_QPA_PLATFORM=xcb ~/Android/Sdk/emulator/emulator -avd Pixel_9 &\"; }\n\n    // ─── Wallpaper ───\n    Ctrl+Alt+Space                      hotkey-overlay-title=\"Random Wallpaper\" { spawn-sh \"~/Scripts/set-wallpaper random\"; }\n    Super+Ctrl+Shift+Space              hotkey-overlay-title=\"Choose Wallpaper\" { spawn-sh \"~/Scripts/set-wallpaper choose\"; }\n\n    // ─── Screenshots & Recording ───\n    Mod+P                               { spawn-sh \"$HOME/Scripts/screenshot\"; }\n    Mod+Shift+P                         { spawn-sh \"$HOME/Scripts/screenshot fullscreen\"; }\n    Mod+R                               hotkey-overlay-title=\"Record Screen (Desktop Audio)\" { spawn-sh \"~/Scripts/screenrecord --with-desktop-audio\"; }\n    Mod+Shift+R                         hotkey-overlay-title=\"Record Screen (Microphone)\" { spawn-sh \"~/Scripts/screenrecord --with-microphone-audio\"; }\n\n    // ─── Session & Power ───\n    Mod+ALT+L                           hotkey-overlay-title=\"Lock Screen: swaylock\" { spawn-sh \"swaylock\"; }\n    Mod+Escape                          hotkey-overlay-title=\"Session Menu: powermenu\" { spawn-sh \"~/Scripts/powermenu\"; }\n    CTRL+ALT+Delete                     { quit; }\n\n    // ─── Monitor Power Controls ───\n    Ctrl+Shift+1                        hotkey-overlay-title=\"Toggle laptop monitor\" { spawn-sh \"$HOME/Scripts/toggle-output eDP-1\"; }\n    Ctrl+Shift+2                        hotkey-overlay-title=\"Toggle external monitor\" { spawn-sh \"$HOME/Scripts/toggle-output HDMI-A-1\"; }\n\n    // ─── Audio Controls ───\n    XF86AudioRaiseVolume                allow-when-locked=true { spawn \"wpctl\" \"set-volume\" \"@DEFAULT_AUDIO_SINK@\" \"0.1+\"; }\n    XF86AudioLowerVolume                allow-when-locked=true { spawn \"wpctl\" \"set-volume\" \"@DEFAULT_AUDIO_SINK@\" \"0.1-\"; }\n    XF86AudioMute                       allow-when-locked=true { spawn \"wpctl\" \"set-mute\" \"@DEFAULT_AUDIO_SINK@\" \"toggle\"; }\n    XF86AudioMicMute                    allow-when-locked=true { spawn \"wpctl\" \"set-mute\" \"@DEFAULT_AUDIO_SOURCE@\" \"toggle\"; }\n    Mod+XF86AudioMute                   allow-when-locked=true { spawn-sh \"~/Scripts/audio-switch\"; }\n\n    // ─── Media Controls ───\n    Mod+F10                             allow-when-locked=true { spawn-sh \"playerctl previous\"; }\n    Mod+F11                             allow-when-locked=true { spawn-sh \"playerctl play-pause\"; }\n    Mod+F12                             allow-when-locked=true { spawn-sh \"playerctl next\"; }\n\n    // ─── Brightness Controls ───\n    XF86MonBrightnessUp                 allow-when-locked=true { spawn \"brightnessctl\" \"--class=backlight\" \"set\" \"+10%\"; }\n    XF86MonBrightnessDown               allow-when-locked=true { spawn \"brightnessctl\" \"--class=backlight\" \"set\" \"10%-\"; }\n    Mod+Alt+XF86AudioRaiseVolume        allow-when-locked=true { spawn \"brightnessctl\" \"--class=backlight\" \"set\" \"+10%\"; }\n    Mod+Alt+XF86AudioLowerVolume        allow-when-locked=true { spawn \"brightnessctl\" \"--class=backlight\" \"set\" \"10%-\"; }\n    Mod+XF86AudioRaiseVolume            allow-when-locked=true { spawn-sh \"ddcutil setvcp 10 + 10\"; }\n    Mod+XF86AudioLowerVolume            allow-when-locked=true { spawn-sh \"ddcutil setvcp 10 - 10\"; }\n\n    // ─── Window Management ───\n    Mod+Q                               { close-window; }\n    Mod+V                               { toggle-window-floating; }\n    Mod+F                               { maximize-column; }\n    Mod+Shift+F                         { fullscreen-window; }\n    Mod+Shift+C                         { center-visible-columns; }\n    Mod+Ctrl+R                          { reset-window-height; }\n    Mod+BracketLeft                     { consume-or-expel-window-left; }\n    Mod+BracketRight                    { consume-or-expel-window-right; }\n\n    // ─── Window Focus (Vim-style) ───\n    Mod+H                               { focus-column-left; }\n    Mod+L                               { focus-column-right; }\n    Mod+K                               { focus-window-or-workspace-up; }\n    Mod+J                               { focus-window-or-workspace-down; }\n    Mod+Left                            { focus-column-left; }\n    Mod+Right                           { focus-column-right; }\n    Mod+Up                              { focus-window-up; }\n    Mod+Down                            { focus-window-down; }\n\n    // ─── Window Movement ───\n    Mod+CTRL+H                          { move-column-left; }\n    Mod+CTRL+L                          { move-column-right; }\n    Mod+Ctrl+K                          { move-window-up-or-to-workspace-up; }\n    Mod+Ctrl+J                          { move-window-down-or-to-workspace-down; }\n    Mod+CTRL+Left                       { move-column-left; }\n    Mod+CTRL+Right                      { move-column-right; }\n    Mod+CTRL+UP                         { move-window-up; }\n    Mod+CTRL+Down                       { move-window-down; }\n\n    // ─── Monitor Focus & Movement ───\n    Mod+Shift+H                         { focus-monitor-left; }\n    Mod+Shift+L                         { focus-monitor-right; }\n    Mod+Shift+K                         { focus-monitor-up; }\n    Mod+Shift+J                         { focus-monitor-down; }\n    Mod+Shift+CTRL+H                    { move-column-to-monitor-left; }\n    Mod+Shift+CTRL+L                    { move-column-to-monitor-right; }\n    Mod+Shift+CTRL+K                    { move-column-to-monitor-up; }\n    Mod+Shift+CTRL+J                    { move-column-to-monitor-down; }\n\n    // ─── Workspace Navigation ───\n    Mod+1                               { focus-workspace 1; }\n    Mod+2                               { focus-workspace 2; }\n    Mod+3                               { focus-workspace 3; }\n    Mod+4                               { focus-workspace 4; }\n    Mod+5                               { focus-workspace 5; }\n    Mod+6                               { focus-workspace 6; }\n    Mod+7                               { focus-workspace 7; }\n    Mod+8                               { focus-workspace 8; }\n    Mod+9                               { focus-workspace 9; }\n    Mod+TAB                             { focus-workspace-previous; }\n    Mod+O                               repeat=false { toggle-overview; }\n\n    // ─── Move Window to Workspace ───\n    Mod+SHIFT+1                         { move-column-to-workspace 1; }\n    Mod+SHIFT+2                         { move-column-to-workspace 2; }\n    Mod+SHIFT+3                         { move-column-to-workspace 3; }\n    Mod+SHIFT+4                         { move-column-to-workspace 4; }\n    Mod+SHIFT+5                         { move-column-to-workspace 5; }\n    Mod+SHIFT+6                         { move-column-to-workspace 6; }\n    Mod+SHIFT+7                         { move-column-to-workspace 7; }\n    Mod+SHIFT+8                         { move-column-to-workspace 8; }\n    Mod+SHIFT+9                         { move-column-to-workspace 9; }\n\n    // ─── Mouse Wheel Workspace Switching ───\n    Mod+WheelScrollDown                 cooldown-ms=150 { focus-workspace-down; }\n    Mod+WheelScrollUp                   cooldown-ms=150 { focus-workspace-up; }\n    Mod+CTRL+WheelScrollDown            cooldown-ms=150 { move-column-to-workspace-down; }\n    Mod+CTRL+WheelScrollUp              cooldown-ms=150 { move-column-to-workspace-up; }\n\n    // ─── Mouse Wheel Column Navigation ───\n    Mod+WheelScrollRight                { focus-column-right; }\n    Mod+WheelScrollLeft                 { focus-column-left; }\n    Mod+CTRL+WheelScrollRight           { move-column-right; }\n    Mod+CTRL+WheelScrollLeft            { move-column-left; }\n    Mod+Shift+WheelScrollDown           { focus-column-right; }\n    Mod+Shift+WheelScrollUp             { focus-column-left; }\n    Mod+CTRL+Shift+WheelScrollDown      { move-column-right; }\n    Mod+CTRL+Shift+WheelScrollUp        { move-column-left; }\n\n    // ─── Window Resizing ───\n    Mod+Minus                           { set-column-width \"-10%\"; }\n    Mod+Equal                           { set-column-width \"+9%\"; }\n    Mod+Shift+Minus                     { set-window-height \"-10%\"; }\n    Mod+Shift+Equal                     { set-window-height \"+10%\"; }\n}\n"
  },
  {
    "path": ".config/nvim/.luarc.json",
    "content": "{\n  \"diagnostics.globals\": [\"vim\"]\n}\n"
  },
  {
    "path": ".config/nvim/after/ftplugin/css.lua",
    "content": "vim.opt_local.shiftwidth = 2\nvim.opt_local.tabstop = 2\nvim.opt_local.softtabstop = 2\nvim.opt_local.expandtab = true\n"
  },
  {
    "path": ".config/nvim/after/ftplugin/dart.lua",
    "content": "vim.opt_local.shiftwidth = 2\nvim.opt_local.tabstop = 2\nvim.opt_local.softtabstop = 2\nvim.opt_local.expandtab = true\n"
  },
  {
    "path": ".config/nvim/after/ftplugin/go.lua",
    "content": "vim.opt_local.shiftwidth = 4\nvim.opt_local.tabstop = 4\nvim.opt_local.softtabstop = 4\nvim.opt_local.expandtab = false\n"
  },
  {
    "path": ".config/nvim/after/ftplugin/html.lua",
    "content": "vim.opt_local.shiftwidth = 2\nvim.opt_local.tabstop = 2\nvim.opt_local.softtabstop = 2\nvim.opt_local.expandtab = true\n"
  },
  {
    "path": ".config/nvim/after/ftplugin/javascript.lua",
    "content": "vim.opt_local.shiftwidth = 2\nvim.opt_local.tabstop = 2\nvim.opt_local.softtabstop = 2\nvim.opt_local.expandtab = true\n"
  },
  {
    "path": ".config/nvim/after/ftplugin/lua.lua",
    "content": "vim.opt_local.shiftwidth = 2\nvim.opt_local.tabstop = 2\nvim.opt_local.softtabstop = 2\nvim.opt_local.expandtab = true\n"
  },
  {
    "path": ".config/nvim/after/ftplugin/python.lua",
    "content": "vim.opt_local.shiftwidth = 4\nvim.opt_local.tabstop = 4\nvim.opt_local.softtabstop = 4\nvim.opt_local.expandtab = true\n"
  },
  {
    "path": ".config/nvim/after/ftplugin/typescript.lua",
    "content": "vim.opt_local.shiftwidth = 2\nvim.opt_local.tabstop = 2\nvim.opt_local.softtabstop = 2\nvim.opt_local.expandtab = true\n"
  },
  {
    "path": ".config/nvim/init.lua",
    "content": "vim.opt.termguicolors = true\n\nrequire(\"config.lazy\")\n\n"
  },
  {
    "path": ".config/nvim/lua/config/autocmd.lua",
    "content": "-- ================================================================================================\n-- TITLE : auto-commands\n-- ABOUT : automatically run code on defined events (e.g. save, yank)\n-- ================================================================================================\nlocal on_attach = require(\"utils.lsp\").on_attach\n\n-- Restore last cursor position when reopening a file\nlocal last_cursor_group = vim.api.nvim_create_augroup(\"LastCursorGroup\", {})\nvim.api.nvim_create_autocmd(\"BufReadPost\", {\n  group = last_cursor_group,\n  callback = function()\n    local mark = vim.api.nvim_buf_get_mark(0, '\"')\n    local lcount = vim.api.nvim_buf_line_count(0)\n    if mark[1] > 0 and mark[1] <= lcount then\n      pcall(vim.api.nvim_win_set_cursor, 0, mark)\n    end\n  end,\n})\n\n-- Highlight the yanked text for 200ms\nlocal highlight_yank_group = vim.api.nvim_create_augroup(\"HighlightYank\", {})\nvim.api.nvim_create_autocmd(\"TextYankPost\", {\n  group = highlight_yank_group,\n  pattern = \"*\",\n  callback = function()\n    vim.hl.on_yank {\n      higroup = \"IncSearch\",\n      timeout = 200,\n    }\n  end,\n})\n\n-- format on save using efm langserver and configured formatters\nlocal lsp_fmt_group = vim.api.nvim_create_augroup(\"FormatOnSaveGroup\", {})\nvim.api.nvim_create_autocmd(\"BufWritePre\", {\n  group = lsp_fmt_group,\n  callback = function()\n    -- Check if autoformat is enabled\n    if not vim.g.autoformat_enabled then\n      return\n    end\n\n    local efm = vim.lsp.get_clients { name = \"efm\" }\n    if vim.tbl_isempty(efm) then\n      return\n    end\n    vim.lsp.buf.format { name = \"efm\", async = true }\n  end,\n})\n\n-- Toggle autoformat command\nvim.g.autoformat_enabled = true --Global toggle for autoformatting (default: enabled)\nvim.api.nvim_create_user_command(\"ToggleAutoformat\", function()\n  vim.g.autoformat_enabled = not vim.g.autoformat_enabled\n  if vim.g.autoformat_enabled then\n    vim.notify(\"Autoformat enabled\", vim.log.levels.INFO)\n  else\n    vim.notify(\"Autoformat disabled\", vim.log.levels.WARN)\n  end\nend, {})\n\n-- on attach function shortcuts\nlocal lsp_on_attach_group = vim.api.nvim_create_augroup(\"LspMappings\", {})\nvim.api.nvim_create_autocmd(\"LspAttach\", {\n  group = lsp_on_attach_group,\n  callback = on_attach,\n})\n"
  },
  {
    "path": ".config/nvim/lua/config/keymaps.lua",
    "content": "-- Set leader key\nvim.g.mapleader = \" \"\nvim.g.maplocalleader = \" \"\n\n-- Keymap helper\nlocal set = vim.keymap.set\nlocal opts = { noremap = true, silent = true }\n\n-- jj to escape insert mode\nset(\"i\", \"jj\", \"<Esc>\", opts)\n\n-- Disable the spacebar key's default behavior in Normal and Visual modes\nset({ \"n\", \"v\" }, \"<Space>\", \"<Nop>\", { silent = true })\n\n-- Split window\nset(\"n\", \"ss\", \":split<Return>\", opts)\nset(\"n\", \"sv\", \":vsplit<Return>\", opts)\nset(\"n\", \"sx\", \"<cmd>close<CR>\", opts)\n\n-- Make current file executable\nvim.keymap.set(\"n\", \"<leader>X\", \"<cmd>!chmod +x %<CR>\", { silent = true, desc = \"Make current file executable\" })\n\n-- Jumping\nset({ \"n\", \"o\", \"x\" }, \"<s-h>\", \"^\", { desc = \"Jump to beginning of line\" })\nset({ \"n\", \"o\", \"x\" }, \"<s-l>\", \"g_\", { desc = \"Jump to end of line\" })\n\n-- Copy file paths\nset(\"n\", \"<leader>cf\", '<cmd>let @+ = expand(\"%\")<CR>', { desc = \"Copy File Name\" })\n\n-- live-server\nset(\"n\", \"<leader>ps\", \":LiveServerStart<CR>\", { desc = \"Start Live Server\" })\nset(\"n\", \"<leader>pe\", \":LiveServerStop<CR>\", { desc = \"Stop Live Server\" })\n\n-- file-explorer\nset(\"n\", \"<leader>e\", \":NvimTreeToggle<CR>\", { desc = \"Nvim tree \" })\n\n-- Center the screen after scrolling up/down with Ctrl-u/d\nset(\"n\", \"<C-u>\", \"<C-u>zz\")\nset(\"n\", \"<C-d>\", \"<C-d>zz\")\nset(\"n\", \"n\", \"nzzzv\", opts)\nset(\"n\", \"N\", \"Nzzzv\", opts)\n\n-- Stay in indent mode\nset(\"v\", \"<\", \"<gv\", opts)\nset(\"v\", \">\", \">gv\", opts)\n\n-- Toggle line wrapping\nset(\"n\", \"<leader>lw\", \"<cmd>set wrap!<CR>\", opts)\n\n-- save, quit\nset(\"n\", \"<leader>w\", \"<cmd> w <cr>\", opts)\nset(\"n\", \"<leader>sn\", \":<cmd>noautocmd w <cr>\", opts)\n\n-- move a blocks of text up/down with K/J in visual mode\nset(\"v\", \"K\", \":m '<-2<CR>gv=gv\", { silent = true })\nset(\"v\", \"J\", \":m '>+1<CR>gv=gv\", { silent = true })\n\n-- delete single character without copying into register\nset(\"n\", \"x\", '\"_x', opts)\n\n-- search and replace the word under cursor in the file with <leader>s\nset(\"n\", \"<leader>sr\", [[:%s/\\<<C-r><C-w>\\>/<C-r><C-w>/gI<Left><Left><Left>]])\n\n-- lazygit\nset(\"n\", \"<leader>gg\", \":LazyGit<CR>\", opts)\n\n-- Disable continuations\nset(\"n\", \"<Leader>o\", \"o<Esc>^Da\", opts)\nset(\"n\", \"<Leader>O\", \"O<Esc>^Da\", opts)\n\n-- delete without yanking\nset({ \"n\", \"v\" }, \"<leader>d\", [[\"_d]])\n\n-- Paste in visual mode without yanking replaced text\nset(\"x\", \"p\", [[\"_dP]])\n\n-- Resize window\nset(\"n\", \"<leader><left>\", \":vertical resize +20<cr>\")\nset(\"n\", \"<leader><right>\", \":vertical resize -20<cr>\")\nset(\"n\", \"<leader><up>\", \":resize +10<cr>\")\nset(\"n\", \"<leader><down>\", \":resize -10<cr>\")\n\n-- Buffers\nset(\"n\", \"<Tab>\", \":bnext<cr>\", opts)\nset(\"n\", \"<S-Tab>\", \":bprevious<cr>\", opts)\nset(\"n\", \"<leader>bd\", \":bdelete!<cr>\", opts) --close buffer\nset(\"n\", \"<leader>bn\", \"<cmd> enew <cr>\", opts) -- new buffer\n\n-- Lazy and Mason\nset(\"n\", \"<leader>ll\", \"<cmd>Lazy<CR>\", { desc = \"Open Lazy plugin manager\" })\nset(\"n\", \"<leader>lm\", \"<cmd>Mason<CR>\", { desc = \"Open Mason LSP installer\" })\n\n-- Toggle autoformat on save\nset(\"n\", \"<leader>tf\", \":ToggleAutoformat<CR>\", { desc = \"Toggle format on save\" })\n\n-- Markdown render\nset(\"n\", \"<leader>pt\", \"<cmd>RenderMarkdown toggle<CR>\", { desc = \"Toggle Markdown Render\" })\n\n-- Flutter watch\nset(\n  \"n\",\n  \"<leader>ff\",\n  \"<cmd>silent !tmux new-window -n flutter-run -c %:p:h && tmux send-keys 'flutter-watch' Enter<CR>\",\n  { desc = \"Flutter watch\" }\n)\n\n"
  },
  {
    "path": ".config/nvim/lua/config/lazy.lua",
    "content": "-- Install lazy.nvim\nlocal lazypath = vim.fn.stdpath \"data\" .. \"/lazy/lazy.nvim\"\nif not vim.loop.fs_stat(lazypath) then\n  vim.fn.system {\n    \"git\",\n    \"clone\",\n    \"--filter=blob:none\",\n    \"https://github.com/folke/lazy.nvim.git\",\n    \"--branch=stable\",\n    lazypath,\n  }\nend\nvim.opt.rtp:prepend(lazypath)\n\n-- Config\nrequire \"config.options\"\nrequire \"config.keymaps\"\nrequire \"config.autocmd\"\n\nrequire(\"lazy\").setup {\n  spec = {\n    { import = \"plugins\" },\n  },\n  rtp = {\n    disabled_plugins = {\n      \"netrw\",\n      \"netrwPlugin\",\n    },\n  },\n  -- automatically check for plugin updates\n  checker = { enabled = true },\n}\n"
  },
  {
    "path": ".config/nvim/lua/config/options.lua",
    "content": "vim.opt.fillchars = { eob = \" \" }\nvim.opt.winbar = nil\nvim.o.hlsearch = false -- Set highlight on search\nvim.wo.number = true -- Make line numbers default\nvim.o.mouse = \"a\" -- Enable mouse mode\nvim.o.clipboard = \"unnamedplus\" -- Sync clipboard between OS and Neovim.\nvim.o.breakindent = true -- Enable break indent\nvim.o.undofile = true -- Save undo history\nvim.o.ignorecase = true -- Case-insensitive searching UNLESS \\C or capital in search\nvim.o.smartcase = true -- smart case\nvim.wo.signcolumn = \"yes\" -- Keep signcolumn on by default\nvim.o.updatetime = 250 -- Decrease update time\nvim.o.timeoutlen = 300 -- time to wait for a mapped sequence to complete (in milliseconds)\nvim.o.backup = false -- creates a backup file\nvim.o.writebackup = false -- if a file is being edited by another program (or was written to file while editing with another program), it is not allowed to be edited\nvim.o.completeopt = \"menuone,noselect\" -- Set completeopt to have a better completion experience\nvim.opt.termguicolors = true -- set termguicolors to enable highlight groups\nvim.o.whichwrap = \"bs<>[]hl\" -- which \"horizontal\" keys are allowed to travel to prev/next line\nvim.o.wrap = false -- display lines as one long line\nvim.o.linebreak = true -- companion to wrap don't split words\nvim.o.scrolloff = 4 -- minimal number of screen lines to keep above and below the cursor\nvim.o.sidescrolloff = 8 -- minimal number of screen columns either side of cursor if wrap is `false`\nvim.o.relativenumber = true -- set relative numbered lines\nvim.o.numberwidth = 4 -- set number column width to 2 {default 4}\nvim.o.shiftwidth = 4 -- the number of spaces inserted for each indentation\nvim.o.tabstop = 4 -- insert n spaces for a tab\nvim.o.softtabstop = 4 -- Number of spaces that a tab counts for while performing editing operations\nvim.o.expandtab = true -- convert tabs to spaces\nvim.o.cursorline = false -- highlight the current line\nvim.o.splitbelow = true -- force all horizontal splits to go below current window\nvim.o.splitright = true -- force all vertical splits to go to the right of current window\nvim.o.swapfile = false -- creates a swapfile\nvim.o.smartindent = true -- make indenting smarter again\nvim.o.showmode = false -- we don't need to see things like -- INSERT -- anymore\nvim.o.showtabline = 1 -- show if there are at least two tabs\nvim.o.backspace = \"indent,eol,start\" -- allow backspace on\nvim.o.pumheight = 10 -- pop up menu height\nvim.o.conceallevel = 0 -- so that `` is visible in markdown files\nvim.o.fileencoding = \"utf-8\" -- the encoding written to a file\nvim.o.cmdheight = 1 -- more space in the neovim command line for displaying messages\nvim.o.autoindent = true -- copy indent from current line when starting new one\nvim.opt.shortmess:append \"c\" -- don't give |ins-completion-menu| messages\nvim.opt.iskeyword:append \"-\" -- hyphenated words recognized by searches\nvim.opt.formatoptions:remove { \"c\", \"r\", \"o\" } -- don't insert the current comment leader automatically for auto-wrapping comments using 'textwidth', hitting <Enter> in insert mode, or hitting 'o' or 'O' in normal mode.\nvim.opt.runtimepath:remove \"/usr/share/vim/vimfiles\" -- separate vim plugins from neovim in case vim still in use\n\n"
  },
  {
    "path": ".config/nvim/lua/plugins/ai.lua",
    "content": "return {\n  {\n    \"Exafunction/windsurf.nvim\",\n    dependencies = {\n      \"nvim-lua/plenary.nvim\",\n      \"hrsh7th/nvim-cmp\",\n    },\n    config = function()\n      require(\"codeium\").setup {}\n    end,\n    keys = {\n      { \"<leader>ct\", \"<cmd>Codeium Toggle<CR>\", mode = \"n\", desc = \"Toggle Codeium\" },\n      { \"<leader>cc\", \"<cmd>Codeium Chat<CR>\", mode = \"n\", desc = \"Codeium Chat\" },\n    },\n  },\n  {\n    \"zbirenbaum/copilot.lua\",\n    opts = {\n      suggestion = {\n        auto_trigger = false,\n        keymap = {\n          accept = \"<C-l>\",\n          accept_word = \"<M-l>\",\n          accept_line = \"<M-S-l>\",\n          next = \"<M-]>\",\n          prev = \"<M-[>\",\n          dismiss = \"<C-]>\",\n        },\n      },\n      filetypes = {\n        markdown = true,\n        help = true,\n      },\n    },\n  },\n\n  -- copilot chat\n  {\n    \"CopilotC-Nvim/CopilotChat.nvim\",\n    dependencies = {\n      { \"nvim-lua/plenary.nvim\", branch = \"master\" },\n    },\n    build = \"make tiktoken\",\n    opts = {\n      -- See Configuration section for options\n      mappings = {\n        reset = {\n          insert = \"<C-c>\",\n          normal = \"<C-c>\",\n        },\n      },\n      prompts = {\n        Tutor = {\n          prompt = \"You are an AI coding instructor designed to assist and guide me as I learn to code. Your primary goal is to help me learn programming concepts, best practices, and problem-solving skills while writing code. Always assume I'm a beginner with limited programming knowledge.Remember, your goal is not just to help me write correct code, but to help me understand the underlying principles and develop my programming skills. Always strive to be clear, patient, and encouraging in your responses.\",\n        },\n        Feedback = {\n          prompt = \"Review the code and provide feedback. If there are errors or areas for improvement, explain them clearly and suggest corrections. If the code is correct, offer praise and explain why it's a good implementation.Structure your responses as follows: 1- Answer my question, 2- Code review and feedback, 3- Suggestions for further learning or practice\",\n        },\n        FixBuffer = {\n          prompt = \"Given these diagnostics in the file '$file' which is a '$language' file, please fix the issues: $diagnostics\",\n        },\n      },\n    },\n    keys = {\n      { \"<leader>a\", \"<cmd>CopilotChat<CR>\", mode = \"n\", desc = \"Open Copilot Chat\" },\n      { \"<leader>te\", \"<cmd>CopilotChatExplain<CR>\", mode = \"v\", desc = \"Explain Code\" },\n      { \"<leader>tr\", \"<cmd>CopilotChatReview<CR>\", mode = \"v\", desc = \"Review Code\" },\n      { \"<leader>tf\", \"<cmd>CopilotChatFix<CR>\", mode = \"v\", desc = \"Fix Code Issues\" },\n      { \"<leader>to\", \"<cmd>CopilotChatOptimize<Cr>\", mode = \"v\", desc = \"Optimize Code\" },\n      { \"<leader>td\", \"<cmd>CopilotChatDocs<CR>\", mode = \"v\", desc = \"Generate Docs\" },\n      { \"<leader>tt\", \"<cmd>CopilotChatTests<CR>\", mode = \"v\", desc = \"Generate Tests\" },\n      { \"<leader>tm\", \"<cmd>CopilotChatCommit<CR>\", mode = \"n\", desc = \"Generate Commit Message\" },\n      { \"<leader>ts\", \"<cmd>CopilotChatCommit<CR>\", mode = \"v\", desc = \"Generate Commit for Selection\" },\n    },\n  },\n}\n"
  },
  {
    "path": ".config/nvim/lua/plugins/alpha.lua",
    "content": "-- Startup screen\nreturn {\n  \"goolord/alpha-nvim\",\n  dependencies = {\n    \"echasnovski/mini.icons\",\n  },\n\n  config = function()\n    local alpha = require \"alpha\"\n    local dashboard = require \"alpha.themes.dashboard\"\n\n    dashboard.section.header.opts.hl = {\n      {\n        { \"I2A0\", 0, 3 },\n        { \"I2A0\", 3, 6 },\n        { \"I2A0\", 6, 9 },\n        { \"I2A0\", 9, 12 },\n        { \"I2A0\", 12, 15 },\n        { \"I2A0\", 15, 18 },\n        { \"I2A0\", 18, 21 },\n        { \"I2A0\", 21, 24 },\n        { \"I2A0\", 24, 27 },\n        { \"I2A0\", 27, 30 },\n        { \"I2A0\", 30, 33 },\n        { \"I2A0\", 33, 36 },\n        { \"I2A0\", 36, 39 },\n        { \"I2A0\", 39, 42 },\n        { \"I2A0\", 42, 45 },\n        { \"I2A0\", 45, 48 },\n        { \"I2A0\", 48, 51 },\n        { \"I2A0\", 51, 54 },\n        { \"I2A0\", 54, 57 },\n        { \"I2A0\", 57, 60 },\n        { \"I2A0\", 60, 63 },\n        { \"I2A0\", 63, 66 },\n        { \"I2A0\", 66, 69 },\n        { \"I2A0\", 69, 72 },\n        { \"I2A0\", 72, 75 },\n        { \"I2A0\", 75, 78 },\n        { \"I2A0\", 78, 81 },\n        { \"I2A0\", 81, 84 },\n        { \"I2A0\", 84, 87 },\n        { \"I2A0\", 87, 90 },\n        { \"I2A0\", 90, 93 },\n        { \"I2A0\", 93, 96 },\n        { \"I2A0\", 96, 99 },\n        { \"I2A0\", 99, 102 },\n        { \"I2A0\", 102, 105 },\n        { \"I2A0\", 105, 108 },\n        { \"I2A0\", 108, 111 },\n      },\n      {\n        { \"I2A1\", 0, 3 },\n        { \"I2A2\", 3, 6 },\n        { \"I2A2\", 6, 9 },\n        { \"I2A2\", 9, 12 },\n        { \"I2A2\", 12, 15 },\n        { \"I2A2\", 15, 18 },\n        { \"I2A2\", 18, 21 },\n        { \"I2A2\", 21, 24 },\n        { \"I2A2\", 24, 27 },\n        { \"I2A2\", 27, 30 },\n        { \"I2A2\", 30, 33 },\n        { \"I2A2\", 33, 36 },\n        { \"I2A2\", 36, 39 },\n        { \"I2A3\", 39, 42 },\n        { \"I2A4\", 42, 45 },\n        { \"I2A5\", 45, 48 },\n        { \"I2A6\", 48, 51 },\n        { \"I2A7\", 51, 54 },\n        { \"I2A8\", 54, 57 },\n        { \"I2A4\", 57, 60 },\n        { \"I2A9\", 60, 63 },\n        { \"I2A2\", 63, 66 },\n        { \"I2A2\", 66, 69 },\n        { \"I2A10\", 69, 72 },\n        { \"I2A2\", 72, 75 },\n        { \"I2A2\", 75, 78 },\n        { \"I2A2\", 78, 81 },\n        { \"I2A2\", 81, 84 },\n        { \"I2A2\", 84, 87 },\n        { \"I2A2\", 87, 90 },\n        { \"I2A2\", 90, 93 },\n        { \"I2A2\", 93, 96 },\n        { \"I2A11\", 96, 99 },\n        { \"I2A12\", 99, 102 },\n        { \"I2A12\", 102, 105 },\n        { \"I2A13\", 105, 108 },\n        { \"I2A12\", 108, 111 },\n      },\n      {\n        { \"I2A2\", 0, 3 },\n        { \"I2A2\", 3, 6 },\n        { \"I2A2\", 6, 9 },\n        { \"I2A2\", 9, 12 },\n        { \"I2A2\", 12, 15 },\n        { \"I2A2\", 15, 18 },\n        { \"I2A2\", 18, 21 },\n        { \"I2A2\", 21, 24 },\n        { \"I2A2\", 24, 27 },\n        { \"I2A2\", 27, 30 },\n        { \"I2A2\", 30, 33 },\n        { \"I2A2\", 33, 36 },\n        { \"I2A14\", 36, 39 },\n        { \"I2A15\", 39, 42 },\n        { \"I2A16\", 42, 45 },\n        { \"I2A17\", 45, 48 },\n        { \"I2A2\", 48, 51 },\n        { \"I2A2\", 51, 54 },\n        { \"I2A18\", 54, 57 },\n        { \"I2A19\", 57, 60 },\n        { \"I2A20\", 60, 63 },\n        { \"I2A21\", 63, 66 },\n        { \"I2A2\", 66, 69 },\n        { \"I2A2\", 69, 72 },\n        { \"I2A22\", 72, 75 },\n        { \"I2A22\", 75, 78 },\n        { \"I2A2\", 78, 81 },\n        { \"I2A2\", 81, 84 },\n        { \"I2A2\", 84, 87 },\n        { \"I2A23\", 87, 90 },\n        { \"I2A2\", 90, 93 },\n        { \"I2A2\", 93, 96 },\n        { \"I2A2\", 96, 99 },\n        { \"I2A2\", 99, 102 },\n        { \"I2A2\", 102, 105 },\n        { \"I2A2\", 105, 108 },\n        { \"I2A2\", 108, 111 },\n      },\n      {\n        { \"I2A24\", 0, 3 },\n        { \"I2A25\", 3, 6 },\n        { \"I2A2\", 6, 9 },\n        { \"I2A2\", 9, 12 },\n        { \"I2A2\", 12, 15 },\n        { \"I2A2\", 15, 18 },\n        { \"I2A2\", 18, 21 },\n        { \"I2A2\", 21, 24 },\n        { \"I2A2\", 24, 27 },\n        { \"I2A2\", 27, 30 },\n        { \"I2A2\", 30, 33 },\n        { \"I2A26\", 33, 36 },\n        { \"I2A27\", 36, 39 },\n        { \"I2A27\", 39, 42 },\n        { \"I2A28\", 42, 45 },\n        { \"I2A29\", 45, 48 },\n        { \"I2A30\", 48, 51 },\n        { \"I2A31\", 51, 54 },\n        { \"I2A32\", 54, 57 },\n        { \"I2A33\", 57, 60 },\n        { \"I2A34\", 60, 63 },\n        { \"I2A35\", 63, 66 },\n        { \"I2A27\", 66, 69 },\n        { \"I2A36\", 69, 72 },\n        { \"I2A2\", 72, 75 },\n        { \"I2A2\", 75, 78 },\n        { \"I2A37\", 78, 81 },\n        { \"I2A38\", 81, 84 },\n        { \"I2A2\", 84, 87 },\n        { \"I2A2\", 87, 90 },\n        { \"I2A2\", 90, 93 },\n        { \"I2A2\", 93, 96 },\n        { \"I2A2\", 96, 99 },\n        { \"I2A2\", 99, 102 },\n        { \"I2A38\", 102, 105 },\n        { \"I2A22\", 105, 108 },\n        { \"I2A39\", 108, 111 },\n      },\n      {\n        { \"I2A40\", 0, 3 },\n        { \"I2A41\", 3, 6 },\n        { \"I2A42\", 6, 9 },\n        { \"I2A43\", 9, 12 },\n        { \"I2A40\", 12, 15 },\n        { \"I2A42\", 15, 18 },\n        { \"I2A44\", 18, 21 },\n        { \"I2A45\", 21, 24 },\n        { \"I2A46\", 24, 27 },\n        { \"I2A46\", 27, 30 },\n        { \"I2A46\", 30, 33 },\n        { \"I2A27\", 33, 36 },\n        { \"I2A27\", 36, 39 },\n        { \"I2A47\", 39, 42 },\n        { \"I2A48\", 42, 45 },\n        { \"I2A2\", 45, 48 },\n        { \"I2A2\", 48, 51 },\n        { \"I2A1\", 51, 54 },\n        { \"I2A2\", 54, 57 },\n        { \"I2A2\", 57, 60 },\n        { \"I2A49\", 60, 63 },\n        { \"I2A50\", 63, 66 },\n        { \"I2A47\", 66, 69 },\n        { \"I2A7\", 69, 72 },\n        { \"I2A51\", 72, 75 },\n        { \"I2A52\", 75, 78 },\n        { \"I2A52\", 78, 81 },\n        { \"I2A53\", 81, 84 },\n        { \"I2A54\", 84, 87 },\n        { \"I2A55\", 87, 90 },\n        { \"I2A56\", 90, 93 },\n        { \"I2A57\", 93, 96 },\n        { \"I2A2\", 96, 99 },\n        { \"I2A58\", 99, 102 },\n        { \"I2A59\", 102, 105 },\n        { \"I2A60\", 105, 108 },\n        { \"I2A61\", 108, 111 },\n      },\n      {\n        { \"I2A62\", 0, 3 },\n        { \"I2A62\", 3, 6 },\n        { \"I2A63\", 6, 9 },\n        { \"I2A63\", 9, 12 },\n        { \"I2A63\", 12, 15 },\n        { \"I2A62\", 15, 18 },\n        { \"I2A64\", 18, 21 },\n        { \"I2A63\", 21, 24 },\n        { \"I2A64\", 24, 27 },\n        { \"I2A62\", 27, 30 },\n        { \"I2A65\", 30, 33 },\n        { \"I2A66\", 33, 36 },\n        { \"I2A67\", 36, 39 },\n        { \"I2A68\", 39, 42 },\n        { \"I2A69\", 42, 45 },\n        { \"I2A70\", 45, 48 },\n        { \"I2A2\", 48, 51 },\n        { \"I2A2\", 51, 54 },\n        { \"I2A71\", 54, 57 },\n        { \"I2A50\", 57, 60 },\n        { \"I2A50\", 60, 63 },\n        { \"I2A72\", 63, 66 },\n        { \"I2A73\", 66, 69 },\n        { \"I2A74\", 69, 72 },\n        { \"I2A75\", 72, 75 },\n        { \"I2A75\", 75, 78 },\n        { \"I2A76\", 78, 81 },\n        { \"I2A77\", 81, 84 },\n        { \"I2A50\", 84, 87 },\n        { \"I2A50\", 87, 90 },\n        { \"I2A78\", 90, 93 },\n        { \"I2A79\", 93, 96 },\n        { \"I2A80\", 96, 99 },\n        { \"I2A81\", 99, 102 },\n        { \"I2A82\", 102, 105 },\n        { \"I2A83\", 105, 108 },\n        { \"I2A84\", 108, 111 },\n      },\n      {\n        { \"I2A83\", 0, 3 },\n        { \"I2A83\", 3, 6 },\n        { \"I2A85\", 6, 9 },\n        { \"I2A86\", 9, 12 },\n        { \"I2A87\", 12, 15 },\n        { \"I2A88\", 15, 18 },\n        { \"I2A87\", 18, 21 },\n        { \"I2A89\", 21, 24 },\n        { \"I2A90\", 24, 27 },\n        { \"I2A91\", 27, 30 },\n        { \"I2A92\", 30, 33 },\n        { \"I2A93\", 33, 36 },\n        { \"I2A94\", 36, 39 },\n        { \"I2A95\", 39, 42 },\n        { \"I2A96\", 42, 45 },\n        { \"I2A97\", 45, 48 },\n        { \"I2A98\", 48, 51 },\n        { \"I2A99\", 51, 54 },\n        { \"I2A100\", 54, 57 },\n        { \"I2A69\", 57, 60 },\n        { \"I2A101\", 60, 63 },\n        { \"I2A75\", 63, 66 },\n        { \"I2A102\", 66, 69 },\n        { \"I2A103\", 69, 72 },\n        { \"I2A104\", 72, 75 },\n        { \"I2A105\", 75, 78 },\n        { \"I2A50\", 78, 81 },\n        { \"I2A106\", 81, 84 },\n        { \"I2A50\", 84, 87 },\n        { \"I2A50\", 87, 90 },\n        { \"I2A50\", 90, 93 },\n        { \"I2A107\", 93, 96 },\n        { \"I2A50\", 96, 99 },\n        { \"I2A108\", 99, 102 },\n        { \"I2A83\", 102, 105 },\n        { \"I2A109\", 105, 108 },\n        { \"I2A109\", 108, 111 },\n      },\n      {\n        { \"I2A98\", 0, 3 },\n        { \"I2A110\", 3, 6 },\n        { \"I2A98\", 6, 9 },\n        { \"I2A98\", 9, 12 },\n        { \"I2A111\", 12, 15 },\n        { \"I2A112\", 15, 18 },\n        { \"I2A113\", 18, 21 },\n        { \"I2A27\", 21, 24 },\n        { \"I2A27\", 24, 27 },\n        { \"I2A27\", 27, 30 },\n        { \"I2A27\", 30, 33 },\n        { \"I2A114\", 33, 36 },\n        { \"I2A75\", 36, 39 },\n        { \"I2A75\", 39, 42 },\n        { \"I2A115\", 42, 45 },\n        { \"I2A116\", 45, 48 },\n        { \"I2A117\", 48, 51 },\n        { \"I2A115\", 51, 54 },\n        { \"I2A118\", 54, 57 },\n        { \"I2A75\", 57, 60 },\n        { \"I2A119\", 60, 63 },\n        { \"I2A120\", 63, 66 },\n        { \"I2A50\", 66, 69 },\n        { \"I2A50\", 69, 72 },\n        { \"I2A50\", 72, 75 },\n        { \"I2A50\", 75, 78 },\n        { \"I2A50\", 78, 81 },\n        { \"I2A50\", 81, 84 },\n        { \"I2A50\", 84, 87 },\n        { \"I2A50\", 87, 90 },\n        { \"I2A50\", 90, 93 },\n        { \"I2A50\", 93, 96 },\n        { \"I2A50\", 96, 99 },\n        { \"I2A121\", 99, 102 },\n        { \"I2A122\", 102, 105 },\n        { \"I2A123\", 105, 108 },\n        { \"I2A110\", 108, 111 },\n      },\n      {\n        { \"I2A98\", 0, 3 },\n        { \"I2A98\", 3, 6 },\n        { \"I2A98\", 6, 9 },\n        { \"I2A124\", 9, 12 },\n        { \"I2A125\", 12, 15 },\n        { \"I2A126\", 15, 18 },\n        { \"I2A27\", 18, 21 },\n        { \"I2A127\", 21, 24 },\n        { \"I2A128\", 24, 27 },\n        { \"I2A129\", 27, 30 },\n        { \"I2A130\", 30, 33 },\n        { \"I2A75\", 33, 36 },\n        { \"I2A75\", 36, 39 },\n        { \"I2A75\", 39, 42 },\n        { \"I2A131\", 42, 45 },\n        { \"I2A132\", 45, 48 },\n        { \"I2A75\", 48, 51 },\n        { \"I2A75\", 51, 54 },\n        { \"I2A75\", 54, 57 },\n        { \"I2A133\", 57, 60 },\n        { \"I2A134\", 60, 63 },\n        { \"I2A134\", 63, 66 },\n        { \"I2A134\", 66, 69 },\n        { \"I2A134\", 69, 72 },\n        { \"I2A135\", 72, 75 },\n        { \"I2A136\", 75, 78 },\n        { \"I2A50\", 78, 81 },\n        { \"I2A50\", 81, 84 },\n        { \"I2A137\", 84, 87 },\n        { \"I2A138\", 87, 90 },\n        { \"I2A139\", 90, 93 },\n        { \"I2A50\", 93, 96 },\n        { \"I2A140\", 96, 99 },\n        { \"I2A50\", 99, 102 },\n        { \"I2A141\", 102, 105 },\n        { \"I2A142\", 105, 108 },\n        { \"I2A143\", 108, 111 },\n      },\n      {\n        { \"I2A98\", 0, 3 },\n        { \"I2A98\", 3, 6 },\n        { \"I2A144\", 6, 9 },\n        { \"I2A145\", 9, 12 },\n        { \"I2A146\", 12, 15 },\n        { \"I2A147\", 15, 18 },\n        { \"I2A50\", 18, 21 },\n        { \"I2A50\", 21, 24 },\n        { \"I2A50\", 24, 27 },\n        { \"I2A50\", 27, 30 },\n        { \"I2A148\", 30, 33 },\n        { \"I2A149\", 33, 36 },\n        { \"I2A150\", 36, 39 },\n        { \"I2A130\", 39, 42 },\n        { \"I2A75\", 42, 45 },\n        { \"I2A75\", 45, 48 },\n        { \"I2A75\", 48, 51 },\n        { \"I2A151\", 51, 54 },\n        { \"I2A152\", 54, 57 },\n        { \"I2A153\", 57, 60 },\n        { \"I2A154\", 60, 63 },\n        { \"I2A2\", 63, 66 },\n        { \"I2A155\", 66, 69 },\n        { \"I2A156\", 69, 72 },\n        { \"I2A157\", 72, 75 },\n        { \"I2A158\", 75, 78 },\n        { \"I2A50\", 78, 81 },\n        { \"I2A50\", 81, 84 },\n        { \"I2A50\", 84, 87 },\n        { \"I2A50\", 87, 90 },\n        { \"I2A50\", 90, 93 },\n        { \"I2A50\", 93, 96 },\n        { \"I2A50\", 96, 99 },\n        { \"I2A159\", 99, 102 },\n        { \"I2A50\", 102, 105 },\n        { \"I2A160\", 105, 108 },\n        { \"I2A161\", 108, 111 },\n      },\n      {\n        { \"I2A98\", 0, 3 },\n        { \"I2A162\", 3, 6 },\n        { \"I2A163\", 6, 9 },\n        { \"I2A164\", 9, 12 },\n        { \"I2A50\", 12, 15 },\n        { \"I2A165\", 15, 18 },\n        { \"I2A50\", 18, 21 },\n        { \"I2A50\", 21, 24 },\n        { \"I2A50\", 24, 27 },\n        { \"I2A50\", 27, 30 },\n        { \"I2A50\", 30, 33 },\n        { \"I2A166\", 33, 36 },\n        { \"I2A134\", 36, 39 },\n        { \"I2A75\", 39, 42 },\n        { \"I2A75\", 42, 45 },\n        { \"I2A167\", 45, 48 },\n        { \"I2A168\", 48, 51 },\n        { \"I2A169\", 51, 54 },\n        { \"I2A170\", 54, 57 },\n        { \"I2A171\", 57, 60 },\n        { \"I2A1\", 60, 63 },\n        { \"I2A172\", 63, 66 },\n        { \"I2A173\", 66, 69 },\n        { \"I2A174\", 69, 72 },\n        { \"I2A75\", 72, 75 },\n        { \"I2A75\", 75, 78 },\n        { \"I2A175\", 78, 81 },\n        { \"I2A50\", 81, 84 },\n        { \"I2A50\", 84, 87 },\n        { \"I2A50\", 87, 90 },\n        { \"I2A50\", 90, 93 },\n        { \"I2A50\", 93, 96 },\n        { \"I2A176\", 96, 99 },\n        { \"I2A177\", 99, 102 },\n        { \"I2A178\", 102, 105 },\n        { \"I2A179\", 105, 108 },\n        { \"I2A180\", 108, 111 },\n      },\n      {\n        { \"I2A98\", 0, 3 },\n        { \"I2A98\", 3, 6 },\n        { \"I2A181\", 6, 9 },\n        { \"I2A182\", 9, 12 },\n        { \"I2A183\", 12, 15 },\n        { \"I2A184\", 15, 18 },\n        { \"I2A50\", 18, 21 },\n        { \"I2A50\", 21, 24 },\n        { \"I2A185\", 24, 27 },\n        { \"I2A50\", 27, 30 },\n        { \"I2A50\", 30, 33 },\n        { \"I2A50\", 33, 36 },\n        { \"I2A186\", 36, 39 },\n        { \"I2A187\", 39, 42 },\n        { \"I2A188\", 42, 45 },\n        { \"I2A189\", 45, 48 },\n        { \"I2A190\", 48, 51 },\n        { \"I2A191\", 51, 54 },\n        { \"I2A192\", 54, 57 },\n        { \"I2A193\", 57, 60 },\n        { \"I2A194\", 60, 63 },\n        { \"I2A195\", 63, 66 },\n        { \"I2A196\", 66, 69 },\n        { \"I2A197\", 69, 72 },\n        { \"I2A198\", 72, 75 },\n        { \"I2A95\", 75, 78 },\n        { \"I2A50\", 78, 81 },\n        { \"I2A50\", 81, 84 },\n        { \"I2A199\", 84, 87 },\n        { \"I2A50\", 87, 90 },\n        { \"I2A50\", 90, 93 },\n        { \"I2A200\", 93, 96 },\n        { \"I2A201\", 96, 99 },\n        { \"I2A202\", 99, 102 },\n        { \"I2A203\", 102, 105 },\n        { \"I2A204\", 105, 108 },\n        { \"I2A204\", 108, 111 },\n      },\n    }\n\n    dashboard.section.header.val = {\n\n      [[⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀]],\n      [[⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢴⣾⣿⣿⣿⣿⣦⣤⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀]],\n      [[⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⣛⣛⣛⣻⣿⣿⣿⣿⣷⡆⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀]],\n      [[⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠠⣐⣌⣂⡐⣒⣒⣒⣒⣒⣒⠟⠛⣿⣿⡷⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀]],\n      [[⠀⠀⠀⠀⠀⠀⠀⠀⠀⣻⣿⣿⣟⣓⡒⠒⣒⣒⣒⣒⡀⠀⢀⣿⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀]],\n      [[⠀⠀⠀⠀⠀⠀⠀⠀⠲⣿⣿⡏⠂⠀⠀⠀⠀⡒⢒⣒⣒⢒⣲⣿⡸⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀]],\n      [[⠀⠀⠀⠀⠀⠀⠀⠀⢴⣿⣿⣯⡄⠀⠀⠀⠀⠀⠀⠒⠆⢒⠞⣂⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢠⣀⠀⠀⠀⠀⠀]],\n      [[⠀⠀⠀⠀⠀⠀⠀⠀⠀⠺⣿⣿⣿⣧⡄⠀⠤⠤⠄⠄⠅⠹⠏⠯⠁⠀⠀⠀⢀⠀⠀⠀⠤⠄⠮⠭⠭⠭⠀⠤⠀⠀]],\n      [[⠀⠀⠀⠀⠀⠀⠀⠠⠠⠄⠀⠍⠭⠭⠭⠩⠠⢭⣯⣭⡅⠈⠠⠄⠀⠀⠀⠀⠠⠤⠨⠋⠩⠭⠭⠭⠭⠭⠭⠭⠁⠀]],\n      [[⠀⠀⠀⠀⠀⠀⠀⠠⠌⠤⠤⠤⠤⠌⠉⠀⠤⠍⢿⣿⣿⣿⠥⠬⠄⠀⠀⠀⠀⠅⠍⠩⠈⠭⠭⠭⠭⠍⠉⠀⠀⠀]],\n      [[⠀⠀⠀⠀⠀⠀⠀⠀⠈⠉⠉⠉⠉⠉⠀⠁⠀⠈⠉⣿⣿⣿⡧⠁⠉⠁⠀⢣⠉⠀⠀⠠⠭⠭⠩⠭⠭⠭⠭⠄⠀⠀]],\n      [[⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠿⣿⣿⣿⣂⠀⠀⠈⠸⢁⡀⠀⠈⠛⠿⠁⠈⠙⠛⠁⠀⠀⠀]],\n      [[⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⣿⣿⣿⣿⡖⡀⠀⡒⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀]],\n      [[⠀⠀⠀⠀⠀⠀⠀⠀⠀⣐⣒⣒⣒⣒⣒⣐⣒⣒⢂⣲⣿⣟⣺⣿⣿⠒⣂⣒⣒⣒⡒⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀]],\n      [[⠀⠀⠀⠀⠀⠀⠀⠀⠀⣀⢀⣀⣀⣒⣒⠀⢒⠂⣐⢘⣿⣗⢸⣿⣿⡖⠂⡒⠂⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀]],\n      [[⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⣾⣿⡇⢸⣿⣿⣷⠀⢆⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀]],\n      [[⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⣴⣿⣿⡏⠀⣿⣿⣿⡏⠀⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀]],\n      [[⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠠⠼⠿⠿⠿⠅⠀⠈⠉⠈⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀]],\n      [[⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠠⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠄⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀]],\n      [[⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠄⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀]],\n      [[⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀]],\n    }\n\n    dashboard.section.buttons.val = {\n      dashboard.button(\"z\", \"  > Zoxide\", \":FzfLua zoxide list<CR>\"),\n      dashboard.button(\"f\", \"  > Find file\", \":FzfLua files<CR>\"),\n      dashboard.button(\"p\", \"λ  > Projects\", function() vim.cmd \"cd ~/Projects\" vim.cmd \"Yazi cwd\" end),\n      dashboard.button(\"s\", \"󰯂  > Browse scripts\", \":FzfLua files cwd=~/Scripts<CR>\"),\n      vim.api.nvim_buf_set_keymap(0, \"n\", \"q\", \":q<CR>\", { noremap = true, silent = true }),\n    }\n\n    dashboard.section.footer.opts.position = \"center\"\n    vim.api.nvim_create_autocmd(\"User\", {\n      once = true,\n      pattern = \"LazyVimStarted\",\n      callback = function()\n        local stats = require(\"lazy\").stats()\n        local ms = (math.floor(stats.startuptime * 100 + 0.5) / 100)\n        dashboard.section.footer.val = \" \" .. stats.loaded .. \" plugins   \" .. ms .. \"ms\"\n        dashboard.section.footer.opts.hl = \"I2A0\"\n        pcall(vim.cmd.AlphaRedraw)\n      end,\n    })\n    alpha.setup(dashboard.opts)\n  end,\n}\n"
  },
  {
    "path": ".config/nvim/lua/plugins/cmp.lua",
    "content": "-- Autocompletion\nreturn {\n  \"hrsh7th/nvim-cmp\",\n  dependencies = {\n    \"onsails/lspkind.nvim\", -- Adds VS Code-like pictograms/icons to the completion menu\n    \"saadparwaiz1/cmp_luasnip\", -- Enables LuaSnip as a source for nvim-cmp autocompletion\n    {\n      \"L3MON4D3/LuaSnip\", -- Snippet engine for Neovim (write and expand code snippets)\n      version = \"v2.*\",\n      build = \"make install_jsregexp\",\n    },\n    \"rafamadriz/friendly-snippets\", -- Large collection of pre-made snippets for various languages\n    \"hrsh7th/cmp-nvim-lsp\", -- nvim-cmp source for LSP-based autocompletion\n    \"hrsh7th/cmp-buffer\", -- nvim-cmp source for words from the current buffer\n    \"hrsh7th/cmp-path\", -- nvim-cmp source for filesystem paths\n    \"hrsh7th/cmp-nvim-lsp-signature-help\", -- function signatures\n  },\n  config = function()\n    local lspkind = require \"lspkind\"\n    local cmp = require \"cmp\"\n    local luasnip = require \"luasnip\"\n\n    require(\"luasnip.loaders.from_vscode\").lazy_load()\n\n    cmp.setup {\n      snippet = {\n        expand = function(args)\n          luasnip.lsp_expand(args.body)\n        end,\n      },\n\n      formatting = {\n        format = lspkind.cmp_format {\n          mode = \"symbol_text\",\n          menu = {\n            codeium = \"\",\n            luasnip = \"\",\n            buffer = \"\",\n            path = \"\",\n            nvim_lsp = \"🅻\",\n          },\n        },\n      },\n\n      mapping = cmp.mapping.preset.insert {\n        [\"<C-k>\"] = cmp.mapping.select_prev_item(),\n        [\"<C-j>\"] = cmp.mapping.select_next_item(),\n        [\"<C-b>\"] = cmp.mapping.scroll_docs(-4),\n        [\"<C-f>\"] = cmp.mapping.scroll_docs(4),\n        [\"<C-Space>\"] = cmp.mapping.complete(),\n        [\"<C-e>\"] = cmp.mapping.abort(),\n        [\"<CR>\"] = cmp.mapping.confirm { select = false },\n      },\n\n      sources = {\n        { name = \"codeium\" },\n        { name = \"luasnip\" },\n        { name = \"nvim_lsp\" },\n        { name = \"buffer\" },\n        { name = \"path\" },\n        { name = \"nvim_lsp_signature_help\" },\n      },\n    }\n  end,\n}\n"
  },
  {
    "path": ".config/nvim/lua/plugins/color-picker.lua",
    "content": "return {\n  {\n    \"eero-lehtinen/oklch-color-picker.nvim\",\n    event = \"VeryLazy\",\n    -- version = \"*\", -- Pinning version is optional\n    keys = {\n      -- One handed keymap recommended, you will be using the mouse\n      { \"<leader>co\", function() require(\"oklch-color-picker\").open_picker() end, desc = \"Open Color Picker\" },\n      { \"<leader>cu\", function() require(\"oklch-color-picker\").pick_under_cursor() end, desc = \"Pick Color Under Cursor\" },\n    },\n    opts = {\n      -- for example, to highlight colors in the buffer\n      highlight_colors = {\n        enable = true,\n      },\n      -- for example, to use a different keymap to confirm the color\n      keymaps = {\n        confirm = \"<CR>\",\n      },\n    },\n  },\n}\n"
  },
  {
    "path": ".config/nvim/lua/plugins/colorscheme.lua",
    "content": "return {\n  { \"ellisonleao/gruvbox.nvim\", lazy = true, opts = { transparent_mode = true } },\n  { \"folke/tokyonight.nvim\", lazy = true, opts = { style = \"night\", transparent = true } },\n\n  -- superior gruvbox variant\n  {\n    \"sainnhe/gruvbox-material\",\n    lazy = true,\n    config = function()\n      vim.g.gruvbox_material_enable_italic = true\n      vim.g.gruvbox_material_background = \"hard\"\n      vim.g.gruvbox_material_transparent_background = 1\n    end,\n  },\n  -- fav theme (only this will be loaded on startup)\n  {\n    \"vague2k/vague.nvim\",\n    priority = 1000,\n    lazy = false,\n    opts = { transparent = true },\n    config = function(_, opts)\n      require(\"vague\").setup(opts)\n      vim.cmd.colorscheme \"vague\"\n    end,\n  },\n}\n"
  },
  {
    "path": ".config/nvim/lua/plugins/dap.lua",
    "content": "-- Debug Adapter Protocol (DAP) - Centralized debugging for all languages\n-- Supports: Flutter/Dart (via flutter-tools), Go (via nvim-dap-go)\nreturn {\n  {\n    \"mfussenegger/nvim-dap\",\n    dependencies = {\n      { \"rcarriga/nvim-dap-ui\", dependencies = { \"nvim-neotest/nvim-nio\" } },\n      { \"theHamsta/nvim-dap-virtual-text\", opts = {} },\n      \"leoluz/nvim-dap-go\",\n    },\n    keys = {\n      { \"<leader>xb\", function() require(\"dap\").toggle_breakpoint() end, desc = \"Debug: Toggle Breakpoint\" },\n      { \"<leader>xB\", function() require(\"dap\").set_breakpoint(vim.fn.input(\"Condition: \")) end, desc = \"Debug: Conditional Breakpoint\" },\n      { \"<leader>xc\", function() require(\"dap\").continue() end, desc = \"Debug: Continue/Start\" },\n      { \"<leader>xn\", function() require(\"dap\").step_over() end, desc = \"Debug: Step Over\" },\n      { \"<leader>xi\", function() require(\"dap\").step_into() end, desc = \"Debug: Step Into\" },\n      { \"<leader>xo\", function() require(\"dap\").step_out() end, desc = \"Debug: Step Out\" },\n      { \"<leader>xt\", function() require(\"dap\").terminate() end, desc = \"Debug: Terminate\" },\n      { \"<leader>xr\", function() require(\"dap\").repl.toggle() end, desc = \"Debug: Toggle REPL\" },\n      { \"<leader>xu\", function() require(\"dapui\").toggle() end, desc = \"Debug: Toggle UI\" },\n      { \"<leader>xg\", function() require(\"dap-go\").debug_test() end, ft = \"go\", desc = \"Debug: Go Test (nearest)\" },\n      { \"<leader>xG\", function() require(\"dap-go\").debug_last_test() end, ft = \"go\", desc = \"Debug: Go Test (last)\" },\n    },\n    config = function()\n      local dap = require \"dap\"\n      local dapui = require \"dapui\"\n      dapui.setup()\n\n      -- NO auto-open UI - virtual text shows values inline\n      -- Press <leader>xu to toggle UI panels when needed\n      dap.listeners.before.event_terminated[\"dapui_config\"] = function() dapui.close() end\n      dap.listeners.before.event_exited[\"dapui_config\"] = function() dapui.close() end\n\n      require(\"dap-go\").setup()\n    end,\n  },\n}\n"
  },
  {
    "path": ".config/nvim/lua/plugins/flutter.lua",
    "content": "-- Flutter development tools\n-- NOTE: This plugin manages dartls LSP - do NOT configure dartls separately\n-- NOTE: Debug keybindings use <leader>x prefix (see lua/plugins/dap.lua)\nreturn {\n  \"nvim-flutter/flutter-tools.nvim\",\n  ft = \"dart\",\n  dependencies = {\n    \"nvim-lua/plenary.nvim\",\n    \"stevearc/dressing.nvim\",\n    \"mfussenegger/nvim-dap\",\n  },\n  config = function()\n    require(\"flutter-tools\").setup {\n      flutter_path = \"/home/vyrx/dev-tools/flutter/bin/flutter\",\n      widget_guides = { enabled = true },\n      debugger = {\n        enabled = true,\n        evaluate_to_string_in_debug_views = true,\n      },\n      lsp = {\n        color = { enabled = true, virtual_text = true },\n        settings = {\n          showTodos = true,\n          completeFunctionCalls = true,\n          renameFilesWithClasses = \"always\",\n          enableSnippets = true,\n          updateImportsOnRename = true,\n          analysisExcludedFolders = {\n            vim.fn.expand \"$HOME/.pub-cache\",\n            vim.fn.expand \"$HOME/dev-tools/flutter/\",\n          },\n        },\n      },\n    }\n  end,\n  keys = {\n    { \"<leader>kr\", \"<cmd>FlutterReload<cr>\", desc = \"Flutter: Hot Reload\" },\n    { \"<leader>kR\", \"<cmd>FlutterRestart<cr>\", desc = \"Flutter: Hot Restart\" },\n    { \"<leader>kd\", \"<cmd>FlutterRun<cr>\", desc = \"Flutter: Run\" },\n    { \"<leader>kD\", \"<cmd>FlutterDebug<cr>\", desc = \"Flutter: Debug Mode\" },\n    { \"<leader>kq\", \"<cmd>FlutterQuit<cr>\", desc = \"Flutter: Quit\" },\n    { \"<leader>ko\", \"<cmd>FlutterOutlineToggle<cr>\", desc = \"Flutter: Toggle Outline\" },\n    { \"<leader>ke\", \"<cmd>FlutterEmulators<cr>\", desc = \"Flutter: Emulators\" },\n    { \"<leader>km\", \"<cmd>FlutterDevices<cr>\", desc = \"Flutter: Devices\" },\n    { \"<leader>ks\", \"<cmd>FlutterSuper<cr>\", desc = \"Flutter: Go to Super\" },\n    { \"<leader>kl\", \"<cmd>FlutterLogToggle<cr>\", desc = \"Flutter: Toggle Log\" },\n  },\n}\n"
  },
  {
    "path": ".config/nvim/lua/plugins/fzf.lua",
    "content": "-- Fuzzy finder (fzf gets the job done, never needed telescope)\nreturn {\n  \"ibhagwan/fzf-lua\",\n  cmd = \"FzfLua\",\n  dependencies = { \"nvim-tree/nvim-web-devicons\" },\n  keys = {\n    -- Quick access\n    { \";r\", function() require(\"fzf-lua\").live_grep({ hidden = true }) end, desc = \"Live Grep\" },\n    { \";c\", function() require(\"fzf-lua\").colorschemes() end, desc = \"Colorschemes\" },\n    { \";a\", function() require(\"fzf-lua\").buffers() end, desc = \"Buffers\" },\n    { \"<leader><leader>\", function() require(\"fzf-lua\").files({ hidden = true }) end, desc = \"Search Files\" },\n    { \"\\\\\\\\\", function() require(\"fzf-lua\").resume() end, desc = \"Resume Picker\" },\n\n    -- Leader + s - Search operations\n    { \"<leader>sh\", function() require(\"fzf-lua\").help_tags() end, desc = \"Search Help\" },\n    { \"<leader>sk\", function() require(\"fzf-lua\").keymaps() end, desc = \"Search Keymaps\" },\n    { \"<leader>ss\", function() require(\"fzf-lua\").builtin() end, desc = \"Search Select\" },\n    { \"<leader>sw\", function() require(\"fzf-lua\").grep_cword() end, desc = \"Search Word\" },\n    { \"<leader>sd\", function() require(\"fzf-lua\").diagnostics_document() end, desc = \"Search Diagnostics\" },\n    { \"<leader>sD\", function() require(\"fzf-lua\").diagnostics_workspace() end, desc = \"Search Diagnostics\" },\n    { \"<leader>s.\", function() require(\"fzf-lua\").oldfiles() end, desc = \"Search Recent Files\" },\n    { \"<leader>sp\", function() require(\"fzf-lua\").files { cwd = require(\"lazy.core.config\").options.root } end, desc = \"Search Plugin Files\" },\n    { \"<leader>sn\", function() require(\"fzf-lua\").files { cwd = vim.fn.stdpath \"config\" } end, desc = \"Search Neovim Config\" },\n\n    -- Other\n    { \"<leader>/\", function() require(\"fzf-lua\").blines() end, desc = \"Search Current Buffer\" },\n  },\n  opts = {},\n}\n"
  },
  {
    "path": ".config/nvim/lua/plugins/git.lua",
    "content": "return {\n  -- git tui\n  {\n    \"kdheepak/lazygit.nvim\",\n    dependencies = { \"nvim-lua/plenary.nvim\" },\n    cmd = {\n      \"LazyGit\",\n      \"LazyGitConfig\",\n      \"LazyGitCurrentFile\",\n      \"LazyGitFilter\",\n      \"LazyGitFilterCurrentFile\",\n    },\n  },\n\n  {\n    \"lewis6991/gitsigns.nvim\",\n    event = { \"BufReadPre\", \"BufNewFile\" },\n    opts = {\n      on_attach = function(bufnr)\n        local gitsigns = require \"gitsigns\"\n\n        local function map(mode, l, r, opts)\n          opts = opts or {}\n          opts.buffer = bufnr\n          vim.keymap.set(mode, l, r, opts)\n        end\n\n        -- Navigation\n        map(\"n\", \"]c\", function() if vim.wo.diff then vim.cmd.normal { \"]c\", bang = true } else gitsigns.nav_hunk \"next\" end end, { desc = \"Next Hunk\" })\n        map(\"n\", \"[c\", function() if vim.wo.diff then vim.cmd.normal { \"[c\", bang = true } else gitsigns.nav_hunk \"prev\" end end, { desc = \"Prev Hunk\" })\n\n        -- Actions\n        map(\"n\", \"<leader>hs\", gitsigns.stage_hunk, { desc = \"Stage hunk\" })\n        map(\"n\", \"<leader>hr\", gitsigns.reset_hunk, { desc = \"Reset hunk\" })\n\n        map(\"n\", \"<leader>hS\", gitsigns.stage_buffer, { desc = \"Stage buffer\" })\n        map(\"n\", \"<leader>hR\", gitsigns.reset_buffer, { desc = \"Reset buffer\" })\n        map(\"n\", \"<leader>hp\", gitsigns.preview_hunk, { desc = \"Preview hunk\" })\n\n        map(\"n\", \"<leader>hb\", function() gitsigns.blame_line { full = true } end, { desc = \"Blame line\" })\n        map(\"n\", \"<leader>hd\", gitsigns.diffthis, { desc = \"Diff this\" })\n        map(\"n\", \"<leader>hD\", function() gitsigns.diffthis \"~\" end, { desc = \"Diff this ~\" })\n\n        -- Toggles\n        map(\"n\", \"<leader>tb\", gitsigns.toggle_current_line_blame, { desc = \"Toggle line blame\" })\n        map(\"n\", \"<leader>tw\", gitsigns.toggle_word_diff, { desc = \"Toggle word diff\" })\n\n        -- Text object\n        map({ \"o\", \"x\" }, \"ih\", \":<C-U>Gitsigns select_hunk<CR>\", { desc = \"Gitsigns select hunk\" })\n      end,\n    },\n  },\n}\n"
  },
  {
    "path": ".config/nvim/lua/plugins/lsp-config.lua",
    "content": "return {\n  -- Auto-install LSPs, formatters, linters via Mason on startup\n  {\n    \"WhoIsSethDaniel/mason-tool-installer.nvim\",\n    dependencies = {\n      \"mason-org/mason.nvim\",\n    },\n    config = function()\n      require(\"mason\").setup()\n      require(\"mason-tool-installer\").setup {\n        ensure_installed = {\n          -- LSP Servers\n          \"bash-language-server\",\n          \"docker-language-server\",\n          \"emmet-ls\",\n          \"gopls\",\n          \"lua-language-server\",\n          \"pyright\",\n          \"typescript-language-server\",\n          \"json-lsp\",\n          \"yaml-language-server\",\n          \"tailwindcss-language-server\",\n          \"efm\",\n\n          -- Formatters\n          \"prettierd\",\n          \"stylua\",\n          \"gofumpt\",\n          \"shfmt\",\n          \"fixjson\",\n\n          -- Linters\n          \"eslint_d\",\n          \"flake8\",\n          -- \"luacheck\",\n          \"hadolint\",\n          \"shellcheck\",\n          \"revive\",\n        },\n        auto_update = false,\n        run_on_start = true,\n        start_delay = 3000, -- 3 sec delay to avoid blocking startup\n      }\n    end,\n  },\n\n  -- Core LSP configurations and server setups\n  {\n    \"neovim/nvim-lspconfig\",\n    dependencies = {\n      \"mason-org/mason.nvim\", -- LSP/DAP/Linter installer & manager\n      \"creativenull/efmls-configs-nvim\", -- Preconfigured EFM Language Server setups\n      \"hrsh7th/cmp-nvim-lsp\", -- nvim-cmp source for LSP-based completion\n    },\n    config = function()\n      require(\"utils.diagnostics\").setup()\n      require \"servers\"\n    end,\n  },\n\n  -- Better UI for LSP actions (hover, rename, diagnostics, etc.)\n  {\n    \"glepnir/lspsaga.nvim\",\n    event = \"LspAttach\",\n    dependencies = {\n      \"nvim-treesitter/nvim-treesitter\",\n    },\n    config = function()\n      require(\"lspsaga\").setup {\n        move_in_saga = { prev = \"<C-k>\", next = \"<C-j>\" },\n        finder_action_keys = {\n          open = \"<CR>\",\n        },\n        definition_action_keys = {\n          edit = \"<CR>\",\n        },\n        symbol_in_winbar = {\n          enable = false,\n        },\n      }\n    end,\n  },\n}\n"
  },
  {
    "path": ".config/nvim/lua/plugins/mini.lua",
    "content": "return {\n  { \"echasnovski/mini.ai\", version = \"*\", opts = {} },\n  { \"echasnovski/mini.icons\", opts = {} },\n  { \"echasnovski/mini.pairs\", opts = {} },\n\n  -- minimal notification UI\n  {\n    \"echasnovski/mini.notify\",\n    opts = {\n      window = {\n        winblend = 0, -- transparency\n        max_width_share = 0.5,\n      },\n      lsp_progress = {\n        enable = false, -- disable LSP progress (handled by fidget.nvim)\n        duration_last = 10000,\n      },\n    },\n  },\n\n  -- fast surround editing\n  {\n    \"echasnovski/mini.surround\",\n    opts = {\n      mappings = {\n        add = \"sa\", -- Add surrounding in Normal and Visual modes\n        delete = \"sd\", -- Delete surrounding\n        find = \"\", -- Find surrounding (to the right)\n        find_left = \"\", -- Find surrounding (to the left)\n        highlight = \"\", -- Highlight surrounding\n        replace = \"sr\", -- Replace surrounding\n      },\n      n_lines = 30,\n    },\n  },\n}\n"
  },
  {
    "path": ".config/nvim/lua/plugins/navigation.lua",
    "content": "return {\n  -- Tmux integration\n  {\n    \"christoomey/vim-tmux-navigator\",\n    cmd = {\n      \"TmuxNavigateLeft\",\n      \"TmuxNavigateDown\",\n      \"TmuxNavigateUp\",\n      \"TmuxNavigateRight\",\n      \"TmuxNavigatePrevious\",\n      \"TmuxNavigatorProcessList\",\n    },\n    keys = {\n      { \"<c-h>\", \"<cmd><C-U>TmuxNavigateLeft<cr>\" },\n      { \"<c-j>\", \"<cmd><C-U>TmuxNavigateDown<cr>\" },\n      { \"<c-k>\", \"<cmd><C-U>TmuxNavigateUp<cr>\" },\n      { \"<c-l>\", \"<cmd><C-U>TmuxNavigateRight<cr>\" },\n      { \"<c-\\\\>\", \"<cmd><C-U>TmuxNavigatePrevious<cr>\" },\n    },\n\n    -- fast navigation (better f)\n    {\n      \"folke/flash.nvim\",\n      event = \"VeryLazy\",\n      ---@type Flash.Config\n      opts = {},\n      keys = {\n        { \"zn\", mode = { \"n\", \"x\", \"o\" }, function() require(\"flash\").jump() end, desc = \"Flash\" },\n        { \"zN\", mode = { \"n\", \"x\", \"o\" }, function() require(\"flash\").treesitter() end, desc = \"Flash Treesitter\" },\n        { \"r\", mode = \"o\", function() require(\"flash\").remote() end, desc = \"Remote Flash\" },\n        { \"R\", mode = { \"o\", \"x\" }, function() require(\"flash\").treesitter_search() end, desc = \"Treesitter Search\" },\n        { \"<c-s>\", mode = { \"c\" }, function() require(\"flash\").toggle() end, desc = \"Toggle Flash Search\" },\n      },\n    },\n  },\n}\n"
  },
  {
    "path": ".config/nvim/lua/plugins/nvim-tree.lua",
    "content": "-- File explorer (rarely used, mainly for screensharing)\nreturn\n{\n  \"nvim-tree/nvim-tree.lua\",\n  cmd = { \"NvimTreeToggle\", \"NvimTreeFocus\" },\n  config = function()\n    -- remove background color from the nvimtree window (ui fix)\n    vim.cmd [[hi nvimtreenormal guibg=none ctermbg=none]]\n    require(\"nvim-tree\").setup {\n      filters = { dotfiles = false },\n      disable_netrw = true,\n      hijack_cursor = true,\n      sync_root_with_cwd = true,\n      update_focused_file = {\n        enable = true,\n        update_root = false,\n      },\n      view = {\n        width = 30,\n        preserve_window_proportions = true,\n      },\n      renderer = {\n        root_folder_label = false,\n        highlight_git = true,\n        indent_markers = { enable = true },\n        icons = {\n          glyphs = {\n            default = \"󰈚\",\n            folder = {\n              default = \"\",\n              empty = \"\",\n              empty_open = \"\",\n              open = \"\",\n              symlink = \"\",\n            },\n            git = { unmerged = \"\" },\n          },\n        },\n      },\n    }\n  end,\n}\n\n"
  },
  {
    "path": ".config/nvim/lua/plugins/preview.lua",
    "content": "-- Preview tools\nreturn {\n  -- HTML preview\n  {\n    \"barrett-ruth/live-server.nvim\",\n    build = \"npm install -g live-server\",\n    cmd = { \"LiveServerStart\", \"LiveServerStop\" },\n    config = true,\n  },\n\n  -- Markdown preview\n  {\n    \"toppair/peek.nvim\",\n    event = { \"VeryLazy\" },\n    build = \"deno task --quiet build:fast\",\n    config = function()\n      require(\"peek\").setup {\n        close_on_bdelete = true,\n        theme = \"dark\",\n        app = \"brave\", -- Or 'browser' for your default\n      }\n      vim.api.nvim_create_user_command(\"PeekOpen\", require(\"peek\").open, {})\n      vim.api.nvim_create_user_command(\"PeekClose\", require(\"peek\").close, {})\n    end,\n    keys = {\n      { \"<leader>pm\", function() require(\"peek\").open() end, desc = \"Markdown Preview Open\" },\n      { \"<leader>pc\", function() require(\"peek\").close() end, desc = \"Markdown Preview  Close\" },\n    },\n  },\n\n  -- Markdown render\n  {\n    \"MeanderingProgrammer/render-markdown.nvim\",\n    ft = \"markdown\",\n    dependencies = { \"nvim-treesitter/nvim-treesitter\", \"echasnovski/mini.icons\" },\n    opts = {},\n  },\n}\n"
  },
  {
    "path": ".config/nvim/lua/plugins/sloat.lua",
    "content": "return {\n  \"vyrx-dev/sloat\",\n  opts = {\n    float = {\n      width = 0.4, -- bigger float\n      height = 0.5,\n      border = \"single\", -- different border\n    },\n    bottom = {\n      height = 15, -- taller bottom split\n    },\n    root_patterns = { \".git\", \"Cargo.toml\" }, -- custom root detection\n  },\n  keys = {\n    { \";t\", \"<cmd>Sloat float<cr>\", mode = { \"n\", \"t\" } },\n    { \";st\", \"<cmd>Sloat bottom<cr>\" },\n    { \";d\", \"<cmd>Sloat kill<cr>\" },\n  },\n}\n"
  },
  {
    "path": ".config/nvim/lua/plugins/treesitter.lua",
    "content": "-- Syntax highlighting\nreturn {\n  \"nvim-treesitter/nvim-treesitter\",\n  branch = \"main\",\n  build = \":TSUpdate\",\n  event = { \"BufReadPost\", \"BufNewFile\" },\n  lazy = false,\n  config = function()\n    require(\"nvim-treesitter.config\").setup {\n      -- language parsers that MUST be installed\n      ensure_installed = {\n        \"bash\",\n        \"css\",\n        \"dockerfile\",\n        \"go\",\n        \"html\",\n        \"javascript\",\n        \"json\",\n        \"lua\",\n        \"markdown\",\n        \"markdown_inline\",\n        \"python\",\n        \"typescript\",\n        \"vue\",\n        \"yaml\",\n      },\n      auto_install = true, -- auto-install any other parsers on opening new language files\n      sync_install = false,\n      highlight = {\n        enable = true,\n        additional_vim_regex_highlighting = false,\n      },\n      indent = { enable = true },\n      incremental_selection = {\n        enable = true,\n      },\n    }\n  end,\n}\n"
  },
  {
    "path": ".config/nvim/lua/plugins/trouble.lua",
    "content": "-- Diagnostics viewer\nreturn {\n  \"folke/trouble.nvim\",\n  opts = {}, -- for default options, refer to the configuration section for custom setup.\n  cmd = \"Trouble\",\n  lazy = true,\n  keys = {\n    {\"<leader>xx\", \"<cmd>Trouble diagnostics toggle<cr>\", desc = \"Workspace Diagnostics (Trouble)\"},\n    {\"<leader>xX\", \"<cmd>Trouble diagnostics toggle filter.buf=0<cr>\", desc = \"Buffer Diagnostics (Trouble)\"},\n    {\"<leader>cs\", \"<cmd>Trouble symbols toggle focus=false<cr>\", desc = \"Symbols (Trouble)\"},\n    {\"<leader>cl\", \"<cmd>Trouble lsp toggle focus=false win.position=right<cr>\", desc = \"LSP Definitions / references / ... (Trouble)\"},\n    {\"<leader>xL\", \"<cmd>Trouble loclist toggle<cr>\", desc = \"Location List (Trouble)\"},\n    {\"<leader>xQ\", \"<cmd>Trouble qflist toggle<cr>\", desc = \"Quickfix List (Trouble)\"},\n  },\n}\n"
  },
  {
    "path": ".config/nvim/lua/plugins/ui.lua",
    "content": "-- UI enhancements\nreturn {\n  -- focus mode (hide everything except the the file)\n  {\n    \"folke/zen-mode.nvim\",\n    cmd = \"ZenMode\",\n    opts = {\n      plugins = {\n        options = {\n          laststatus = 0,\n        },\n        tmux = true,\n        kitty = { enabled = false, font = \"+4\" },\n        alacritty = { enabled = true, font = \"18\" },\n      },\n    },\n    keys = { { \"<leader>z\", \"<cmd>ZenMode<cr>\", desc = \"Zen Mode\" } },\n  },\n\n  -- indent line\n  {\n    \"lukas-reineke/indent-blankline.nvim\",\n    main = \"ibl\",\n    opts = {\n      indent = {\n        char = \"▏\",\n      },\n      scope = {\n        show_start = false,\n        show_end = false,\n        show_exact_scope = false,\n      },\n      exclude = {\n        filetypes = {\n          \"help\",\n          \"startify\",\n          \"dashboard\",\n          \"packer\",\n          \"neogitstatus\",\n          \"NvimTree\",\n          \"Trouble\",\n        },\n      },\n    },\n  },\n\n  -- status bar\n  {\n    \"nvim-lualine/lualine.nvim\",\n    config = function()\n      require(\"lualine\").setup {\n        options = {\n          theme = \"auto\",\n        },\n        sections = {\n          lualine_x = {\n            {\n              function()\n                return vim.g.autoformat_enabled and \"󰉼 fmt\" or \"󰉼 fmt\"\n              end,\n              color = function()\n                return vim.g.autoformat_enabled and { fg = \"#a6e3a1\" } or { fg = \"#f38ba8\" }\n              end,\n            },\n            \"encoding\",\n            \"fileformat\",\n            \"filetype\",\n          },\n        },\n      }\n    end,\n  },\n\n  -- keymaps hints\n  {\n    \"folke/which-key.nvim\",\n    event = \"VeryLazy\",\n    opts = {},\n    keys = {\n      {\n        \"<leader>?\",\n        function()\n          require(\"which-key\").show { global = false }\n        end,\n        desc = \"Buffer Local Keymaps (which-key)\",\n      },\n    },\n  },\n\n  -- lsp progress notification\n  {\n    \"j-hui/fidget.nvim\",\n    opts = {\n      notification = {\n        window = {\n          winblend = 0,\n          normal_hl = \"FloatBorder\",\n          override_vim_notify = false, -- let mini.notify handle vim.notify\n        },\n      },\n    },\n  },\n\n  -- better comments highlights\n  {\n    \"folke/todo-comments.nvim\",\n    event = \"VimEnter\",\n    dependencies = { \"nvim-lua/plenary.nvim\" },\n    opts = { signs = false },\n  },\n\n  -- Undo history\n  {\n    \"mbbill/undotree\",\n    config = function()\n      vim.keymap.set(\"n\", \"<leader>u\", vim.cmd.UndotreeToggle)\n    end,\n  },\n\n  -- Incremental rename\n  {\n    \"smjonas/inc-rename.nvim\",\n    cmd = \"IncRename\",\n    config = true,\n  },\n\n  -- split and join\n  {\n    \"Wansmer/treesj\",\n    keys = { \"<space>m\" },\n    dependencies = { \"nvim-treesitter/nvim-treesitter\" },\n    config = function()\n      require(\"treesj\").setup { max_join_length = 200 }\n    end,\n  },\n}\n"
  },
  {
    "path": ".config/nvim/lua/plugins/yazi.lua",
    "content": "-- Yazi file manager\nreturn {\n  \"mikavilpas/yazi.nvim\",\n  event = \"VeryLazy\",\n  keys = {\n    { \"sf\", \"<cmd>Yazi<cr>\", desc = \"Open Yazi at current file\" },\n    { \"<leader>cw\", \"<cmd>Yazi cwd<cr>\", desc = \"Open the file manager in nvim's working directory\" },\n    { \"<c-up>\", \"<cmd>Yazi toggle<cr>\", desc = \"Resume the last yazi session\" },\n  },\n  opts = {\n    open_for_directories = false,\n    keymaps = { show_help = \"<f1>\" },\n    yazi_floating_window_border = \"none\",\n  },\n}\n"
  },
  {
    "path": ".config/nvim/lua/servers/bashls.lua",
    "content": "-- ================================================================================================\n-- TITLE : bashls (Bash Language Server) LSP Setup\n-- LINKS :\n--   > github: https://github.com/bash-lsp/bash-language-server\n-- ================================================================================================\n\n--- @param capabilities table LSP client capabilities (typically from nvim-cmp or similar)\n--- @return nil\nreturn function(capabilities)\n\tvim.lsp.config('bashls',{\n\t\tcapabilities = capabilities,\n\t\tfiletypes = { \"sh\", \"bash\", \"zsh\" },\n\t})\nend\n"
  },
  {
    "path": ".config/nvim/lua/servers/dockerls.lua",
    "content": "-- ================================================================================================\n-- TITLE : dockerls (Docker Language Server) LSP Setup\n-- LINKS :\n--   > github: https://github.com/rcjsuen/dockerfile-language-server-nodejs\n-- ================================================================================================\n\n--- @param capabilities table LSP client capabilities (typically from nvim-cmp or similar)\n--- @return nil\nreturn function(capabilities)\n\tvim.lsp.config('dockerls',{\n\t\tcapabilities = capabilities,\n\t\tfiletypes = { \"dockerfile\" },\n\t})\nend\n"
  },
  {
    "path": ".config/nvim/lua/servers/efm-langserver.lua",
    "content": "-- ================================================================================================\n-- TITLE : efm-langserver\n-- ABOUT : a general purpose language server protocol implemented here for linters/formatters\n-- LINKS :\n--   > github : https://github.com/mattn/efm-langserver\n--   > configs: https://github.com/creativenull/efmls-configs-nvim/tree/main\n-- ================================================================================================\n\n--- @param capabilities table LSP client capabilities (from nvim-cmp)\n--- @return nil\nreturn function(capabilities)\n  local luacheck = require \"efmls-configs.linters.luacheck\" -- lua linter\n  local stylua = require \"efmls-configs.formatters.stylua\" -- lua formatter\n  local flake8 = require \"efmls-configs.linters.flake8\" -- python linter\n  local black = require \"efmls-configs.formatters.black\" -- python formatter\n  local go_revive = require \"efmls-configs.linters.go_revive\" -- go linter\n  local gofumpt = require \"efmls-configs.formatters.gofumpt\" -- go formatter\n  local prettier_d = require \"efmls-configs.formatters.prettier_d\" -- ts/js/solidity/json/docker/html/css/react/svelte/vue formatter\n  local eslint_d = require \"efmls-configs.linters.eslint_d\" -- ts/js/solidity/json/react/svelte/vue linter\n  local fixjson = require \"efmls-configs.formatters.fixjson\" -- json formatter\n  local shellcheck = require \"efmls-configs.linters.shellcheck\" -- bash linter\n  local shfmt = require \"efmls-configs.formatters.shfmt\" -- bash formatter\n  local hadolint = require \"efmls-configs.linters.hadolint\" -- docker linter\n\n  vim.lsp.config(\"efm\", {\n    capabilities = capabilities,\n    filetypes = {\n      \"css\",\n      \"docker\",\n      \"go\",\n      \"html\",\n      \"javascript\",\n      \"javascriptreact\",\n      \"json\",\n      \"jsonc\",\n      \"lua\",\n      \"markdown\",\n      \"python\",\n      \"sh\",\n      \"svelte\",\n      \"typescript\",\n      \"typescriptreact\",\n      -- \"vue\",\n    },\n    init_options = {\n      documentFormatting = true,\n      documentRangeFormatting = true,\n      hover = true,\n      documentSymbol = true,\n      codeAction = true,\n      completion = true,\n    },\n    settings = {\n      languages = {\n        css = { prettier_d },\n        docker = { hadolint, prettier_d },\n        go = { gofumpt, go_revive },\n        html = { prettier_d },\n        javascript = { eslint_d, prettier_d },\n        javascriptreact = { eslint_d, prettier_d },\n        json = { eslint_d, fixjson },\n        jsonc = { eslint_d, fixjson },\n        lua = { luacheck, stylua },\n        markdown = { prettier_d },\n        python = { flake8, black },\n        sh = { shellcheck, shfmt },\n        svelte = { eslint_d, prettier_d },\n        typescript = { eslint_d, prettier_d },\n        typescriptreact = { eslint_d, prettier_d },\n        -- vue = { eslint_d, prettier_d },\n      },\n    },\n  })\nend\n"
  },
  {
    "path": ".config/nvim/lua/servers/emmet_ls.lua",
    "content": "-- ================================================================================================\n-- TITLE : emmet_ls (Emmet Language Server) LSP Setup\n-- ABOUT : Configures Emmet Language Server for web-related (e.g. TS/JS, CSS, Sass, Svelte, Vue)\n-- LINKS :\n--   > github: https://github.com/aca/emmet-ls\n-- ================================================================================================\n\n--- @param capabilities table LSP client capabilities (typically from nvim-cmp or similar)\n--- @return nil\nreturn function(capabilities)\n\tvim.lsp.config('emmet_ls', {\n\t\tcapabilities = capabilities,\n\t\tfiletypes = {\n\t\t\t\"html\",\n\t\t\t\"typescript\",\n\t\t\t\"javascript\",\n\t\t\t\"javascriptreact\",\n\t\t\t\"typescriptreact\",\n\t\t\t\"css\",\n\t\t\t\"sass\",\n\t\t\t\"scss\",\n\t\t\t\"svelte\",\n\t\t\t\"vue\",\n\t\t},\n\t})\nend\n"
  },
  {
    "path": ".config/nvim/lua/servers/gopls.lua",
    "content": "-- ================================================================================================\n-- TITLE : gopls (Golang Language Server) LSP Setup\n-- LINKS :\n--   > github: https://github.com/golang/tools/tree/master/gopls\n-- ================================================================================================\n\n--- @param capabilities table LSP client capabilities (typically from nvim-cmp or similar)\n--- @return nil\nreturn function(capabilities)\n  vim.lsp.config(\"gopls\", {\n    capabilities = capabilities,\n    filetypes = { \"go\" },\n  })\nend\n"
  },
  {
    "path": ".config/nvim/lua/servers/init.lua",
    "content": "local capabilities = require(\"cmp_nvim_lsp\").default_capabilities()\n\n-- Language Server Protocol (LSP)\nrequire \"servers.lua_ls\"(capabilities)\nrequire(\"servers.pyright\")(capabilities)\nrequire(\"servers.gopls\")(capabilities)\nrequire(\"servers.jsonls\")(capabilities)\nrequire(\"servers.ts_ls\")(capabilities)\nrequire(\"servers.bashls\")(capabilities)\nrequire(\"servers.dockerls\")(capabilities)\nrequire(\"servers.emmet_ls\")(capabilities)\nrequire(\"servers.yamlls\")(capabilities)\nrequire(\"servers.tailwindcss\")(capabilities)\n\n-- Linters & Formatters\nrequire(\"servers.efm-langserver\")(capabilities)\n\nvim.lsp.enable {\n  \"lua_ls\",\n  \"pyright\",\n  \"gopls\",\n  \"jsonls\",\n  \"ts_ls\",\n  \"bashls\",\n  \"dockerls\",\n  \"emmet_ls\",\n  \"yamlls\",\n  \"tailwindcss\",\n  \"efm\",\n}\n"
  },
  {
    "path": ".config/nvim/lua/servers/jsonls.lua",
    "content": "-- ================================================================================================\n-- TITLE : jsonls (JSON Language Server) LSP Setup\n-- LINKS :\n--   > github: https://github.com/microsoft/vscode-json-languageservice\n-- ================================================================================================\n\n--- @param capabilities table LSP client capabilities (typically from nvim-cmp or similar)\n--- @return nil\nreturn function(capabilities)\n\tvim.lsp.config('jsonls', {\n\t\tcapabilities = capabilities,\n\t\tfiletypes = { \"json\", \"jsonc\" },\n\t})\nend\n"
  },
  {
    "path": ".config/nvim/lua/servers/lua_ls.lua",
    "content": "-- ================================================================================================\n-- TITLE : lua_ls (Lua Language Server) LSP Setup\n-- LINKS :\n--   > github: https://github.com/LuaLS/lua-language-server\n-- ================================================================================================\n\n--- @param capabilities table LSP client capabilities (typically from nvim-cmp or similar)\n--- @return nil\nreturn function(capabilities)\n\tvim.lsp.config('lua_ls', {\n\t\tcapabilities = capabilities,\n\t\tsettings = {\n\t\t\tLua = {\n\t\t\t\tdiagnostics = {\n\t\t\t\t\tglobals = { \"vim\" },\n\t\t\t\t},\n\t\t\t\tworkspace = {\n\t\t\t\t\tlibrary = {\n\t\t\t\t\t\tvim.fn.expand(\"$VIMRUNTIME/lua\"),\n\t\t\t\t\t\tvim.fn.expand(\"$XDG_CONFIG_HOME\") .. \"/nvim/lua\",\n\t\t\t\t\t},\n\t\t\t\t},\n\t\t\t},\n\t\t},\n\t})\nend\n"
  },
  {
    "path": ".config/nvim/lua/servers/pyright.lua",
    "content": "-- ================================================================================================\n-- TITLE : pyright (Python Language Server) LSP Setup\n-- LINKS :\n--   > github: https://github.com/microsoft/pyright\n-- ================================================================================================\n\n--- @param capabilities table LSP client capabilities (typically from nvim-cmp or similar)\n--- @return nil This function doesn't return a value, it configures the LSP server\nreturn function(capabilities)\n  vim.lsp.config(\"pyright\", {\n    capabilities = capabilities,\n    settings = {\n      pyright = {\n        disableOrganizeImports = false,\n        analysis = {\n          useLibraryCodeForTypes = true,\n          autoSearchPaths = true,\n          diagnosticMode = \"workspace\",\n          autoImportCompletions = true,\n        },\n      },\n    },\n  })\nend\n"
  },
  {
    "path": ".config/nvim/lua/servers/tailwindcss.lua",
    "content": "-- ================================================================================================\n-- TITLE : tailwindcss LSP Setup\n-- LINKS :\n--   > github: https://github.com/tailwindlabs/tailwindcss-intellisense\n-- ================================================================================================\n\n--- @param capabilities table LSP client capabilities (typically from nvim-cmp or similar)\n--- @return nil\nreturn function(capabilities)\n\tvim.lsp.config('tailwindcss', {\n\t\tcapabilities = capabilities,\n\t\tfiletypes = {\n\t\t\t\"javascript\",\n\t\t\t\"javascriptreact\",\n\t\t\t\"typescript\",\n\t\t\t\"typescriptreact\",\n\t\t\t\"vue\",\n\t\t\t\"svelte\",\n\t\t},\n\t})\nend\n"
  },
  {
    "path": ".config/nvim/lua/servers/ts_ls.lua",
    "content": "-- ================================================================================================\n-- TITLE : ts_ls (TypeScript Language Server) LSP Setup\n-- LINKS :\n--   > github: https://github.com/typescript-language-server/typescript-language-server\n-- ================================================================================================\n\n--- @param capabilities table LSP client capabilities (typically from nvim-cmp or similar)\n--- @return nil\nreturn function( capabilities)\n\tvim.lsp.config('ts_ls', {\n\t\tcapabilities = capabilities,\n\t\tfiletypes = {\n\t\t\t\"typescript\",\n\t\t\t\"javascript\",\n\t\t\t\"typescriptreact\",\n\t\t\t\"javascriptreact\",\n\t\t},\n\t\tsettings = {\n\t\t\ttypescript = {\n\t\t\t\tindentStyle = \"space\",\n\t\t\t\tindentSize = 2,\n\t\t\t},\n\t\t},\n\t})\nend\n"
  },
  {
    "path": ".config/nvim/lua/servers/yamlls.lua",
    "content": "-- ================================================================================================\n-- TvITLE : yamlls (YAML Language Server) LSP Setup\n-- LINKS :\n--   > github: https://github.com/redhat-developer/yaml-language-server\n-- ================================================================================================\n\n--- @param capabilities table LSP client capabilities (typically from nvim-cmp or similar)\n--- @return nil\nreturn function(capabilities)\n\tvim.lsp.config('yamlls', {\n\t\tcapabilities = capabilities,\n\t\tsettings = {\n\t\t\tyaml = {\n\t\t\t\tschemas = {\n\t\t\t\t\t[\"https://json.schemastore.org/composer.json\"] = \"composer.json\",\n\t\t\t\t\t[\"https://json.schemastore.org/docker-compose.json\"] = \"docker-compose*.yml\",\n\t\t\t\t},\n\t\t\t\tvalidate = true,\n\t\t\t\tformat = {\n\t\t\t\t\tenable = true,\n\t\t\t\t},\n\t\t\t},\n\t\t},\n\t\tfiletypes = { \"yaml\" },\n\t})\nend\n"
  },
  {
    "path": ".config/nvim/lua/utils/diagnostics.lua",
    "content": "local M = {}\n\nlocal diagnostic_signs = {\n\tError = \" \",\n\tWarn = \" \",\n\tHint = \"\",\n\tInfo = \"\",\n}\n\nM.setup = function()\n\tvim.diagnostic.config({\n\t\tsigns = {\n\t\t\ttext = {\n\t\t\t\t[vim.diagnostic.severity.ERROR] = diagnostic_signs.Error,\n\t\t\t\t[vim.diagnostic.severity.WARN] = diagnostic_signs.Warn,\n\t\t\t\t[vim.diagnostic.severity.INFO] = diagnostic_signs.Info,\n\t\t\t\t[vim.diagnostic.severity.HINT] = diagnostic_signs.Hint,\n\t\t\t},\n\t\t},\n\t})\nend\n\nreturn M\n"
  },
  {
    "path": ".config/nvim/lua/utils/lsp.lua",
    "content": "local M = {}\n\nM.on_attach = function(event)\n  local client = vim.lsp.get_client_by_id(event.data.client_id)\n  if not client then\n    return\n  end\n  local bufnr = event.buf\n  local keymap = vim.keymap.set\n  local opts = {\n    noremap = true, -- prevent recursive mapping\n    silent = true, -- don't print the command to the cli\n    buffer = bufnr, -- restrict the keymap to the local buffer number\n  }\n\n  -- native neovim keymaps\n  keymap(\"n\", \"gd\", \"<cmd>Lspsaga peek_definition<CR>\", opts) -- goto definition\n  keymap(\"n\", \"gD\", \"<cmd>Lspsaga goto_definition<CR>\", opts) -- goto definition\n  keymap(\"n\", \"gS\", \"<cmd>vsplit | Lspsaga goto_definition<CR>\", opts) -- goto definition in split\n  keymap(\"n\", \"<leader>ca\", \"<cmd>Lspsaga code_action<CR>\", opts) -- Code actions\n  keymap(\"n\", \"<leader>rn\", \"<cmd>Lspsaga rename<CR>\", opts) -- Rename symbol\n  keymap(\"n\", \"<leader>D\", \"<cmd>Lspsaga show_line_diagnostics<CR>\", opts) -- Line diagnostics (float)\n  keymap(\"n\", \"<leader>d\", \"<cmd>Lspsaga show_cursor_diagnostics<CR>\", opts) -- Cursor diagnostics\n  keymap(\"n\", \"[d\", \"<cmd>Lspsaga diagnostic_jump_prev<CR>\", opts) -- previous diagnostic\n  keymap(\"n\", \"]d\", \"<cmd>Lspsaga diagnostic_jump_next<CR>\", opts) -- next diagnostic\n  keymap(\"n\", \"K\", \"<cmd>Lspsaga hover_doc<CR>\", opts) -- hover documentation\n\n  -- fzf-lua keymaps\n  keymap(\"n\", \"<leader>fd\", \"<cmd>FzfLua lsp_finder<CR>\", opts) -- LSP Finder (definition + references)\n  keymap(\"n\", \"<leader>fr\", \"<cmd>FzfLua lsp_references<CR>\", opts) -- Show all references to the symbol under the cursor\n  keymap(\"n\", \"<leader>ft\", \"<cmd>FzfLua lsp_typedefs<CR>\", opts) -- Jump to the type definition of the symbol under the cursor\n  keymap(\"n\", \"<leader>fs\", \"<cmd>FzfLua lsp_document_symbols<CR>\", opts) -- List all symbols (functions, classes, etc.) in the current file\n  keymap(\"n\", \"<leader>fw\", \"<cmd>FzfLua lsp_workspace_symbols<CR>\", opts) -- Search for any symbol across the entire project/workspace\n  keymap(\"n\", \"<leader>fi\", \"<cmd>FzfLua lsp_implementations<CR>\", opts) -- Go to implementation\n\n  -- Order Imports (if supported by the client LSP)\n  if client:supports_method(\"textDocument/codeAction\", bufnr) then\n    keymap(\"n\", \"<leader>oi\", function()\n      m.lsp.buf.code_action {\n        context = {\n          only = { \"source.organizeImports\" },\n          diagnostics = {},\n        },\n        apply = true,\n        bufnr = bufnr,\n      }\n      -- format after changing import order\n      vim.defer_fn(function()\n        vim.lsp.buf.format { bufnr = bufnr }\n      end, 50) -- slight delay to allow for the import order to go first\n    end, opts)\n  end\nend\n\nreturn M\n"
  },
  {
    "path": ".config/nvim/stylua.toml",
    "content": "indent_type = \"Spaces\"\nindent_width = 2\nno_call_parentheses = true\n"
  },
  {
    "path": ".config/rmpc/config.ron",
    "content": "#![enable(implicit_some)]\n#![enable(unwrap_newtypes)]\n#![enable(unwrap_variant_newtypes)]\n(\n    address: \"127.0.0.1:6600\",\n    cache_dir: Some(\"/tmp/rmpc/cache\"),\n    lyrics_dir: \"~/Music/lyrics\",\n    on_song_change: [\"~/.config/rmpc/fetch-lyrics\"],\n    theme: \"theme\",\n    password: None,\n    enable_config_hot_reload: true,\n    volume_step: 5,\n    max_fps: 30,\n    scrolloff: 0,\n    wrap_navigation: false,\n    enable_mouse: true,\n    status_update_interval_ms: 1000,\n    select_current_song_on_change: false,\n    album_art: (\n        method: Auto,\n        max_size_px: (width: 500, height: 500),\n        disabled_protocols: [\"http://\", \"https://\"],\n        vertical_align: Top,\n        horizontal_align: Center,\n    ),\n    keybinds: (\n        global: {\n            \":\":       CommandMode,\n            \",\":       VolumeDown,\n            \"s\":       Stop,\n            \".\":       VolumeUp,\n            \"<Tab>\":   NextTab,\n            \"<S-Tab>\": PreviousTab,\n            \"1\":       SwitchToTab(\"Playing\"),\n            \"2\":       SwitchToTab(\"Artists\"),\n            \"3\":       SwitchToTab(\"Albums\"),\n            \"4\":       SwitchToTab(\"Find\"),\n            \"9\":       SwitchToTab(\"Lists\"),\n            \"0\":       SwitchToTab(\"Dir\"),\n            \"q\":       Quit,\n            \">\":       NextTrack,\n            \"p\":       TogglePause,\n            \"<\":       PreviousTrack,\n            \"f\":       SeekForward,\n            \"z\":       ToggleRepeat,\n            \"x\":       ToggleRandom,\n            \"c\":       ToggleConsume,\n            \"v\":       ToggleSingle,\n            \"b\":       SeekBack,\n            \"~\":       ShowHelp,\n            \"I\":       ShowCurrentSongInfo,\n            \"O\":       ShowOutputs,\n            \"P\":       ShowDecoders,\n        },\n        navigation: {\n            \"k\":         Up,\n            \"j\":         Down,\n            \"h\":         Left,\n            \"l\":         Right,\n            \"<Up>\":      Up,\n            \"<Down>\":    Down,\n            \"<Left>\":    Left,\n            \"<Right>\":   Right,\n            \"<C-k>\":     PaneUp,\n            \"<C-j>\":     PaneDown,\n            \"<C-h>\":     PaneLeft,\n            \"<C-l>\":     PaneRight,\n            \"<C-u>\":     UpHalf,\n            \"N\":         PreviousResult,\n            \"a\":         Add,\n            \"A\":         AddAll,\n            \"r\":         Rename,\n            \"n\":         NextResult,\n            \"g\":         Top,\n            \"<Space>\":   Select,\n            \"<C-Space>\": InvertSelection,\n            \"G\":         Bottom,\n            \"<CR>\":      Confirm,\n            \"i\":         FocusInput,\n            \"J\":         MoveDown,\n            \"<C-d>\":     DownHalf,\n            \"/\":         EnterSearch,\n            \"<C-c>\":     Close,\n            \"<Esc>\":     Close,\n            \"K\":         MoveUp,\n            \"D\":         Delete,\n        },\n        queue: {\n            \"D\":       DeleteAll,\n            \"<CR>\":    Play,\n            \"<C-s>\":   Save,\n            \"a\":       AddToPlaylist,\n            \"d\":       Delete,\n            \"i\":       ShowInfo,\n            \"C\":       JumpToCurrent,\n        },\n    ),\n    search: (\n        case_sensitive: false,\n        mode: Contains,\n        tags: [\n            (value: \"any\",         label: \"Any Tag\"),\n            (value: \"artist\",      label: \"Artist\"),\n            (value: \"album\",       label: \"Album\"),\n            (value: \"title\",       label: \"Title\"),\n            (value: \"filename\",    label: \"Filename\"),\n            (value: \"genre\",       label: \"Genre\"),\n        ],\n    ),\n    artists: (\n        album_display_mode: SplitByDate,\n        album_sort_by: Date,\n    ),\n    tabs: [\n        (\n            name: \"Playing\",\n            pane: Split(\n                direction: Horizontal,\n                panes: [\n                    (\n                        size: \"25%\",\n                        pane: Split(\n                            direction: Vertical,\n                            panes: [\n                                (size: \"50%\", pane: Pane(AlbumArt)),\n                                (size: \"50%\", borders: \"TOP\", pane: Pane(Lyrics)),\n                            ],\n                        ),\n                    ),\n                    (\n                        size: \"75%\",\n                        borders: \"LEFT\",\n                        pane: Pane(Queue),\n                    ),\n                ],\n            ),\n        ),\n        (\n         name: \"Artists\",\n         pane: Pane(Artists),\n        ),\n        (\n         name: \"Albums\",\n         pane: Pane(Albums),\n        ),\n        (\n         name: \"Find\",\n         pane: Pane(Search),\n        ),\n         (\n          name: \"Lists\",\n          pane: Pane(Playlists),\n         ),\n        (\n         name: \"Dir\",\n         pane: Pane(Directories),\n        ),\n    ],\n)\n\n"
  },
  {
    "path": ".config/rmpc/fetch-lyrics",
    "content": "#!/bin/sh\n\n# ═══════════════════════════════════════════════════════════\n# rmpc on_song_change script\n# - Sends desktop notification with album art\n# - Auto-fetches lyrics from LRCLIB\n# ═══════════════════════════════════════════════════════════\n\nTMP_DIR=\"/tmp/rmpc\"\nALBUM_ART_PATH=\"$TMP_DIR/notification_cover.jpg\"\nLRCLIB_INSTANCE=\"https://lrclib.net\"\n\nmkdir -p \"$TMP_DIR\"\n\n# ───────────────────────────────────────────────────────────\n# Desktop Notification\n# ───────────────────────────────────────────────────────────\n\n# Get album art for notification\nif rmpc albumart --output \"$ALBUM_ART_PATH\" 2>/dev/null; then\n    ICON=\"$ALBUM_ART_PATH\"\nelse\n    ICON=\"audio-x-generic\"\nfi\n\n# Send notification\nnotify-send -i \"$ICON\" \"Now Playing\" \"$ARTIST - $TITLE\"\n\n# ───────────────────────────────────────────────────────────\n# Auto-fetch Lyrics\n# ───────────────────────────────────────────────────────────\n\nif [ \"$HAS_LRC\" = \"false\" ]; then\n    mkdir -p \"$(dirname \"$LRC_FILE\")\"\n\n    LYRICS=\"$(curl -X GET -sG \\\n        -H \"Lrclib-Client: rmpc-$VERSION\" \\\n        --data-urlencode \"artist_name=$ARTIST\" \\\n        --data-urlencode \"track_name=$TITLE\" \\\n        --data-urlencode \"album_name=$ALBUM\" \\\n        \"$LRCLIB_INSTANCE/api/get\" | jq -r '.syncedLyrics')\"\n\n    if [ -z \"$LYRICS\" ]; then\n        rmpc remote --pid \"$PID\" status \"No lyrics found for $ARTIST - $TITLE\" --level warn\n        exit\n    fi\n\n    if [ \"$LYRICS\" = \"null\" ]; then\n        rmpc remote --pid \"$PID\" status \"Lyrics not available for $ARTIST - $TITLE\" --level warn\n        exit\n    fi\n\n    # Write lyrics file with metadata\n    echo \"[ar:$ARTIST]\" > \"$LRC_FILE\"\n    echo \"[al:$ALBUM]\" >> \"$LRC_FILE\"\n    echo \"[ti:$TITLE]\" >> \"$LRC_FILE\"\n    echo \"$LYRICS\" | sed -E '/^\\[(ar|al|ti):/d' >> \"$LRC_FILE\"\n\n    # Index and notify\n    rmpc remote --pid \"$PID\" indexlrc --path \"$LRC_FILE\"\n    rmpc remote --pid \"$PID\" status \"Downloaded lyrics for $TITLE\" --level info\nfi\n"
  },
  {
    "path": ".config/rmpc/themes/theme.ron",
    "content": "#![enable(implicit_some)]\n#![enable(unwrap_newtypes)]\n#![enable(unwrap_variant_newtypes)]\n(\n    default_album_art_path: None,\n    show_song_table_header: false,\n    draw_borders: true,\n    browser_column_widths: [20, 38, 42],\n    text_color: \"#c1c1c1\",\n    tab_bar: (\n        enabled: true,\n        active_style: (fg: \"#c1c1c1\", bg: \"#000000\", modifiers: \"Bold\"),\n        inactive_style: (fg: \"#333333\", modifiers: \"\"),\n    ),\n    highlighted_item_style: (fg: \"#b3c7cc\", modifiers: \"Bold\"),\n    current_item_style: (fg: \"#000000\", bg: \"#b3c7cc\", modifiers: \"Bold\"),\n    borders_style: (fg: \"#333333\", modifiers: \"\"),\n    highlight_border_style: (fg: \"#b3c7cc\"),\n    symbols: (song: \"󰝚 \", dir: \" \", marker: \"* \", ellipsis: \"...\"),\n    progress_bar: (\n        symbols: [\"█\", \"█\", \"█\"],\n        track_style: (fg: \"#333333\"),\n        elapsed_style: (fg: \"#b3c7cc\"),\n        thumb_style: (fg: \"#b3c7cc\"),\n    ),\n    scrollbar: (\n        symbols: [\"\", \"\", \"\", \"\"],\n        track_style: (fg: \"#333333\"),\n        ends_style: (fg: \"#333333\"),\n        thumb_style: (fg: \"#b3c7cc\"),\n    ),\n    song_table_format: [\n        (\n            prop: (kind: Property(Title), style: (fg: \"#c1c1c1\"),\n                highlighted_item_style: (fg: \"#000000\", modifiers: \"Bold\"),\n                default: (kind: Property(Filename), style: (fg: \"#333333\"),)\n            ),\n            width: \"70%\",\n        ),\n        (\n            prop: (kind: Property(Album), style: (fg: \"#333333\"),\n                default: (kind: Text(\"Unknown Album\"), style: (fg: \"#333333\"))\n            ),\n            width: \"30%\",\n        ),\n    ],\n    layout: Split(\n        direction: Vertical,\n        panes: [\n            (\n                size: \"3\",\n                pane: Pane(Tabs),\n            ),\n            (\n                size: \"4\",\n                pane: Split(\n                    direction: Horizontal,\n                    panes: [\n                        (\n                            size: \"100%\",\n                            pane: Split(\n                                direction: Vertical,\n                                panes: [\n                                    (\n                                        size: \"4\",\n                                        borders: \"ALL\",\n                                        pane: Pane(Header),\n                                    ),\n                                ]\n                            )\n                        ),\n                    ]\n                ),\n            ),\n            (\n                size: \"100%\",\n                pane: Split(\n                    direction: Horizontal,\n                    panes: [\n                        (\n                            size: \"100%\",\n                            borders: \"NONE\",\n                            pane: Pane(TabContent),\n                        ),\n                    ]\n                ),\n            ),\n            (\n                size: \"3\",\n                borders: \"TOP | BOTTOM\",\n                pane: Pane(ProgressBar),\n            ),\n        ],\n    ),\n    header: (\n        rows: [\n            (\n                left: [\n                    (kind: Property(Status(StateV2(playing_label: \" \", paused_label: \"❚❚\", stopped_label: \"❚❚\"))), style: (fg: \"#b3c7cc\", modifiers: \"Bold\")),\n                ],\n                center: [\n                    (kind: Property(Song(Title)), style: (fg: \"#c1c1c1\", modifiers: \"Bold\"),\n                        default: (kind: Property(Song(Filename)), style: (fg: \"#c1c1c1\", modifiers: \"Bold\"))\n                    )\n                ],\n                right: [\n                    (kind: Text(\"Vol: \"), style: (fg: \"#b3c7cc\", modifiers: \"Bold\")),\n                    (kind: Property(Status(Volume)), style: (fg: \"#b3c7cc\", modifiers: \"Bold\")),\n                    (kind: Text(\"% \"), style: (fg: \"#b3c7cc\", modifiers: \"Bold\"))\n                ]\n            ),\n            (\nleft: [\n                    (kind: Property(Status(Elapsed)), style: (fg: \"#c1c1c1\")),\n                    (kind: Text(\"/\"), style: (fg: \"#333333\")),\n                    (kind: Property(Status(Duration)), style: (fg: \"#c1c1c1\")),\n                ],\n                center: [\n                    (kind: Property(Song(Artist)), style: (fg: \"#5f8787\", modifiers: \"Bold\"),\n                        default: (kind: Text(\"Unknown Artist\"), style: (fg: \"#333333\", modifiers: \"\"))\n                    ),\n                ],\n                right: [\n                    (\n                        kind: Property(Widget(States(\n                            active_style: (fg: \"#b3c7cc\", modifiers: \"Bold\"),\n                            separator_style: (fg: \"#333333\")))\n                        ),\n                        style: (fg: \"#333333\")\n                    ),\n                ]\n            ),\n        ],\n    ),\n    browser_song_format: [\n        (\n            kind: Group([\n                (kind: Property(Track)),\n                (kind: Text(\" \")),\n            ])\n        ),\n        (\n            kind: Group([\n                (kind: Property(Artist)),\n                (kind: Text(\" - \")),\n                (kind: Property(Title)),\n            ]),\n            default: (kind: Property(Filename))\n        ),\n    ],\n)\n"
  },
  {
    "path": ".config/starship.toml",
    "content": "# Symphony by vyrx\n# Theme: Espresso Harmony\n\n\"$schema\" = 'https://starship.rs/config-schema.json'\n\nadd_newline = true\ncommand_timeout = 200\nformat = \"\"\"$hostname$directory$git_branch$git_status$character\"\"\"\npalette = \"colors\"\n\n[palettes.colors]\n# black-metal-theme\nprimary = '#b3c7cc'       # directory, prompt\nsecondary = '#9b8d7f'     # git branch\nerror = '#653738'         # errors, git status (muted red)\n\n# espresso-theme\n# primary = '#e8b89a'       # directory, prompt \n# secondary = '#C97A65'     # git branch\n# error = '#D4776B'         # errors, git status\n\n[hostname]\nssh_only = true\nstyle = \"fg:primary\"\nformat = \"[@$hostname]($style) \"\n\n[directory]\nstyle = \"fg:primary bold\"\nread_only = \" 󰌾\"\nread_only_style = \"fg:error\"\ntruncation_length = 3\ntruncation_symbol = \"…/\"\nformat = \"[$path]($style)[$read_only]($read_only_style) \"\n\n[character]\nsuccess_symbol = '[❯](fg:primary bold)'\nerror_symbol = '[❯](fg:error bold)'\n\n[git_branch]\nstyle = \"fg:secondary\"\nformat = '[$branch]($style) '\n\n[git_status]\nahead = '⇡${count}'\nbehind = '⇣${count}'\ndiverged = '⇕⇡${ahead_count}⇣${behind_count}'\nformat = '[$all_status$ahead_behind](fg:error) '\n\n[line_break]\ndisabled = true\n"
  },
  {
    "path": ".config/sway/config",
    "content": "# Sway Configuration\n# man 5 sway\n\n\n# ╭───────────────────────────────────────────────────────────────────────╮\n# │ STARTUP                                                               │\n# ╰───────────────────────────────────────────────────────────────────────╯\nexec kanshi\nexec_always kanshictl reload\nexec waybar\nexec mako\nexec kdeconnect-indicator\nexec wl-clip-persist --clipboard regular\nexec wl-paste --watch cliphist store\nexec ~/Scripts/battery-monitor\n# exec ~/Scripts/set-wallpaper random\n\n# ╭───────────────────────────────────────────────────────────────────────╮\n# │ VARIABLES                                                             │\n# ╰───────────────────────────────────────────────────────────────────────╯\nset $mod Mod4\nset $left h\nset $down j\nset $up k\nset $right l\nset $term ghostty\nset $menu fuzzel\n\n\n# ╭───────────────────────────────────────────────────────────────────────╮\n# │ OUTPUT                                                                │\n# ╰───────────────────────────────────────────────────────────────────────╯\n# Run: swaymsg -t get_outputs\noutput * bg /home/vyrx/Pictures/Wallpapers/others/a_forest_of_trees_with_fog.jpg fill\n# output * bg /home/vyrx/Pictures/Wallpapers/others/a_sculpture_of_a_man_with_a_face_on_his_head.png fill\n\n# ╭───────────────────────────────────────────────────────────────────────╮\n# │ INPUT & IDLE                                                          │\n# ╰───────────────────────────────────────────────────────────────────────╯\ninput type:touchpad {\n    dwt enabled\n    tap enabled\n    natural_scroll enabled\n    middle_emulation enabled\n}\n\ninput * {\n    repeat_delay 200\n    repeat_rate 60\n}\n\n# Lock after 300s (5min), turn off monitors after 600s (10min), lock before sleep\n# exec swayidle -w \\\n#     timeout 300 'swaylock -f' \\\n#     timeout 600 'swaymsg \"output * power off\"' resume 'swaymsg \"output * power on\"' \\\n#     before-sleep 'swaylock -f'\n\n\n# Basic touchpad settings\ninput type:touchpad {\n    tap enabled\n    natural_scroll enabled\n    dwt enabled              # Disable while typing\n    scroll_method two_finger\n    middle_emulation enabled\n    click_method clickfinger\n}\n\n# ╭───────────────────────────────────────────────────────────────────────╮\n# │ APPEARANCE & BEHAVIOR                                                 │\n# ╰───────────────────────────────────────────────────────────────────────╯\n# Border colors: black-metal theme\nclient.focused #718096 #404552 #f7fafc #718096 #718096\n\ngaps inner 5\nsmart_gaps on\ndefault_border pixel 2\ndefault_floating_border pixel 2\n\n# font pango:monospace 0.1\nfont pango:DejaVu Sans Mono 9\ntitlebar_border_thickness 0\ntitlebar_padding 3\nhide_edge_borders --i3 smart\n\nworkspace_auto_back_and_forth yes\nfocus_on_window_activation focus\nfloating_modifier $mod normal\nfocus_on_window_activation urgent\nfocus_wrapping no\nmouse_warping output\n\nseat * hide_cursor 8000\nseat * hide_cursor when-typing enable\n\n# ╭───────────────────────────────────────────────────────────────────────╮\n# │ WINDOW RULES                                                          │\n# ╰───────────────────────────────────────────────────────────────────────╯\n# ─── Workspace Assignments ───\nassign [app_id=\"vesktop\"] workspace number 10\nassign [class=\"Vesktop\"] workspace number 10\nassign [app_id=\"obsidian\"] workspace number 8\nassign [app_id=\"spotify\"] workspace number 9\nassign [app_id=\"code\"] workspace number 2\nassign [app_id=\"org.telegram.desktop\"] workspace number 7\nassign [app_id=\"brave-todoist.com__-Default\"] workspace number 6\nassign [app_id=\"brave-web.whatsapp.com__-Default\"] workspace number 5\nassign [app_id=\"mpv\"] workspace number 4\n\n# ─── Focus on Open ───\nfor_window [app_id=\"vesktop\"] focus\nfor_window [class=\"Vesktop\"] focus\nfor_window [app_id=\"obsidian\"] focus\nfor_window [app_id=\"spotify\"] focus\nfor_window [app_id=\"code\"] focus\nfor_window [app_id=\"org.telegram.desktop\"] focus\nfor_window [app_id=\"brave-todoist.com__-Default\"] focus\nfor_window [app_id=\"brave-web.whatsapp.com__-Default\"] focus\nfor_window [app_id=\"mpv\"] focus\n\n# ─── Floating Windows ───\nfor_window [app_id=\"mpv\"] floating enable, resize set width 960 height 540, move position center\nfor_window [app_id=\"thunar\"] floating enable, resize set width 1000 height 600, move position center\nfor_window [class=\"feh\"] floating enable, resize set width 960 height 540, move position center\nfor_window [app_id=\"com.github.wwmm.easyeffects\"] floating enable, resize set 1000 600, move position center\nfor_window [app_id=\"com.vyrx.kanshi-switch\"] floating enable, resize set width 400 height 220, move position center\n\n# ╭───────────────────────────────────────────────────────────────────────╮\n# │ KEYBINDINGS                                                           │\n# ╰───────────────────────────────────────────────────────────────────────╯\n# ─── Core Applications ───\nbindsym $mod+Return exec $term\nbindsym $mod+Space exec $menu\nbindsym $mod+b exec brave\nbindsym $mod+e exec thunar\nbindsym $mod+c exec code\nbindsym $mod+o exec obsidian\nbindsym $mod+Shift+G exec geary\nbindsym $mod+q kill\n\n# ─── Communication & Media ───\nbindsym $mod+d exec vesktop\nbindsym $mod+m exec spotify-launcher\n\n# ─── Terminal Applications ───\nbindsym Alt+slash exec ghostty -e btop\nbindsym Alt+N exec ghostty -e nvim\nbindsym Alt+M exec ghostty -e rmpc\nbindsym Alt+Q exec ghostty -e yazi\nbindsym Alt+I exec ghostty --class=com.vyrx.kanshi-switch -e ~/Scripts/kanshi-switch\n# bindsym $mod+Shift+Return exec ghostty -e tmux a \nbindsym $mod+Shift+BackSpace exec ~/Scripts/run-scrcpy mirror\n\nbindsym --locked XF86PowerOff exec systemctl suspend | swaylock\n\n\n# ─── Web Applications ───\nbindsym $mod+a exec ~/Scripts/launch-webapp https://chatgpt.com\nbindsym $mod+Alt+a exec ~/Scripts/launch-webapp https://chat.z.ai\n# bindsym $mod+Alt+a exec ~/Scripts/launch-webapp https://www.kimi.com/en\n# bindsym $mod+Alt+a exec ~/Scripts/launch-webapp https://perplexity.ai\nbindsym $mod+Shift+a exec ~/Scripts/launch-webapp https://gemini.google.com\nbindsym $mod+T exec ~/Scripts/launch-webapp https://app.todoist.com/app\nbindsym $mod+Y exec ~/Scripts/launch-webapp https://youtube.com\nbindsym $mod+G exec ~/Scripts/launch-webapp https://github.com\n# bindsym $mod+Shift+G exec ~/Scripts/launch-webapp https://mail.google.com\nbindsym Alt+G exec ghostty --title='gh-dash' -e gh dash\nbindsym $mod+X exec ~/Scripts/launch-webapp https://X.com\nbindsym $mod+Shift+W exec ~/Scripts/launch-webapp https://web.whatsapp.com\nbindsym $mod+Backslash exec ~/Scripts/launch-webapp https://devhints.io\nbindsym Alt+Space exec ~/Scripts/launch-webapp https://vyrx.dev\n\n# ─── Utilities ───\nbindsym $mod+Alt+m exec ~/Scripts/dual-dac\nbindsym Alt+comma exec cliphist list | fuzzel --dmenu | cliphist decode | wl-copy\nbindsym Alt+period exec ~/Scripts/fuzzel-emoji\nbindsym Alt+P exec hyprpicker -a\nbindsym $mod+BackSpace exec ~/Scripts/toggle-terminal-transparency\nbindsym $mod+Shift+Space exec ~/Scripts/toggle-waybar\nbindsym $mod+Shift+M exec ~/Scripts/beats\nbindsym $mod+XF86AudioMute exec ~/Scripts/audio-switch\nbindsym $mod+Shift+n exec makoctl dismiss -a\nbindsym $mod+n exec makoctl restore\nbindsym $mod+Alt+n exec ~/Scripts/toggle-wlsunset\nbindsym $mod+R exec ~/Scripts/screenrecord --with-desktop-audio \nbindsym $mod+Shift+R exec ~/Scripts/screenrecord --with-microphone-audio \nbindsym $mod+P exec ~/Scripts/screenshot\nbindsym $mod+Shift+P exec ~/Scripts/screenshot fullscreen\nbindsym Print exec grim\n\n# Launch Pixel_9\nbindsym $mod+Alt+p exec ~/Android/Sdk/emulator/emulator -avd Pixel_9 &\n\n# ─── Wallpaper ───\nbindsym Ctrl+Alt+Space exec ~/Scripts/set-wallpaper random\nbindsym $mod+Ctrl+Shift+Space exec ~/Scripts/set-wallpaper choose\n\n# ─── Session & Power ───\nbindsym $mod+Alt+l exec swaylock\nbindsym $mod+escape exec ~/Scripts/powermenu\nbindsym $mod+Shift+c reload\nbindsym $mod+Shift+e exec swaynag -t warning -m 'Exit sway?' -B 'Yes' 'swaymsg exit'\n\n# ─── Monitor Toggle ───\nbindsym Ctrl+Shift+1 exec ~/Scripts/toggle-output eDP-1\nbindsym Ctrl+Shift+2 exec ~/Scripts/toggle-output HDMI-A-1\n\n# ─── Hardware Keys ───\nbindsym --locked XF86AudioMute exec pactl set-sink-mute @DEFAULT_SINK@ toggle\nbindsym --locked XF86AudioLowerVolume exec pactl set-sink-volume @DEFAULT_SINK@ -5%\nbindsym --locked XF86AudioRaiseVolume exec pactl set-sink-volume @DEFAULT_SINK@ +5%\nbindsym --locked XF86AudioMicMute exec pactl set-source-mute @DEFAULT_SOURCE@ toggle\n\n# Laptop brightness (brightnessctl)\nbindsym --locked XF86MonBrightnessDown exec brightnessctl set 10%-\nbindsym --locked XF86MonBrightnessUp exec brightnessctl set 10%+\nbindsym $mod+Alt+XF86AudioRaiseVolume exec brightnessctl --class=backlight set +10%\nbindsym $mod+Alt+XF86AudioLowerVolume exec brightnessctl --class=backlight set 10%-\n\n# External monitor brightness (DDC/CI)\nbindsym $mod+XF86AudioRaiseVolume exec ddcutil setvcp 10 + 10\nbindsym $mod+XF86AudioLowerVolume exec ddcutil setvcp 10 - 10\n\n# Media controls\nbindsym $mod+F10 exec playerctl previous\nbindsym $mod+F11 exec playerctl play-pause\nbindsym $mod+F12 exec playerctl next\n\n# ─── Window Focus (Vim-style) ───\nbindsym $mod+$left focus left\nbindsym $mod+$down focus down\nbindsym $mod+$up focus up\nbindsym $mod+$right focus right\nbindsym $mod+Left focus left\nbindsym $mod+Down focus down\nbindsym $mod+Up focus up\nbindsym $mod+Right focus right\n\n# ─── Window Movement ───\nbindsym $mod+Shift+$left move left\nbindsym $mod+Shift+$down move down\nbindsym $mod+Shift+$up move up\nbindsym $mod+Shift+$right move right\n# bindsym $mod+Shift+Left move left\nbindsym $mod+Shift+Down move down\nbindsym $mod+Shift+Up move up\nbindsym $mod+Shift+Right move right\n\n# ─── Workspace Navigation ───\nbindsym $mod+1 workspace number 1\nbindsym $mod+2 workspace number 2\nbindsym $mod+3 workspace number 3\nbindsym $mod+4 workspace number 4\nbindsym $mod+5 workspace number 5\nbindsym $mod+6 workspace number 6\nbindsym $mod+7 workspace number 7\nbindsym $mod+8 workspace number 8\nbindsym $mod+9 workspace number 9\nbindsym $mod+0 workspace number 10\nbindsym Alt+K workspace next\nbindsym Alt+J workspace prev\n\n# ─── Move to Workspace ───\nbindsym $mod+Shift+1 move container to workspace number 1\nbindsym $mod+Shift+2 move container to workspace number 2\nbindsym $mod+Shift+3 move container to workspace number 3\nbindsym $mod+Shift+4 move container to workspace number 4\nbindsym $mod+Shift+5 move container to workspace number 5\nbindsym $mod+Shift+6 move container to workspace number 6\nbindsym $mod+Shift+7 move container to workspace number 7\nbindsym $mod+Shift+8 move container to workspace number 8\nbindsym $mod+Shift+9 move container to workspace number 9\nbindsym $mod+Shift+0 move container to workspace number 10\n\n# ─── Layout ───\nbindsym $mod+w layout tabbed\nbindsym $mod+V layout toggle split\nbindsym $mod+f fullscreen\nbindsym $mod+Shift+V floating toggle\n\n# ─── Scratchpad ───\nbindsym $mod+Shift+minus move scratchpad\nbindsym $mod+minus scratchpad show\n\n# ─── Resize Mode ───\nbindsym $mod+Alt+r mode \"resize\"\nmode \"resize\" {\n    bindsym $left resize shrink width 10px\n    bindsym $down resize grow height 10px\n    bindsym $up resize shrink height 10px\n    bindsym $right resize grow width 10p\n    bindsym Left resize shrink width 10px\n    bindsym Down resize grow height 10px\n    bindsym Up resize shrink height 10px\n    bindsym Right resize grow width 10px\n    bindsym Return mode \"default\"\n    bindsym Escape mode \"default\"\n}\n\n# ╭───────────────────────────────────────────────────────────────────────╮\n# │ INCLUDES                                                              │\n# ╰───────────────────────────────────────────────────────────────────────╯\ninclude /etc/sway/config.d/*\n"
  },
  {
    "path": ".config/swayidle/config",
    "content": "# swayidle configuration file\n# Idle timeout events for Sway\n\n# Lock screen after 5 minutes (300 seconds) of inactivity\ntimeout 300 'swaylock -f'\n\n# Screen off after 5.5 minutes (330 seconds) of inactivity\ntimeout 330 'swaymsg \"output * dpms off\"' resume 'swaymsg \"output * dpms on\"'\n\n# Lock session before sleep\nbefore-sleep 'swaylock -f'\n"
  },
  {
    "path": ".config/swaylock/config",
    "content": "# --- Appearance & Blur ---\n# image=~/Wallpapers/monochrome/mac__.jpg\nscreenshots\nclock\nindicator\nindicator-radius=100\nindicator-thickness=10\n\n# Performance Trick: Downscale before blurring for instant locking\neffect-scale=0.5\neffect-blur=7x5\neffect-scale=2\neffect-vignette=0.5:0.5\n\n# --- Midnight Obsidian Colors ---\nring-color=3e4451\nkey-hl-color=5c6370\ninside-color=0f0f17cc\ntext-color=abb2bf\nline-color=00000000\nseparator-color=00000000\n\n# --- Feedback Colors ---\nring-ver-color=5c6370\ninside-ver-color=0f0f17cc\nring-wrong-color=e06c75\ntext-wrong-color=e06c75\n\n# --- Behavior ---\nignore-empty-password\nshow-failed-attempts\nfont=\"Inter\"\ndatestr=%a, %B %e\ntimestr=%I:%M %p\n"
  },
  {
    "path": ".config/waybar/config.jsonc",
    "content": "{\n  \"reload_style_on_change\": true,\n  \"layer\": \"top\",\n  \"position\": \"bottom\",\n  \"spacing\": 0,\n  \"height\": 28,\n  \"modules-left\": [\n    \"sway/workspaces\",\n    \"niri/workspaces\"\n  ],\n  \"modules-center\": [\n    \"mpris\"\n  ],\n  \"modules-right\": [\n    \"group/tray-drawer\",\n    \"custom/screenrecording-indicator\",\n    \"cpu\",\n    \"memory\",\n    \"disk\",\n    \"network\",\n    \"pulseaudio\",\n    \"battery\",\n    \"clock\"\n  ],\n  \"group/tray-drawer\": {\n    \"orientation\": \"horizontal\",\n    \"drawer\": {\n      \"transition-duration\": 200\n    },\n    \"modules\": [\n      \"custom/expand\",\n      \"tray\"\n    ]\n  },\n  \"custom/expand\": {\n    \"format\": \"❮\",\n    \"tooltip\": false\n  },\n  \"custom/screenrecording-indicator\": {\n    \"on-click\": \"~/Scripts/screenrecord\",\n    \"exec\": \"~/Scripts/indicator-record\",\n    \"signal\": 8,\n    \"return-type\": \"json\"\n  },\n  \"niri/workspaces\": {\n    \"on-scroll-up\": \"niri msg action focus-window-or-workspace-up\",\n    \"on-scroll-down\": \"niri msg action focus-column-right-or-first\"\n  },\n  \"sway/workspaces\": {\n    \"disable-scroll\": false,\n    \"all-outputs\": false,\n    \"format\": \"{name}\",\n    \"on-click\": \"activate\"\n  },\n  \"cpu\": {\n    \"interval\": 2,\n    \"format\": \"cpu {usage}%\",\n    \"on-click\": \"ghostty -e btop\"\n  },\n  \"memory\": {\n    \"format\": \"mem {used:0.1f}gb\",\n    \"interval\": 2,\n    \"on-click\": \"ghostty -e btop\"\n  },\n  \"disk\": {\n    \"interval\": 30,\n    \"format\": \"disk {percentage_free}%\",\n    \"tooltip-format\": \"Used: {used}\\nFree: {free}\\nTotal: {total}\",\n    \"path\": \"/\",\n    \"on-click\": \"ghostty -e duf\"\n  },\n  \"clock\": {\n    \"format\": \"{:%H:%M}\",\n    \"format-alt\": \"{:L%A %d %B}\",\n    \"tooltip\": false\n  },\n  \"network\": {\n    \"interface\": \"wlan*\",\n    \"format-wifi\": \"wifi {essid}\",\n    \"format-ethernet\": \"eth {ifname}\",\n    \"format-disconnected\": \"wifi --\",\n    \"tooltip-format-wifi\": \"{essid} ({frequency} GHz)\\n⇣{bandwidthDownBytes}  ⇡{bandwidthUpBytes}\",\n    \"tooltip-format-ethernet\": \"⇣{bandwidthDownBytes}  ⇡{bandwidthUpBytes}\",\n    \"tooltip-format-disconnected\": \"Disconnected\",\n    \"interval\": 3,\n    \"on-click\": \"nmgui\"\n  },\n  \"battery\": {\n    \"format\": \"bat {capacity}%\",\n    \"format-discharging\": \"bat {capacity}%\",\n    \"format-charging\": \"bat {capacity}%\",\n    \"format-plugged\": \"bat {capacity}%\",\n    \"tooltip-format-discharging\": \"{power:>1.0f}W↓ {capacity}%\",\n    \"tooltip-format-charging\": \"{power:>1.0f}W↑ {capacity}%\",\n    \"interval\": 5,\n    \"states\": {\n      \"warning\": 20,\n      \"critical\": 10\n    }\n  },\n  \"pulseaudio\": {\n    \"format\": \"vol {volume}%\",\n    \"on-click\": \"pavucontrol\",\n    \"on-click-right\": \"pamixer -t\",\n    \"tooltip-format\": \"vol {volume}%\",\n    \"scroll-step\": 5,\n    \"format-muted\": \"vol muted\"\n  },\n  \"tray\": {\n    \"icon-size\": 12,\n    \"spacing\": 4\n  },\n  \"mpris\": {\n    \"format\": \"{artist} • {title}\",\n    \"format-paused\": \"{artist} • {title}\",\n    \"format-stopped\": \"\",\n    \"max-length\": 55\n  }\n}\n"
  },
  {
    "path": ".config/waybar/style.css",
    "content": "/* colors */\n@define-color waybar-bg #121212;\n@define-color waybar-fg #d0d0d0;\n\n@define-color waybar-warning #7a8b6e;\n@define-color waybar-danger #6b3a3a;\n\n@define-color waybar-surface #1e1e1e;\n@define-color waybar-surface-hover #2a2a2a;\n@define-color waybar-border #3a3a3a;\n@define-color waybar-workspace-active-bg #333333;\n@define-color waybar-workspace-occupied-fg #a0a0a0;\n@define-color waybar-workspace-empty-fg #505050;\n\n* {\n  background-color: transparent;\n  color: @waybar-fg;\n  border: none;\n  border-radius: 0;\n  font-family: \"Inter\";\n  font-size: 11px;\n}\n\ntooltip {\n  background: @waybar-bg;\n  border-radius: 4px;\n  padding: 6px 10px;\n}\n\nmenu {\n  background: @waybar-surface;\n  border: 1px solid @waybar-border;\n  padding: 4px;\n}\n\nmenu menuitem:hover {\n  background: @waybar-surface-hover;\n}\n\nwindow#waybar {\n  background: @waybar-bg;\n}\n\n.modules-center {\n  padding: 0 80px;\n}\n\n#workspaces button {\n  padding: 0 2px;\n  margin: 0 1px;\n  min-width: 12px;\n  min-height: 12px;\n  background-color: transparent;\n  color: @waybar-workspace-empty-fg;\n  font-weight: 400;\n  transition: all 100ms ease;\n  border-radius: 0;\n  border: none;\n}\n\n#workspaces button.focused {\n  background-color: @waybar-workspace-active-bg;\n  font-weight: 500;\n}\n\n#workspaces button.persistent,\n#workspaces button.empty {\n  color: @waybar-workspace-empty-fg;\n  opacity: 0.5;\n}\n\n#workspaces button.visible {\n  color: @waybar-workspace-occupied-fg;\n}\n\n#mpris.paused {\n  opacity: 0.4;\n}\n\n#memory,\n#cpu,\n#disk,\n#battery,\n#network,\n#pulseaudio,\n#backlight,\n#tray,\n#custom-screenrecording-indicator,\n#custom-expand,\n#mpris,\n#clock,\n#custom-idle-indicator,\n#custom-dnd-indicator {\n  padding: 0 6px;\n  font-weight: 600;\n  opacity: 1;\n  transition: opacity 150ms ease;\n}\n\n#clock {\n  font-weight: 700;\n}\n\n#custom-expand {\n  font-size: 10px;\n}\n\n#custom-screenrecording-indicator {\n  min-width: 12px;\n  font-size: 12px;\n}\n\n#custom-screenrecording-indicator.active {\n  color: @waybar-danger;\n}\n\n#bluetooth,\n#battery.warning {\n  color: @waybar-warning;\n}\n\n#battery.critical {\n  color: @waybar-danger;\n  animation: blink 1s infinite;\n}\n\n#cpu,\n#memory,\n#network,\n#pulseaudio,\n#battery,\n#clock {\n  margin: 0 1px;\n}\n\n@keyframes blink {\n  50% {\n    opacity: 0.5;\n  }\n}\n"
  },
  {
    "path": ".config/yazi/theme.toml",
    "content": "# Symphony by vyrx\n# Theme: Black Metal\n# https://github.com/vyrx-dev\n\n# : Manager [[[\n\n[mgr]\ncwd = { fg = \"#c1c1c1\" }\n\n# Find\nfind_keyword = { fg = \"#5f8787\", bold = true, italic = true, underline = true }\nfind_position = { fg = \"#5f8787\", bold = true, italic = true }\n\n# Marker\nmarker_copied = { fg = \"#9b8d7f\", bg = \"#9b8d7f\" }\nmarker_cut = { fg = \"#653738\", bg = \"#653738\" }\nmarker_marked = { fg = \"#5f8787\", bg = \"#5f8787\" }\nmarker_selected = { fg = \"#b3c7cc\", bg = \"#b3c7cc\" }\n\n# Count\ncount_copied = { fg = \"#000000\", bg = \"#9b8d7f\" }\ncount_cut = { fg = \"#000000\", bg = \"#653738\" }\ncount_selected = { fg = \"#000000\", bg = \"#b3c7cc\" }\n\n# Border\nborder_symbol = \" \"\nborder_style  = { fg = \"#b3c7cc\" }\n\n# : ]]]\n\n\n# : Status [[[\n\n[status]\nsep_left = { open = \"\", close = \"🭠\" }\nsep_right = { open = \"🭁\", close = \"\" }\n\n# Permissions\nperm_type = { fg = \"#b3c7cc\" }\nperm_read = { fg = \"#9b8d7f\" }\nperm_write = { fg = \"#5f8787\" }\nperm_exec = { fg = \"#653738\" }\nperm_sep = { fg = \"#999999\" }\n\n# Progress\nprogress_label = { bold = true }\nprogress_normal = { fg = \"#b3c7cc\", bg = \"#333333\" }\nprogress_error = { fg = \"#653738\", bg = \"#333333\" }\n\n[mode]\n# Mode\nnormal_main = { bg = \"#b3c7cc\", fg = \"#000000\", bold = true }\nnormal_alt  = { bg = \"#333333\", fg = \"#c1c1c1\" }\n\n# Select mode\nselect_main = { bg = \"#999999\", fg = \"#000000\", bold = true }\nselect_alt  = { bg = \"#333333\", fg = \"#c1c1c1\" }\n\n# Unset mode\nunset_main = { bg = \"#9b8d7f\", fg = \"#000000\", bold = true }\nunset_alt  = { bg = \"#333333\", fg = \"#c1c1c1\" }\n\n# : ]]]\n\n\n# : Select [[[\n\n[select]\nborder = { fg = \"#b3c7cc\" }\nactive = { fg = \"#9b8d7f\", bold = true }\n\n# : ]]]\n\n\n# : Input [[[\n\n[input]\nborder = { fg = \"#b3c7cc\" }\nvalue = { fg = \"#c1c1c1\" }\n\n# : ]]]\n\n# : Tabs [[[\n\n[tabs]\nactive = { fg = \"#b3c7cc\", bold = true, bg = \"#000000\" }\ninactive = { fg = \"#999999\", bg = \"#000000\" }\nsep_inner = { open = \"[\", close = \"]\" }\n\n# : ]]]\n\n\n# : Completion [[[\n\n[cmp]\nborder = { fg = \"#b3c7cc\", bg = \"#333333\" }\n\n# : ]]]\n\n\n# : Tasks [[[\n\n[tasks]\nborder = { fg = \"#b3c7cc\" }\ntitle = {}\nhovered = { fg = \"#999999\", underline = true }\n\n# : ]]]\n\n\n# : Which [[[\n\n[which]\ncols = 3\nmask = { bg = \"#333333\" }\ncand = { fg = \"#b3c7cc\" }\nrest = { fg = \"#999999\" }\ndesc = { fg = \"#c1c1c1\" }\nseparator = \" ▶ \"\nseparator_style = { fg = \"#c1c1c1\" }\n\n# : ]]]\n\n\n# : Help [[[\n\n[help]\non = { fg = \"#c1c1c1\" }\nrun = { fg = \"#c1c1c1\" }\nfooter = { fg = \"#000000\", bg = \"#999999\" }\n\n# : ]]]\n\n\n# : Notify [[[\n\n[notify]\ntitle_info = { fg = \"#b3c7cc\" }\ntitle_warn = { fg = \"#5f8787\" }\ntitle_error = { fg = \"#653738\" }\n\n# : ]]]\n\n\n# : File-specific styles [[[\n\n[filetype]\n\nrules = [\n    # Images\n    { mime = \"image/*\", fg = \"#b3c7cc\" },\n\n    # Media\n    { mime = \"{audio,video}/*\", fg = \"#5f8787\" },\n\n    # Archives\n    { mime = \"application/{zip,rar,7z*,tar,gzip,xz,zstd,bzip*,lzma,compress,archive,cpio,arj,xar,ms-cab*}\", fg = \"#999999\" },\n\n    # Documents\n    { mime = \"application/{pdf,doc,rtf}\", fg = \"#a7c7c7\" },\n\n    # Special files\n    { url = \"*\", is = \"orphan\", bg = \"#653738\" },\n    { url = \"*\", is = \"exec\", fg = \"#c1c1c1\" },\n\n    # Fallback\n    { url = \"*\", fg = \"#c1c1c1\" },\n    { url = \"*/\", fg = \"#b3c7cc\" },\n]\n\n# : ]]]\n"
  },
  {
    "path": ".github/FUNDING.yml",
    "content": "# These are supported funding model platforms\n\ngithub: # Replace with up to 4 GitHub Sponsors-enabled usernames e.g., [user1, user2]\npatreon: # Replace with a single Patreon username\nopen_collective: # Replace with a single Open Collective username\nko_fi:  vyrxx\ntidelift: # Replace with a single Tidelift platform-name/package-name e.g., npm/babel\ncommunity_bridge: # Replace with a single Community Bridge project-name e.g., cloud-foundry\nliberapay: # Replace with a single Liberapay username\nissuehunt: # Replace with a single IssueHunt username\nlfx_crowdfunding: # Replace with a single LFX Crowdfunding project-name e.g., cloud-foundry\npolar: # Replace with a single Polar username\nbuy_me_a_coffee: # Replace with a single Buy Me a Coffee username\nthanks_dev: # Replace with a single thanks.dev username\ncustom: # Replace with up to 4 custom sponsorship URLs e.g., ['link1', 'link2']\n"
  },
  {
    "path": ".gitignore",
    "content": "# Fish shell auto-generated files\n.config/fish/fish_variables\n\n# Neovim plugin lock (auto-generated)\n.config/nvim/lazy-lock.json\n\n# Binary files\nScripts/yt-dlp\n"
  },
  {
    "path": ".tmux.conf",
    "content": "set -g default-terminal \"tmux-256color\"\nset -ag terminal-overrides \",xterm-256color:RGB\"\n\n####  PREFIX KEY ####\nunbind C-b\nset -g prefix C-s  #Suggestion: Remap CAPSLOCK to CTRL\n\n####  RELOAD  tmux.conf  ####\nunbind r\nbind R source-file ~/.tmux.conf \\; display \"Reloaded!\"\n\n\n####  KEY BINDINGS  ####\nsetw -g mode-keys vi\n\nset -g base-index 1          # start indexing windows at 1 instead of 0\nset -g detach-on-destroy off # don't exit from tmux when closing a session\nset -g escape-time 0         # zero-out escape time delay\nset -g history-limit 1000000 # increase history size (from 2,000)\nset -g mouse on              # enable mouse support\nset -g focus-events on       # enable focus events\nset -g renumber-windows on   # renumber all windows when any window is closed\nset -g set-clipboard on      # use system clipboard\nset -g status-interval 3     # update the status bar every 3 seconds\nbind-key x kill-pane         # skip \"kill-pane 1? (y/n)\" prompt\n\n#### Pane resizing ####\nbind -r S-Left resize-pane -L 5\nbind -r S-Down resize-pane -D 5\nbind -r S-Up resize-pane -U 5\nbind -r S-Right resize-pane -R 5\nbind -r m resize-pane -Z\n\n#### Navigation ####\nbind-key -n C-h select-pane -L\nbind-key -n C-j select-pane -D\nbind-key -n C-k select-pane -U\nbind-key -n C-l select-pane -R\n\n##### Splits ####\nunbind '\"'\nunbind %\nbind v split-window -h -c \"#{pane_current_path}\"\nbind S split-window -v -c \"#{pane_current_path}\"\n\n# New windows in same directory\nbind c new-window -c \"#{pane_current_path}\"\n\n#### status bar ####\nset-option -g status-position top\nbind u set -g status\n\n##### Display Popups #####\nbind f display-popup -w 80% -h 80% -E 'rmpc'\n\nbind -r g display-popup -d '#{pane_current_path}' -w80% -h80% -E lazygit\n\n##### scripts #####\nbind C-l display-popup -w 40% -h 20% -E \"~/Scripts/clone\"\nbind C-k run-shell 'tmux neww ~/Scripts/sessionX'\nbind C-c run-shell \"~/Scripts/sessionX ~/dotfiles/.config/\"\nbind C-p run-shell '~/Scripts/sessionX ~/Projects/'\nbind C-g run-shell \"~/Scripts/open_github\"\nbind C-j run-shell \"~/Scripts/ide\"\n\n##### Display Menu ##### \nbind l display-menu -T \"#[align=centre]Dotfiles\" -x C -y C \\\n  \"sessionX\"      x  \"display-popup -E -w 80% -h 80% 'nvim ~/Scripts/sessionX'\" \\\n  \"aliases.fish\"  f  \"display-popup -E -w 80% -h 80% 'nvim ~/.config/fish/aliases.fish'\" \\\n  \"tmux.conf\"     t  \"display-popup -E -w 80% -h 80% 'nvim ~/.config/tmux/tmux.conf'\" \\\n  \"bindings.conf\" b  \"display-popup -E -w 80% -h 80% 'nvim ~/.config/hypr/bindings.conf'\" \\\n  \"keymaps.lua\"   k  \"display-popup -E -w 80% -h 80% 'nvim ~/.config/nvim/lua/config/keymaps.lua'\" \\\n  \"Exit\"          q  \"\"\n\n#### Plugins ####\nset -g @plugin 'tmux-plugins/tpm'\nset -g @plugin 'tmux-plugins/tmux-sensible'\nset -g @plugin 'christoomey/vim-tmux-navigator'\n\n#### statusline ####\nset -g mode-style \"fg=black,bg=cyan\"\nset -g message-style \"fg=#fafafa,bg=#18181b\"\nset -g message-command-style \"fg=#fafafa,bg=#18181b\"\nset -g pane-border-style \"fg=#27272a\"\nset -g pane-active-border-style \"fg=cyan\"\nset -g status \"on\"\nset -g status-interval 1\nset -g status-justify \"centre\"\nset -g status-style \"fg=#fafafa,bg=#09090b\"\nset -g status-bg \"#09090b\"\nset -g status-left-length \"100\"\nset -g status-right-length \"100\"\nset -g status-left-style NONE\nset -g status-right-style NONE\nset -g status-left \"#[fg=#fafafa,bg=#09090b,bold]#S#[fg=#52525b]:#[fg=#71717a]#(tmux list-sessions | wc -l)  \"\nset -g status-right \"#[fg=#52525b]%H:%M\"\nsetw -g window-status-activity-style \"underscore,fg=cyan,bg=#09090b\"\nsetw -g window-status-separator \"  \"\nsetw -g window-status-style \"NONE,fg=#52525b,bg=#09090b\"\nsetw -g window-status-format '#[fg=#71717a]#I#[fg=#52525b]:#W'\nsetw -g window-status-current-format '#[fg=cyan,bold]#I#[fg=cyan,bold]:#W'\n\n# Initialize TMUX plugin manager (keep this line at the very bottom of tmux.conf)\nrun '~/.tmux/plugins/tpm/tpm'\n"
  },
  {
    "path": "LICENSE",
    "content": "MIT License\n\nCopyright (c) 2026 Amit\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n"
  },
  {
    "path": "README.md",
    "content": "# dotfiles\n\nThis is a fairly boring setup focused on development work. Feel free to use whatever you would like from it, a mention would be nice if you find it useful.\n\nSway is my main compositor with animations and gaps disabled. Sometimes I switch to Niri for fun, it is a really good project.\n\n## Setup\n\n<img src=\"assets/setup-1.png\" alt=\"Setup 1\">\n\n<img src=\"assets/nvim-tmux.png\" alt=\"Neovim + Tmux\">\n\n## Usage\n\n```\ngit clone https://github.com/vyrx-dev/dotfiles.git\ncd dotfiles\nstow .\n```\n\n## Highlights\n\n- Neovim configured for Flutter/Dart, Go, Python, TypeScript with LSP, DAP debugging, Copilot + Codeium\n- MPD + rmpc with auto-fetch lyrics from LRCLIB\n- Kanshi for multi-monitor profiles\n- Scripts for daily tasks like screen recording, screenshots, audio switching\n\n## Other Stuff\n\n- [symphony](https://github.com/vyrx-dev/symphony) - my other setup with more eye candy\n- [wallpapers](https://github.com/vyrx-dev/Wallpapers) - my wallpaper collection\n"
  },
  {
    "path": "Scripts/add-audio",
    "content": "#!/bin/bash\n\necho \"Usage: add-audio video.mp4 audio.flac name=\\\"output.mp4\\\"\"\necho \"Supports: mp4, mkv, avi, mov, webm (video) | flac, mp3, wav, aac, ogg (audio)\"\necho \"\"\n\n# Parse arguments\nvideo=\"\"\naudio=\"\"\nname=\"\"\n\nfor arg in \"$@\"; do\n\tif [[ $arg == name=* ]]; then\n\t\tname=\"${arg#name=}\"\n\t\tname=\"${name#\\\"}\"\n\t\tname=\"${name%\\\"}\"\n\telif [[ -z \"$video\" ]]; then\n\t\tvideo=\"$arg\"\n\telif [[ -z \"$audio\" ]]; then\n\t\taudio=\"$arg\"\n\tfi\ndone\n\n# If no arguments, check for hardcoded values\nif [ -z \"$video\" ] || [ -z \"$audio\" ] || [ -z \"$name\" ]; then\n\t# Set your paths here (edit these if running without arguments)\n\tvideo=\"\"\n\taudio=\"\"\n\tname=\"\"\n\n\tif [ -z \"$video\" ] || [ -z \"$audio\" ] || [ -z \"$name\" ]; then\n\t\techo \"Error: Missing arguments or hardcoded values\"\n\t\texit 1\n\tfi\nfi\n\nffmpeg -i \"$video\" -i \"$audio\" -c:v copy -map 0:v:0 -map 1:a:0 -shortest -c:a aac -b:a 320k \"$name\"\n\necho \"Created: $name\"\n\n# What each flag does:\n# -i \"$video\"        = input video file\n# -i \"$audio\"        = input audio file\n# -c:v copy          = copy video without re-encoding (no quality loss)\n# -map 0:v:0         = use video from first input (the video file)\n# -map 1:a:0         = use audio from second input (the audio file)\n# -shortest          = cut audio to match video length\n# -c:a aac           = encode audio as AAC\n# -b:a 320k          = audio bitrate 320kbps (high quality)\n# \"$name\"            = output file name\n"
  },
  {
    "path": "Scripts/audio-switch",
    "content": "#!/bin/bash\n\nfocused_monitor=\"$(hyprctl monitors -j | jq -r '.[] | select(.focused == true).name')\"\n\nsinks=$(pactl -f json list sinks | jq '[.[] | select((.ports | length == 0) or ([.ports[]? | .availability != \"not available\"] | any))]')\nsinks_count=$(echo \"$sinks\" | jq '. | length')\n\nif [ \"$sinks_count\" -eq 0 ]; then\n  swayosd-client \\\n    --monitor \"$focused_monitor\" \\\n    --custom-message \"No audio devices found\"\n  exit 1\nfi\n\ncurrent_sink_name=$(pactl get-default-sink)\ncurrent_sink_index=$(echo \"$sinks\" | jq -r --arg name \"$current_sink_name\" 'map(.name) | index($name)')\n\nif [ \"$current_sink_index\" != \"null\" ]; then\n  next_sink_index=$(((current_sink_index + 1) % sinks_count))\nelse\n  next_sink_index=0\nfi\n\nnext_sink=$(echo \"$sinks\" | jq -r \".[$next_sink_index]\")\nnext_sink_name=$(echo \"$next_sink\" | jq -r '.name')\n\nnext_sink_description=$(echo \"$next_sink\" | jq -r '.description')\nif [ \"$next_sink_description\" = \"(null)\" ] || [ \"$next_sink_description\" = \"null\" ] || [ -z \"$next_sink_description\" ]; then\n  sink_id=$(echo \"$next_sink\" | jq -r '.properties.\"object.id\"')\n  next_sink_description=$(wpctl status | grep -E \"\\s+\\*?\\s+${sink_id}\\.\" | sed -E 's/^.*[0-9]+\\.\\s+//' | sed -E 's/\\s+\\[.*$//')\nfi\n\nnext_sink_volume=$(echo \"$next_sink\" | jq -r \\\n  '.volume | to_entries[0].value.value_percent | sub(\"%\"; \"\")')\nnext_sink_is_muted=$(echo \"$next_sink\" | jq -r '.mute')\n\nif [ \"$next_sink_is_muted\" = \"true\" ] || [ \"$next_sink_volume\" -eq 0 ]; then\n  icon_state=\"muted\"\nelif [ \"$next_sink_volume\" -le 33 ]; then\n  icon_state=\"low\"\nelif [ \"$next_sink_volume\" -le 66 ]; then\n  icon_state=\"medium\"\nelse\n  icon_state=\"high\"\nfi\n\nnext_sink_volume_icon=\"sink-volume-${icon_state}-symbolic\"\n\nif [ \"$next_sink_name\" != \"$current_sink_name\" ]; then\n  pactl set-default-sink \"$next_sink_name\"\nfi\n\nswayosd-client \\\n  --monitor \"$focused_monitor\" \\\n  --custom-message \"$next_sink_description\" \\\n  --custom-icon \"$next_sink_volume_icon\"\n"
  },
  {
    "path": "Scripts/battery-monitor",
    "content": "#!/bin/bash\n\nCHECK_INTERVAL=60\nNOTIFY_LEVELS=(20 15)\nLOCK_LEVEL=10\nLOCK_TIMEOUT=30\n\nget_battery_path() {\n\tfor bat in /sys/class/power_supply/BAT*; do\n\t\t[[ -d \"$bat\" ]] && {\n\t\t\techo \"$bat\"\n\t\t\treturn\n\t\t}\n\tdone\n}\n\nBATTERY_PATH=$(get_battery_path)\n[[ -z \"$BATTERY_PATH\" ]] && {\n\techo \"No battery found\"\n\texit 1\n}\n\nscript_name=$(basename \"$0\")\nif pgrep -f \"$script_name\" | grep -v $$ >/dev/null 2>&1; then\n\techo \"Battery monitor already running\"\n\texit 0\nfi\n\nis_charging() {\n\tlocal status\n\tstatus=$(cat \"$BATTERY_PATH/status\" 2>/dev/null)\n\t[[ \"$status\" == \"Charging\" || \"$status\" == \"Full\" ]]\n}\n\nget_percentage() {\n\tcat \"$BATTERY_PATH/capacity\" 2>/dev/null || echo 100\n}\n\nis_notified() {\n\tlocal level=$1\n\t[[ -f \"/tmp/battery-notified-$level\" ]]\n}\n\nmark_notified() {\n\ttouch \"/tmp/battery-notified-$1\"\n}\n\nclear_notifications() {\n\trm -f /tmp/battery-notified-*\n}\n\nlock_and_suspend() {\n\tlocal i=$LOCK_TIMEOUT\n\twhile [[ $i -gt 0 ]]; do\n\t\tnotify-send -u critical -t 1100 \"Battery Critical\" \"Suspending in ${i}s...\"\n\t\tsleep 1\n\t\t((i--))\n\tdone\n\tswaylock -f\n\tsystemctl suspend\n}\n\nwhile true; do\n\tif is_charging; then\n\t\tclear_notifications\n\telse\n\t\tpercentage=$(get_percentage)\n\n\t\tfor level in \"${NOTIFY_LEVELS[@]}\"; do\n\t\t\tif [[ $percentage -le $level ]] && ! is_notified \"$level\"; then\n\t\t\t\tnotify-send -u normal \"Low Battery\" \"${percentage}% remaining\"\n\t\t\t\tmark_notified \"$level\"\n\t\t\tfi\n\t\tdone\n\n\t\tif [[ $percentage -le $LOCK_LEVEL ]] && ! is_notified \"lock\"; then\n\t\t\tlock_and_suspend\n\t\t\tmark_notified \"lock\"\n\t\tfi\n\tfi\n\n\tsleep $CHECK_INTERVAL\ndone\n"
  },
  {
    "path": "Scripts/beats",
    "content": "#!/bin/bash\n\nFUZZEL_OPTS=\"--dmenu --index\"\n\ndeclare -A stations=(\n\t[\"Radio - Lofi Girl\"]=\"https://play.streamafrica.net/lofiradio\"\n\t[\"Radio - Chillhop\"]=\"http://stream.zeno.fm/fyn8eh3h5f8uv\"\n\t[\"FM - Love Radio 90.7\"]=\"https://radio-stations-philippines.com/love\"\n\t[\"YT - Relaxing Music\"]=\"https://youtube.com/playlist?list=PLMIbmfP_9vb8BCxRoraJpoo4q1yMFg4CE\"\n\t[\"YT - Youtube Remix\"]=\"https://youtube.com/playlist?list=PLeqTkIUlrZXlSNn3tcXAa-zbo95j0iN-0&si=4w8ngfzzs0BgdTg0\"\n\t[\"YT - Korean Drama OST\"]=\"https://youtube.com/playlist?list=PLUge_o9AIFp4HuA-A3e3ZqENh63LuRRlQ\"\n\t[\"YT - Relaxing Piano Jazz\"]=\"https://youtu.be/85UEqRat6E4?si=jXQL1Yp2VP_G6NSn\"\n\t[\"YT - John Snow reveal\"]=\"https://youtu.be/dNOZ7MuET2E?si=MDfxr_LrpEEcYslC\"\n\t[\"YT - Moody Classic\"]=\"https://youtube.com/playlist?list=PLgIxeDoNjzdD0EpiuE6KaBWiIrgGI2QvE&si=Z6C-Vm8u9cNZ8tny\"\n\t[\"YT - Japanese City Pop\"]=\"https://youtu.be/Rh7u_cbAiZc?si=gRa6zNjYQZweSm8u\"\n\t[\"YT - Starboy Vibes\"]=\"https://youtu.be/fykM0vDDUnU?si=bnfSyV-LTxVfSyhU\"\n\t[\"YT - Jazz Lounge\"]=\"https://youtu.be/kJl319t76z8?si=ny03bA2GHDRwXW5-\"\n\t[\"YT - Friends S1\"]=\"https://youtube.com/playlist?list=PLnS-KSZtIXlH8YNow_rTIflrX6ZEF1uNd&si=Y-0aWZSaBJ4peNfu\"\n\t[\"YT - Hindi Cover Songs\"]=\"https://youtube.com/playlist?list=PLjqy7NBQvw8wnorOYEom-tBnd1wtiveQZ&si=hVjVxPXF5Bl8zH8l\"\n\t[\"YT - Friends From Starting\"]=\"https://youtube.com/playlist?list=PL7PQp2APUAPL-q1GnguwovMusN6g3RdwX&si=K_uGlMO2HvIOR1Ha\"\n\t[\"YT - Entourage Soundtrack\"]=\"https://youtube.com/playlist?list=PLIwK6Ozzhumi6NJDgPc1iN1HcDFL-IT48&si=veHxopeG-D974jv-\"\n\t[\"YT - Punjabi Sad\"]=\"https://youtube.com/playlist?list=PLIwK6Ozzhumi6NJDgPc1iN1HcDFL-IT48&si=veHxopeG-D974jv-\"\n\t[\"YT - Rock Melody\"]=\"https://youtu.be/X8CsR8nkOPQ\"\n\t[\"YT - Dream On\"]=\"https://youtu.be/Yq4KA0mUnC8\"\n)\n\n# Toggle logic: Stop playback if already running\nif pkill -x mpv; then\n\tnotify-send -u low \"Music Player\" \"Playback stopped\"\n\texit 0\nfi\n\n# Prepare and sort station names\nmapfile -t station_names < <(printf \"%s\\n\" \"${!stations[@]}\" | sort)\n\n# Get selection index from Fuzzel\nchoice_index=$(printf \"%s\\n\" \"${station_names[@]}\" | fuzzel $FUZZEL_OPTS)\n\n# Exit if user cancels (Esc)\n[[ -z \"$choice_index\" ]] && exit 0\n\n# Extract selection\nselected_name=\"${station_names[$choice_index]}\"\nurl=\"${stations[$selected_name]}\"\n\n# Notify and play\n# --script-opts=ytdl_hook-ytdl_path=yt-dlp forces mpv to use the correct tool\nnotify-send -u normal \"Now Playing\" \"$selected_name\"\nmpv --vid=no --script-opts=ytdl_hook-ytdl_path=$HOME/yt-dlp \"$url\"\n"
  },
  {
    "path": "Scripts/choose-shell",
    "content": "#!/usr/bin/env bash\n\nBOLD='\\e[1m'\nYELLOW='\\e[93m'\nGREEN='\\e[92m'\nRESET='\\e[0m'\n\ninfo()  { echo -e \"${BOLD}${YELLOW}$1${RESET}\"; }\nok()    { echo -e \"${BOLD}${GREEN}>> $1${RESET}\\n\"; }\n\ninstall_if_missing() {\n  command -v \"$1\" &>/dev/null && return\n  info \"$1 not found. Installing...\"\n  sudo pacman -S --noconfirm \"$1\"\n}\n\nset_shell() {\n  install_if_missing \"$1\"\n  sudo chsh -s \"$(command -v \"$1\")\" \"$USER\"\n  ok \"Shell choice: $1\"\n  echo \"Logout and log back in for the change to take effect.\"\n  sleep 2\n}\n\nshell=$(gum choose --height 5 --header \"Choose your default shell\" bash fish zsh quit)\n\ncase $shell in\n  bash|fish|zsh) set_shell \"$shell\" ;;\n  quit) echo \"Exiting.\"; exit 0 ;;\n  *)    echo \"Invalid choice.\"; exit 1 ;;\nesac\n"
  },
  {
    "path": "Scripts/clone",
    "content": "#!/bin/bash\n\ncd \"$HOME/Git/\" || exit\n\necho \"Enter git repository URL to clone:\"\nread repo_url\n\ngit clone \"$repo_url\"\n\nrepo_name=$(basename -s .git \"$repo_url\")\n\nif ! tmux has-session -t \"$repo_name\" 2>/dev/null; then\n\ttmux new-session -ds \"$repo_name\" -c \"$HOME/Git/$repo_name\"\nfi\n\ntmux switch-client -t \"$repo_name\"\n"
  },
  {
    "path": "Scripts/code-in-tmux",
    "content": "#!/bin/bash\n\nPROJECT_DIR=\"$HOME/Projects/flutter_projects/cloud\"\nSESSION_NAME=$(basename \"$PROJECT_DIR\")\n\nif tmux has-session -t \"$SESSION_NAME\" 2>/dev/null; then\n\ttmux attach -t \"$SESSION_NAME\"\n\texit 0\nfi\n\ntmux new-session -d -s \"$SESSION_NAME\" -c \"$PROJECT_DIR\"\ntmux new-window -t \"$SESSION_NAME:2\" -c \"$PROJECT_DIR\"\ntmux new-window -t \"$SESSION_NAME:3\" -c \"$PROJECT_DIR\"\ntmux send-keys -t \"$SESSION_NAME:2\" \"opencode\" Enter\ntmux send-keys -t \"$SESSION_NAME:3\" \"flutter-watch\" Enter\nsleep 1\ntmux select-window -t \"$SESSION_NAME:1\"\ntmux attach -t \"$SESSION_NAME\"\n"
  },
  {
    "path": "Scripts/dual-dac",
    "content": "#!/usr/bin/env bash\n#\n# ============================================================================\n# dual-dac - Mirror audio to multiple outputs for shared listening\n# ============================================================================\n#\n# WHAT THIS SCRIPT DOES:\n#   Enables simultaneous audio playback on two audio outputs (e.g., two USB\n#   DACs, or one DAC + laptop speakers). Perfect for sharing audio with\n#   someone using separate headphones or speakers from the same source.\n#\n# HOW PIPEWIRE LOOPBACK WORKS:\n#   PipeWire's module-loopback creates a virtual audio path between a source\n#   and a sink. A sink's \".monitor\" is a special source that captures whatever\n#   audio is currently playing to that sink - essentially tapping the stream.\n#\n#   The loopback captures from: <sink>.monitor → plays to: <another_sink>\n#\n#   This allows one audio stream to be duplicated to multiple physical outputs\n#   without requiring application-level support for multi-output.\n#\n# AUDIO ROUTING DIAGRAM:\n#\n#   Single output mode (normal):\n#     ┌─────────┐     ┌─────────────┐     ┌──────┐\n#     │   App   │ ──▶ │ EasyEffects │ ──▶ │ DAC1 │ ──▶ 🎧\n#     └─────────┘     └─────────────┘     └──────┘\n#\n#   Dual output mode (with loopback):\n#     ┌─────────┐     ┌─────────────┐     ┌──────┐\n#     │   App   │ ──▶ │ EasyEffects │ ──▶ │ DAC1 │ ──▶ 🎧 Primary\n#     └─────────┘     └──────┬──────┘     └──────┘\n#                            │\n#                    [.monitor tap]\n#                            │\n#                            ▼\n#                   ┌────────────────┐     ┌──────┐\n#                   │ module-loopback│ ──▶ │ DAC2 │ ──▶ 🎧 Secondary\n#                   └────────────────┘     └──────┘\n#\n#   Both outputs receive the same processed audio from EasyEffects.\n#\n# KEY COMMANDS:\n#   pactl load-module module-loopback  - Create audio loopback between source/sink\n#     source=<sink>.monitor            - Capture audio from this sink's output\n#     sink=<sink>                       - Play captured audio to this sink\n#     latency_msec=<ms>                 - Buffer size (lower = less delay)\n#\n#   pactl unload-module <id>           - Remove a loaded module by ID\n#   pactl list sinks short             - List available audio output sinks\n#   pactl list modules short           - List all loaded PipeWire/PulseAudio modules\n#\n#   pw-link -o                         - List PipeWire output ports\n#   pw-link <out>:<port> <in>:<port>   - Manually connect PipeWire nodes\n#\n# BEHAVIOR BY OUTPUT COUNT:\n#   0 outputs: Falls back to laptop speakers (pci.*analog-stereo), single mode\n#   1 output:  Single output mode - no loopback needed, exits cleanly\n#   2+ outputs: Creates loopback to mirror EasyEffects output to second device\n#\n# USAGE:\n#   dual-dac on      Enable dual output mode (if 2+ outputs available)\n#   dual-dac off     Disable dual output mode, restore single output\n#   dual-dac toggle  Toggle between modes (default when no argument)\n#   dual-dac status  Show current state and available outputs\n#   dual-dac sync    Sync volume levels between primary and secondary\n#   dual-dac help    Show usage information\n#\n# ============================================================================\n\nset -euo pipefail\n\n# --- Configuration ---\n\n# Identifier for our loopback module (used for finding/cleanup)\nMODULE_NAME=\"dual_dac_loopback\"\n\n# Device patterns in priority order\n# First match = primary output, second match = secondary output\nDEVICE_PATTERNS=(\n    \"Audiocular_Spark\"      # USB DACs (highest priority)\n    \"pci.*analog-stereo\"    # Internal laptop audio (fallback)\n)\n\n# --- Logging ---\n\nlog() {\n    echo \"[dual-dac] $*\"\n}\n\nerr() {\n    echo \"[dual-dac] ERROR: $*\" >&2\n}\n\n# --- Device Detection ---\n\n# Get all available sinks matching our device patterns\n# Returns sinks ordered by pattern priority (USB DACs first, then internal)\nget_available_sinks() {\n    local all_sinks\n    all_sinks=$(pactl list sinks short 2>/dev/null | awk '{print $2}') || return\n\n    # Iterate through patterns in priority order\n    for pattern in \"${DEVICE_PATTERNS[@]}\"; do\n        echo \"$all_sinks\" | while read -r sink; do\n            if [[ -n \"$sink\" && \"$sink\" =~ $pattern ]]; then\n                echo \"$sink\"\n            fi\n        done\n    done\n}\n\n# Count how many audio outputs are available\ncount_available_sinks() {\n    get_available_sinks | grep -c . || echo 0\n}\n\n# Get EasyEffects sink (if running)\nget_easyeffects_sink() {\n    pactl list sinks short 2>/dev/null | grep \"easyeffects_sink\" | awk '{print $2}'\n}\n\n# --- Module Management ---\n\n# Check if our loopback module is currently loaded\nis_enabled() {\n    pactl list modules short 2>/dev/null | grep -q \"$MODULE_NAME\"\n}\n\n# Get loaded module IDs matching our loopback\nget_module_ids() {\n    pactl list modules short 2>/dev/null | grep \"$MODULE_NAME\" | awk '{print $1}'\n}\n\n# --- Volume Helpers ---\n\n# Get volume percentage for a sink\nget_sink_volume() {\n    local sink=\"$1\"\n    pactl get-sink-volume \"$sink\" 2>/dev/null | grep -oP '\\d+%' | head -1 || echo \"?\"\n}\n\n# Set volume for a sink\nset_sink_volume() {\n    local sink=\"$1\"\n    local volume=\"$2\"\n    pactl set-sink-volume \"$sink\" \"$volume\" 2>/dev/null\n}\n\n# --- Main Functions ---\n\n# Enable dual output mode by creating a loopback to the secondary sink\nenable_dual_mode() {\n    # Already enabled?\n    if is_enabled; then\n        log \"Already enabled\"\n        return 0\n    fi\n\n    # Detect available outputs\n    mapfile -t sinks < <(get_available_sinks)\n    local sink_count=${#sinks[@]}\n\n    # Handle different output scenarios\n    case $sink_count in\n        0)\n            err \"No audio outputs detected\"\n            err \"Check PipeWire status: systemctl --user status pipewire\"\n            return 1\n            ;;\n        1)\n            # Single output - no mirroring possible\n            log \"Single output - no mirroring needed\"\n            log \"Output: ${sinks[0]}\"\n            log \"\"\n            log \"Connect a second audio device to enable dual mode\"\n            return 0\n            ;;\n        *)\n            log \"Found $sink_count outputs, enabling dual mode...\"\n            ;;\n    esac\n\n    local primary=\"${sinks[0]}\"\n    local secondary=\"${sinks[1]}\"\n\n    # Determine source: prefer EasyEffects if running, otherwise primary sink\n    local ee_sink source_sink\n    ee_sink=$(get_easyeffects_sink)\n\n    if [[ -n \"$ee_sink\" ]]; then\n        source_sink=\"$ee_sink\"\n        log \"Routing through EasyEffects\"\n    else\n        source_sink=\"$primary\"\n        log \"EasyEffects not running, using direct routing\"\n    fi\n\n    log \"Primary:   $primary\"\n    log \"Secondary: $secondary\"\n\n    # Create loopback module\n    # - source: tap the EasyEffects (or primary) monitor\n    # - sink: output to secondary device\n    # - latency_msec: minimize delay between outputs\n    # - media.name: tag for identification and cleanup\n    pactl load-module module-loopback \\\n        source=\"${source_sink}.monitor\" \\\n        sink=\"$secondary\" \\\n        latency_msec=1 \\\n        sink_input_properties=\"media.name=$MODULE_NAME\" \\\n        source_output_properties=\"media.name=$MODULE_NAME\" \\\n        > /dev/null\n\n    # Brief pause for PipeWire to create loopback nodes\n    sleep 0.3\n\n    # Manually connect loopback if auto-connect didn't work\n    local loopback_out\n    loopback_out=$(pw-link -o 2>/dev/null | grep \"output.loopback\" | head -1 | sed 's/:.*//') || true\n    if [[ -n \"$loopback_out\" ]]; then\n        pw-link \"${loopback_out}:output_FL\" \"${secondary}:playback_FL\" 2>/dev/null || true\n        pw-link \"${loopback_out}:output_FR\" \"${secondary}:playback_FR\" 2>/dev/null || true\n    fi\n\n    # Sync volumes: match secondary to primary\n    local primary_vol\n    primary_vol=$(get_sink_volume \"$primary\")\n    [[ \"$primary_vol\" != \"?\" ]] && set_sink_volume \"$secondary\" \"$primary_vol\"\n\n    log \"Enabled - audio mirrored to both outputs\"\n}\n\n# Disable dual output mode by removing loopback modules\ndisable_dual_mode() {\n    # Nothing to disable?\n    if ! is_enabled; then\n        log \"Already in single output mode\"\n        return 0\n    fi\n\n    # Unload all our loopback modules\n    local unloaded=0\n    while read -r id; do\n        if [[ -n \"$id\" ]]; then\n            pactl unload-module \"$id\" 2>/dev/null || true\n            ((unloaded++))\n        fi\n    done < <(get_module_ids)\n\n    if [[ $unloaded -gt 0 ]]; then\n        log \"Restored to single output mode\"\n    else\n        log \"No loopback modules found\"\n    fi\n\n    # Show which output is now active\n    mapfile -t sinks < <(get_available_sinks)\n    if [[ ${#sinks[@]} -gt 0 ]]; then\n        log \"Active output: ${sinks[0]}\"\n    fi\n}\n\n# Toggle between single and dual output modes\ntoggle_dual_mode() {\n    if is_enabled; then\n        disable_dual_mode\n    else\n        enable_dual_mode\n    fi\n}\n\n# Display current status and available outputs\nshow_status() {\n    echo \"=== Dual DAC Status ===\"\n    echo \"\"\n\n    # Current mode\n    if is_enabled; then\n        echo \"Mode: DUAL (loopback active)\"\n    else\n        echo \"Mode: SINGLE\"\n    fi\n\n    # List outputs\n    echo \"\"\n    echo \"Available outputs:\"\n    mapfile -t sinks < <(get_available_sinks)\n\n    if [[ ${#sinks[@]} -eq 0 ]]; then\n        echo \"  (none detected)\"\n    else\n        local i=1\n        for sink in \"${sinks[@]}\"; do\n            local vol name role\n            vol=$(get_sink_volume \"$sink\")\n            # Clean up sink name for display\n            name=$(echo \"$sink\" | sed 's/alsa_output\\.//' | sed 's/\\.analog-stereo//' | sed 's/_/ /g')\n\n            case $i in\n                1) role=\"[primary]\" ;;\n                2) role=\"[secondary]\" ;;\n                *) role=\"\" ;;\n            esac\n\n            printf \"  %d. %-40s vol: %s %s\\n\" \"$i\" \"$name\" \"$vol\" \"$role\"\n            ((i++))\n        done\n    fi\n\n    # EasyEffects status\n    echo \"\"\n    if [[ -n \"$(get_easyeffects_sink)\" ]]; then\n        echo \"EasyEffects: running (audio processed)\"\n    else\n        echo \"EasyEffects: not running (direct audio)\"\n    fi\n\n    # Capability note\n    echo \"\"\n    case ${#sinks[@]} in\n        0) echo \"Note: No outputs detected. Check PipeWire.\" ;;\n        1) echo \"Note: Single output. Connect another for dual mode.\" ;;\n        *) echo \"Note: ${#sinks[@]} outputs available. Dual mode supported.\" ;;\n    esac\n}\n\n# Sync secondary volume to match primary\nsync_volume() {\n    mapfile -t sinks < <(get_available_sinks)\n\n    if [[ ${#sinks[@]} -lt 2 ]]; then\n        err \"Need at least 2 outputs to sync\"\n        return 1\n    fi\n\n    local primary=\"${sinks[0]}\"\n    local secondary=\"${sinks[1]}\"\n    local primary_vol\n\n    primary_vol=$(get_sink_volume \"$primary\")\n    if [[ \"$primary_vol\" == \"?\" ]]; then\n        err \"Could not read primary volume\"\n        return 1\n    fi\n\n    set_sink_volume \"$secondary\" \"$primary_vol\"\n    log \"Synced secondary volume to $primary_vol\"\n}\n\n# --- Entry Point ---\n\ncase \"${1:-toggle}\" in\n    on|enable)\n        enable_dual_mode\n        ;;\n    off|disable)\n        disable_dual_mode\n        ;;\n    toggle)\n        toggle_dual_mode\n        ;;\n    status|s)\n        show_status\n        ;;\n    sync)\n        sync_volume\n        ;;\n    help|--help|-h)\n        echo \"Usage: dual-dac [command]\"\n        echo \"\"\n        echo \"Commands:\"\n        echo \"  on, enable    Enable dual output (mirror to 2nd output)\"\n        echo \"  off, disable  Disable dual output (single output)\"\n        echo \"  toggle        Toggle mode (default)\"\n        echo \"  status, s     Show current state and outputs\"\n        echo \"  sync          Sync volume between outputs\"\n        echo \"  help          Show this help\"\n        echo \"\"\n        echo \"Behavior:\"\n        echo \"  0 outputs  - Error (check PipeWire)\"\n        echo \"  1 output   - Single mode, no loopback\"\n        echo \"  2+ outputs - Loopback mirrors audio to secondary\"\n        ;;\n    *)\n        err \"Unknown command: $1\"\n        echo \"Run 'dual-dac help' for usage\"\n        exit 1\n        ;;\nesac\n"
  },
  {
    "path": "Scripts/flutter-post-upgrade",
    "content": "#!/bin/bash\n\nflutter clean\necho\necho ✅ flutter clean → Wipes stale build files\necho\n\nflutter pub get\necho\necho ✅ flutter pub get → Fetches fresh dependencies\necho\n\ndart fix --apply\necho\necho ✅ dart fix --apply → Auto-fixes deprecated API issues\necho\n\nflutter pub outdated\necho\necho ✅ flutter pub outdated → Flags packages needing updates\necho\n\nflutter doctor\necho\necho ✅ flutter doctor → Verifies your dev environment is healthy\necho\n\necho \"it's done maybe the error was not working\"\n"
  },
  {
    "path": "Scripts/fuzzel-emoji",
    "content": "#!/usr/bin/env bash\nset -euo pipefail\n\nMODE=\"${1:-type}\"\n\nemoji=\"$(sed '1,/^### DATA ###$/d' \"$0\" | fuzzel --match-mode fzf --dmenu | cut -d ' ' -f 1 | tr -d '\\n')\"\n\ncase \"$MODE\" in\n    type)\n        wtype \"${emoji}\" || wl-copy \"${emoji}\"\n        ;;\n    copy)\n        wl-copy \"${emoji}\"\n        ;;\n    both)\n        wtype \"${emoji}\" || true\n        wl-copy \"${emoji}\"\n        ;;\n    *)\n        echo \"Usage: $0 [type|copy|both]\"\n        exit 1\n        ;;\nesac\n\nexit\n### DATA ###\n😀 grinning face face smile happy joy :D grin\n😃 grinning face with big eyes face happy joy haha :D :) smile funny\n😄 grinning face with smiling eyes face happy joy funny haha laugh like :D :) smile\n😁 beaming face with smiling eyes face happy smile joy kawaii\n🫩 Face with Bags Under Eyes\n😆 grinning squinting face happy joy lol satisfied haha face glad XD laugh\n😅 grinning face with sweat face hot happy laugh sweat smile relief\n🤣 rolling on the floor laughing face rolling floor laughing lol haha rofl\n😂 face with tears of joy face cry tears weep happy happytears haha\n🙂 slightly smiling face face smile\n🙃 upside down face face flipped silly smile\n😉 winking face face happy mischievous secret ;) smile eye\n😊 smiling face with smiling eyes face smile happy flushed crush embarrassed shy joy\n😇 smiling face with halo face angel heaven halo\n🥰 smiling face with hearts face love like affection valentines infatuation crush hearts adore\n😍 smiling face with heart eyes face love like affection valentines infatuation crush heart\n🤩 star struck face smile starry eyes grinning\n😘 face blowing a kiss face love like affection valentines infatuation kiss\n😗 kissing face love like face 3 valentines infatuation kiss\n☺️ smiling face face blush massage happiness\n😚 kissing face with closed eyes face love like affection valentines infatuation kiss\n😙 kissing face with smiling eyes face affection valentines infatuation kiss\n😋 face savoring food happy joy tongue smile face silly yummy nom delicious savouring\n😛 face with tongue face prank childish playful mischievous smile tongue\n😜 winking face with tongue face prank childish playful mischievous smile wink tongue\n🤪 zany face face goofy crazy\n😝 squinting face with tongue face prank playful mischievous smile tongue\n🤑 money mouth face face rich dollar money\n🤗 hugging face face smile hug\n🤭 face with hand over mouth face whoops shock surprise\n🤫 shushing face face quiet shhh\n🤔 thinking face face hmmm think consider\n🤐 zipper mouth face face sealed zipper secret\n🤨 face with raised eyebrow face distrust scepticism disapproval disbelief surprise\n😐 neutral face indifference meh :| neutral\n😑 expressionless face face indifferent - - meh deadpan\n😶 face without mouth face hellokitty\n😏 smirking face face smile mean prank smug sarcasm\n😒 unamused face indifference bored straight face serious sarcasm unimpressed skeptical dubious side eye\n🙄 face with rolling eyes face eyeroll frustrated\n😬 grimacing face face grimace teeth\n🤥 lying face face lie pinocchio\n😌 relieved face face relaxed phew massage happiness\n😔 pensive face face sad depressed upset\n😪 sleepy face face tired rest nap\n🤤 drooling face face\n😴 sleeping face face tired sleepy night zzz\n😷 face with medical mask face sick ill disease\n🤒 face with thermometer sick temperature thermometer cold fever\n🤕 face with head bandage injured clumsy bandage hurt\n🤢 nauseated face face vomit gross green sick throw up ill\n🤮 face vomiting face sick\n🤧 sneezing face face gesundheit sneeze sick allergy\n🥵 hot face face feverish heat red sweating\n🥶 cold face face blue freezing frozen frostbite icicles\n🥴 woozy face face dizzy intoxicated tipsy wavy\n😵 dizzy face spent unconscious xox dizzy\n🤯 exploding head face shocked mind blown\n🤠 cowboy hat face face cowgirl hat\n🥳 partying face face celebration woohoo\n😎 smiling face with sunglasses face cool smile summer beach sunglass\n🤓 nerd face face nerdy geek dork\n🧐 face with monocle face stuffy wealthy\n😕 confused face face indifference huh weird hmmm :/\n😟 worried face face concern nervous :(\n🙁 slightly frowning face face frowning disappointed sad upset\n☹️ frowning face face sad upset frown\n😮 face with open mouth face surprise impressed wow whoa :O\n😯 hushed face face woo shh\n😲 astonished face face xox surprised poisoned\n😳 flushed face face blush shy flattered sex\n🥺 pleading face face begging mercy\n😦 frowning face with open mouth face aw what\n😧 anguished face face stunned nervous\n😨 fearful face face scared terrified nervous oops huh\n😰 anxious face with sweat face nervous sweat\n😥 sad but relieved face face phew sweat nervous\n😢 crying face face tears sad depressed upset :'(\n😭 loudly crying face face cry tears sad upset depressed sob\n😱 face screaming in fear face munch scared omg\n😖 confounded face face confused sick unwell oops :S\n😣 persevering face face sick no upset oops\n😞 disappointed face face sad upset depressed :(\n😓 downcast face with sweat face hot sad tired exercise\n😩 weary face face tired sleepy sad frustrated upset\n😫 tired face sick whine upset frustrated\n🥱 yawning face tired sleepy\n😤 face with steam from nose face gas phew proud pride\n😡 pouting face angry mad hate despise\n😠 angry face mad face annoyed frustrated\n🤬 face with symbols on mouth face swearing cursing cussing profanity expletive\n😈 smiling face with horns devil horns\n👿 angry face with horns devil angry horns\n💀 skull dead skeleton creepy death\n☠️ skull and crossbones poison danger deadly scary death pirate evil\n💩 pile of poo hankey shitface fail turd shit\n🤡 clown face face\n👹 ogre monster red mask halloween scary creepy devil demon japanese ogre\n👺 goblin red evil mask monster scary creepy japanese goblin\n👻 ghost halloween spooky scary\n👽 alien UFO paul weird outer space\n👾 alien monster game arcade play\n🤖 robot computer machine bot\n😺 grinning cat animal cats happy smile\n😸 grinning cat with smiling eyes animal cats smile\n😹 cat with tears of joy animal cats haha happy tears\n😻 smiling cat with heart eyes animal love like affection cats valentines heart\n😼 cat with wry smile animal cats smirk\n😽 kissing cat animal cats kiss\n🙀 weary cat animal cats munch scared scream\n😿 crying cat animal tears weep sad cats upset cry\n😾 pouting cat animal cats\n🙈 see no evil monkey monkey animal nature haha\n🙉 hear no evil monkey animal monkey nature\n🙊 speak no evil monkey monkey animal nature omg\n💋 kiss mark face lips love like affection valentines\n💌 love letter email like affection envelope valentines\n💘 heart with arrow love like heart affection valentines\n💝 heart with ribbon love valentines\n💖 sparkling heart love like affection valentines\n💗 growing heart like love affection valentines pink\n💓 beating heart love like affection valentines pink heart\n💞 revolving hearts love like affection valentines\n💕 two hearts love like affection valentines heart\n💟 heart decoration purple-square love like\n❣️ heart exclamation decoration love\n💔 broken heart sad sorry break heart heartbreak\n❤️ red heart love like valentines\n🧡 orange heart love like affection valentines\n💛 yellow heart love like affection valentines\n💚 green heart love like affection valentines\n💙 blue heart love like affection valentines\n💜 purple heart love like affection valentines\n🤎 brown heart coffee\n🖤 black heart evil\n🤍 white heart pure\n💯 hundred points score perfect numbers century exam quiz test pass hundred\n💢 anger symbol angry mad\n💥 collision bomb explode explosion collision blown\n💫 dizzy star sparkle shoot magic\n💦 sweat droplets water drip oops\n💨 dashing away wind air fast shoo fart smoke puff\n🕳️ hole embarrassing\n💣 bomb boom explode explosion terrorism\n💬 speech balloon bubble words message talk chatting\n👁️‍🗨️ eye in speech bubble info\n🗨️ left speech bubble words message talk chatting\n🗯️ right anger bubble caption speech thinking mad\n💭 thought balloon bubble cloud speech thinking dream\n💤 zzz sleepy tired dream\n👋 waving hand hands gesture goodbye solong farewell hello hi palm\n🤚 raised back of hand fingers raised backhand\n🖐️ hand with fingers splayed hand fingers palm\n✋ raised hand fingers stop highfive palm ban\n🖖 vulcan salute hand fingers spock star trek\n👌 ok hand fingers limbs perfect ok okay\n🤏 pinching hand tiny small size\n✌️ victory hand fingers ohyeah hand peace victory two\n🤞 crossed fingers good lucky\n🤟 love you gesture hand fingers gesture\n🤘 sign of the horns hand fingers evil eye sign of horns rock on\n🤙 call me hand hands gesture shaka\n👈 backhand index pointing left direction fingers hand left\n👉 backhand index pointing right fingers hand direction right\n👆 backhand index pointing up fingers hand direction up\n🖕 middle finger hand fingers rude middle flipping\n👇 backhand index pointing down fingers hand direction down\n☝️ index pointing up hand fingers direction up\n👍 thumbs up thumbsup yes awesome good agree accept cool hand like +1\n👎 thumbs down thumbsdown no dislike hand -1\n🫆 Fingerprint\n✊ raised fist fingers hand grasp\n👊 oncoming fist angry violence fist hit attack hand\n🤛 left facing fist hand fistbump\n🤜 right facing fist hand fistbump\n👏 clapping hands hands praise applause congrats yay\n🙌 raising hands gesture hooray yea celebration hands\n👐 open hands fingers butterfly hands open\n🤲 palms up together hands gesture cupped prayer\n🤝 handshake agreement shake\n🙏 folded hands please hope wish namaste highfive pray\n✍️ writing hand lower left ballpoint pen stationery write compose\n💅 nail polish beauty manicure finger fashion nail\n🤳 selfie camera phone\n💪 flexed biceps arm flex hand summer strong biceps\n🦾 mechanical arm accessibility\n🦿 mechanical leg accessibility\n🦵 leg kick limb\n🦶 foot kick stomp\n👂 ear face hear sound listen\n🦻 ear with hearing aid accessibility\n👃 nose smell sniff\n🧠 brain smart intelligent\n🦷 tooth teeth dentist\n🦴 bone skeleton\n👀 eyes look watch stalk peek see\n👁️ eye face look see watch stare\n👅 tongue mouth playful\n👄 mouth mouth kiss\n👶 baby child boy girl toddler\n🧒 child gender-neutral young\n👦 boy man male guy teenager\n👧 girl female woman teenager\n🧑 person gender-neutral person\n👱 person blond hair hairstyle\n👨 man mustache father dad guy classy sir moustache\n🧔 man beard person bewhiskered\n👨‍🦰 man red hair hairstyle\n👨‍🦱 man curly hair hairstyle\n👨‍🦳 man white hair old elder\n👨‍🦲 man bald hairless\n👩 woman female girls lady\n👩‍🦰 woman red hair hairstyle\n🧑‍🦰 person red hair hairstyle\n👩‍🦱 woman curly hair hairstyle\n🧑‍🦱 person curly hair hairstyle\n👩‍🦳 woman white hair old elder\n🧑‍🦳 person white hair elder old\n👩‍🦲 woman bald hairless\n🧑‍🦲 person bald hairless\n👱‍♀️ woman blond hair woman female girl blonde person\n👱‍♂️ man blond hair man male boy blonde guy person\n🧓 older person human elder senior gender-neutral\n👴 old man human male men old elder senior\n👵 old woman human female women lady old elder senior\n🙍 person frowning worried\n🙍‍♂️ man frowning male boy man sad depressed discouraged unhappy\n🙍‍♀️ woman frowning female girl woman sad depressed discouraged unhappy\n🙎 person pouting upset\n🙎‍♂️ man pouting male boy man\n🙎‍♀️ woman pouting female girl woman\n🙅 person gesturing no decline\n🙅‍♂️ man gesturing no male boy man nope\n🙅‍♀️ woman gesturing no female girl woman nope\n🙆 person gesturing ok agree\n🙆‍♂️ man gesturing ok men boy male blue human man\n🙆‍♀️ woman gesturing ok women girl female pink human woman\n💁 person tipping hand information\n💁‍♂️ man tipping hand male boy man human information\n💁‍♀️ woman tipping hand female girl woman human information\n🙋 person raising hand question\n🙋‍♂️ man raising hand male boy man\n🙋‍♀️ woman raising hand female girl woman\n🧏 deaf person accessibility\n🧏‍♂️ deaf man accessibility\n🧏‍♀️ deaf woman accessibility\n🙇 person bowing respectiful\n🙇‍♂️ man bowing man male boy\n🙇‍♀️ woman bowing woman female girl\n🤦 person facepalming disappointed\n🤦‍♂️ man facepalming man male boy disbelief\n🤦‍♀️ woman facepalming woman female girl disbelief\n🤷 person shrugging regardless\n🤷‍♂️ man shrugging man male boy confused indifferent doubt\n🤷‍♀️ woman shrugging woman female girl confused indifferent doubt\n🧑‍⚕️ health worker hospital\n👨‍⚕️ man health worker doctor nurse therapist healthcare man human\n👩‍⚕️ woman health worker doctor nurse therapist healthcare woman human\n🧑‍🎓 student learn\n👨‍🎓 man student graduate man human\n👩‍🎓 woman student graduate woman human\n🧑‍🏫 teacher professor\n👨‍🏫 man teacher instructor professor man human\n👩‍🏫 woman teacher instructor professor woman human\n🧑‍⚖️ judge law\n👨‍⚖️ man judge justice court man human\n👩‍⚖️ woman judge justice court woman human\n🧑‍🌾 farmer crops\n👨‍🌾 man farmer rancher gardener man human\n👩‍🌾 woman farmer rancher gardener woman human\n🧑‍🍳 cook food kitchen culinary\n👨‍🍳 man cook chef man human\n👩‍🍳 woman cook chef woman human\n🧑‍🔧 mechanic worker technician\n👨‍🔧 man mechanic plumber man human wrench\n👩‍🔧 woman mechanic plumber woman human wrench\n🧑‍🏭 factory worker labor\n👨‍🏭 man factory worker assembly industrial man human\n👩‍🏭 woman factory worker assembly industrial woman human\n🧑‍💼 office worker business\n👨‍💼 man office worker business manager man human\n👩‍💼 woman office worker business manager woman human\n🧑‍🔬 scientist chemistry\n👨‍🔬 man scientist biologist chemist engineer physicist man human\n👩‍🔬 woman scientist biologist chemist engineer physicist woman human\n🧑‍💻 technologist computer\n👨‍💻 man technologist coder developer engineer programmer software man human laptop computer\n👩‍💻 woman technologist coder developer engineer programmer software woman human laptop computer\n🧑‍🎤 singer song artist performer\n👨‍🎤 man singer rockstar entertainer man human\n👩‍🎤 woman singer rockstar entertainer woman human\n🧑‍🎨 artist painting draw creativity\n👨‍🎨 man artist painter man human\n👩‍🎨 woman artist painter woman human\n🧑‍✈️ pilot fly plane airplane\n👨‍✈️ man pilot aviator plane man human\n👩‍✈️ woman pilot aviator plane woman human\n🧑‍🚀 astronaut outerspace\n👨‍🚀 man astronaut space rocket man human\n👩‍🚀 woman astronaut space rocket woman human\n🧑‍🚒 firefighter fire\n👨‍🚒 man firefighter fireman man human\n👩‍🚒 woman firefighter fireman woman human\n👮 police officer cop\n👮‍♂️ man police officer man police law legal enforcement arrest 911\n👮‍♀️ woman police officer woman police law legal enforcement arrest 911 female\n🕵️ detective human spy detective\n🕵️‍♂️ man detective crime\n🕵️‍♀️ woman detective human spy detective female woman\n💂 guard protect\n💂‍♂️ man guard uk gb british male guy royal\n💂‍♀️ woman guard uk gb british female royal woman\n👷 construction worker labor build\n👷‍♂️ man construction worker male human wip guy build construction worker labor\n👷‍♀️ woman construction worker female human wip build construction worker labor woman\n🤴 prince boy man male crown royal king\n👸 princess girl woman female blond crown royal queen\n👳 person wearing turban headdress\n👳‍♂️ man wearing turban male indian hinduism arabs\n👳‍♀️ woman wearing turban female indian hinduism arabs woman\n👲 man with skullcap male boy chinese\n🧕 woman with headscarf female hijab mantilla tichel\n🤵 man in tuxedo couple marriage wedding groom\n👰 bride with veil couple marriage wedding woman bride\n🤰 pregnant woman baby\n🤱 breast feeding nursing baby\n👼 baby angel heaven wings halo\n🎅 santa claus festival man male xmas father christmas\n🤶 mrs claus woman female xmas mother christmas\n🦸 superhero marvel\n🦸‍♂️ man superhero man male good hero superpowers\n🦸‍♀️ woman superhero woman female good heroine superpowers\n🦹 supervillain marvel\n🦹‍♂️ man supervillain man male evil bad criminal hero superpowers\n🦹‍♀️ woman supervillain woman female evil bad criminal heroine superpowers\n🧙 mage magic\n🧙‍♂️ man mage man male mage sorcerer\n🧙‍♀️ woman mage woman female mage witch\n🧚 fairy wings magical\n🧚‍♂️ man fairy man male\n🧚‍♀️ woman fairy woman female\n🧛 vampire blood twilight\n🧛‍♂️ man vampire man male dracula\n🧛‍♀️ woman vampire woman female\n🧜 merperson sea\n🧜‍♂️ merman man male triton\n🧜‍♀️ mermaid woman female merwoman ariel\n🧝 elf magical\n🧝‍♂️ man elf man male\n🧝‍♀️ woman elf woman female\n🧞 genie magical wishes\n🧞‍♂️ man genie man male\n🧞‍♀️ woman genie woman female\n🧟 zombie dead\n🧟‍♂️ man zombie man male dracula undead walking dead\n🧟‍♀️ woman zombie woman female undead walking dead\n💆 person getting massage relax\n💆‍♂️ man getting massage male boy man head\n💆‍♀️ woman getting massage female girl woman head\n💇 person getting haircut hairstyle\n💇‍♂️ man getting haircut male boy man\n💇‍♀️ woman getting haircut female girl woman\n🚶 person walking move\n🚶‍♂️ man walking human feet steps\n🚶‍♀️ woman walking human feet steps woman female\n🧍 person standing still\n🧍‍♂️ man standing still\n🧍‍♀️ woman standing still\n🧎 person kneeling pray respectful\n🧎‍♂️ man kneeling pray respectful\n🧎‍♀️ woman kneeling respectful pray\n🧑‍🦯 person with probing cane blind\n👨‍🦯 man with probing cane blind\n👩‍🦯 woman with probing cane blind\n🧑‍🦼 person in motorized wheelchair disability accessibility\n👨‍🦼 man in motorized wheelchair disability accessibility\n👩‍🦼 woman in motorized wheelchair disability accessibility\n🧑‍🦽 person in manual wheelchair disability accessibility\n👨‍🦽 man in manual wheelchair disability accessibility\n👩‍🦽 woman in manual wheelchair disability accessibility\n🏃 person running move\n🏃‍♂️ man running man walking exercise race running\n🏃‍♀️ woman running woman walking exercise race running female\n💃 woman dancing female girl woman fun\n🕺 man dancing male boy fun dancer\n🕴️ man in suit levitating suit business levitate hover jump\n👯 people with bunny ears perform costume\n👯‍♂️ men with bunny ears male bunny men boys\n👯‍♀️ women with bunny ears female bunny women girls\n🧖 person in steamy room relax spa\n🧖‍♂️ man in steamy room male man spa steamroom sauna\n🧖‍♀️ woman in steamy room female woman spa steamroom sauna\n🧗 person climbing sport\n🧗‍♂️ man climbing sports hobby man male rock\n🧗‍♀️ woman climbing sports hobby woman female rock\n🤺 person fencing sports fencing sword\n🏇 horse racing animal betting competition gambling luck\n⛷️ skier sports winter snow\n🏂 snowboarder sports winter\n🏌️ person golfing sports business\n🏌️‍♂️ man golfing sport\n🏌️‍♀️ woman golfing sports business woman female\n🏄 person surfing sport sea\n🏄‍♂️ man surfing sports ocean sea summer beach\n🏄‍♀️ woman surfing sports ocean sea summer beach woman female\n🚣 person rowing boat sport move\n🚣‍♂️ man rowing boat sports hobby water ship\n🚣‍♀️ woman rowing boat sports hobby water ship woman female\n🏊 person swimming sport pool\n🏊‍♂️ man swimming sports exercise human athlete water summer\n🏊‍♀️ woman swimming sports exercise human athlete water summer woman female\n⛹️ person bouncing ball sports human\n⛹️‍♂️ man bouncing ball sport\n⛹️‍♀️ woman bouncing ball sports human woman female\n🏋️ person lifting weights sports training exercise\n🏋️‍♂️ man lifting weights sport\n🏋️‍♀️ woman lifting weights sports training exercise woman female\n🚴 person biking sport move\n🚴‍♂️ man biking sports bike exercise hipster\n🚴‍♀️ woman biking sports bike exercise hipster woman female\n🚵 person mountain biking sport move\n🚵‍♂️ man mountain biking transportation sports human race bike\n🚵‍♀️ woman mountain biking transportation sports human race bike woman female\n🤸 person cartwheeling sport gymnastic\n🤸‍♂️ man cartwheeling gymnastics\n🤸‍♀️ woman cartwheeling gymnastics\n🤼 people wrestling sport\n🤼‍♂️ men wrestling sports wrestlers\n🤼‍♀️ women wrestling sports wrestlers\n🤽 person playing water polo sport\n🤽‍♂️ man playing water polo sports pool\n🤽‍♀️ woman playing water polo sports pool\n🤾 person playing handball sport\n🤾‍♂️ man playing handball sports\n🤾‍♀️ woman playing handball sports\n🤹 person juggling performance balance\n🤹‍♂️ man juggling juggle balance skill multitask\n🤹‍♀️ woman juggling juggle balance skill multitask\n🧘 person in lotus position meditate\n🧘‍♂️ man in lotus position man male meditation yoga serenity zen mindfulness\n🧘‍♀️ woman in lotus position woman female meditation yoga serenity zen mindfulness\n🛀 person taking bath clean shower bathroom\n🛌 person in bed bed rest\n🧑‍🤝‍🧑 people holding hands friendship\n👭 women holding hands pair friendship couple love like female people human\n👫 woman and man holding hands pair people human love date dating like affection valentines marriage\n👬 men holding hands pair couple love like bromance friendship people human\n💏 kiss pair valentines love like dating marriage\n👩‍❤️‍💋‍👨 kiss woman man love\n👨‍❤️‍💋‍👨 kiss man man pair valentines love like dating marriage\n👩‍❤️‍💋‍👩 kiss woman woman pair valentines love like dating marriage\n💑 couple with heart pair love like affection human dating valentines marriage\n👩‍❤️‍👨 couple with heart woman man love\n👨‍❤️‍👨 couple with heart man man pair love like affection human dating valentines marriage\n👩‍❤️‍👩 couple with heart woman woman pair love like affection human dating valentines marriage\n👪 family home parents child mom dad father mother people human\n👨‍👩‍👦 family man woman boy love\n👨‍👩‍👧 family man woman girl home parents people human child\n👨‍👩‍👧‍👦 family man woman girl boy home parents people human children\n👨‍👩‍👦‍👦 family man woman boy boy home parents people human children\n👨‍👩‍👧‍👧 family man woman girl girl home parents people human children\n👨‍👨‍👦 family man man boy home parents people human children\n👨‍👨‍👧 family man man girl home parents people human children\n👨‍👨‍👧‍👦 family man man girl boy home parents people human children\n👨‍👨‍👦‍👦 family man man boy boy home parents people human children\n👨‍👨‍👧‍👧 family man man girl girl home parents people human children\n👩‍👩‍👦 family woman woman boy home parents people human children\n👩‍👩‍👧 family woman woman girl home parents people human children\n👩‍👩‍👧‍👦 family woman woman girl boy home parents people human children\n👩‍👩‍👦‍👦 family woman woman boy boy home parents people human children\n👩‍👩‍👧‍👧 family woman woman girl girl home parents people human children\n👨‍👦 family man boy home parent people human child\n👨‍👦‍👦 family man boy boy home parent people human children\n👨‍👧 family man girl home parent people human child\n👨‍👧‍👦 family man girl boy home parent people human children\n👨‍👧‍👧 family man girl girl home parent people human children\n👩‍👦 family woman boy home parent people human child\n👩‍👦‍👦 family woman boy boy home parent people human children\n👩‍👧 family woman girl home parent people human child\n👩‍👧‍👦 family woman girl boy home parent people human children\n👩‍👧‍👧 family woman girl girl home parent people human children\n🗣️ speaking head user person human sing say talk\n👤 bust in silhouette user person human\n👥 busts in silhouette user person human group team\n👣 footprints feet tracking walking beach\n🐵 monkey face animal nature circus\n🐒 monkey animal nature banana circus\n🦍 gorilla animal nature circus\n🦧 orangutan animal\n🐶 dog face animal friend nature woof puppy pet faithful\n🐕 dog animal nature friend doge pet faithful\n🦮 guide dog animal blind\n🐕‍🦺 service dog blind animal\n🐩 poodle dog animal 101 nature pet\n🐺 wolf animal nature wild\n🦊 fox animal nature face\n🦝 raccoon animal nature\n🐱 cat face animal meow nature pet kitten\n🐈 cat animal meow pet cats\n🦁 lion animal nature\n🐯 tiger face animal cat danger wild nature roar\n🐅 tiger animal nature roar\n🐆 leopard animal nature\n🐴 horse face animal brown nature\n🐎 horse animal gamble luck\n🦄 unicorn animal nature mystical\n🦓 zebra animal nature stripes safari\n🦌 deer animal nature horns venison\n🐮 cow face beef ox animal nature moo milk\n🐂 ox animal cow beef\n🐃 water buffalo animal nature ox cow\n🐄 cow beef ox animal nature moo milk\n🐷 pig face animal oink nature\n🐖 pig animal nature\n🐗 boar animal nature\n🐽 pig nose animal oink\n🐏 ram animal sheep nature\n🐑 ewe animal nature wool shipit\n🐐 goat animal nature\n🐪 camel animal hot desert hump\n🐫 two hump camel animal nature hot desert hump\n🦙 llama animal nature alpaca\n🦒 giraffe animal nature spots safari\n🐘 elephant animal nature nose th circus\n🦏 rhinoceros animal nature horn\n🦛 hippopotamus animal nature\n🐭 mouse face animal nature cheese wedge rodent\n🐁 mouse animal nature rodent\n🐀 rat animal mouse rodent\n🐹 hamster animal nature\n🐰 rabbit face animal nature pet spring magic bunny\n🐇 rabbit animal nature pet magic spring\n🐿️ chipmunk animal nature rodent squirrel\n🦔 hedgehog animal nature spiny\n🦇 bat animal nature blind vampire\n🐻 bear animal nature wild\n🐨 koala animal nature\n🐼 panda animal nature panda\n🦥 sloth animal\n🦦 otter animal\n🦨 skunk animal\n🦘 kangaroo animal nature australia joey hop marsupial\n🦡 badger animal nature honey\n🐾 paw prints animal tracking footprints dog cat pet feet\n🦃 turkey animal bird\n🐔 chicken animal cluck nature bird\n🐓 rooster animal nature chicken\n🐣 hatching chick animal chicken egg born baby bird\n🐤 baby chick animal chicken bird\n🐥 front facing baby chick animal chicken baby bird\n🐦 bird animal nature fly tweet spring\n🐧 penguin animal nature\n🕊️ dove animal bird\n🦅 eagle animal nature bird\n🦆 duck animal nature bird mallard\n🦢 swan animal nature bird\n🦉 owl animal nature bird hoot\n🦩 flamingo animal\n🦚 peacock animal nature peahen bird\n🦜 parrot animal nature bird pirate talk\n🐸 frog animal nature croak toad\n🐊 crocodile animal nature reptile lizard alligator\n🐢 turtle animal slow nature tortoise\n🦎 lizard animal nature reptile\n🐍 snake animal evil nature hiss python\n🐲 dragon face animal myth nature chinese green\n🐉 dragon animal myth nature chinese green\n🦕 sauropod animal nature dinosaur brachiosaurus brontosaurus diplodocus extinct\n🦖 t rex animal nature dinosaur tyrannosaurus extinct\n🐳 spouting whale animal nature sea ocean\n🐋 whale animal nature sea ocean\n🐬 dolphin animal nature fish sea ocean flipper fins beach\n🐟 fish animal food nature\n🐠 tropical fish animal swim ocean beach nemo\n🐡 blowfish animal nature food sea ocean\n🦈 shark animal nature fish sea ocean jaws fins beach\n🐙 octopus animal creature ocean sea nature beach\n🐚 spiral shell nature sea beach\n🐌 snail slow animal shell\n🦋 butterfly animal insect nature caterpillar\n🐛 bug animal insect nature worm\n🐜 ant animal insect nature bug\n🐝 honeybee animal insect nature bug spring honey\n🐞 lady beetle animal insect nature ladybug\n🦗 cricket animal cricket chirp\n🕷️ spider animal arachnid\n🕸️ spider web animal insect arachnid silk\n🦂 scorpion animal arachnid\n🦟 mosquito animal nature insect malaria\n🦠 microbe amoeba bacteria germs virus\n💐 bouquet flowers nature spring\n🌸 cherry blossom nature plant spring flower\n💮 white flower japanese spring\n🏵️ rosette flower decoration military\n🌹 rose flowers valentines love spring\n🥀 wilted flower plant nature flower\n🌺 hibiscus plant vegetable flowers beach\n🌻 sunflower nature plant fall\n🌼 blossom nature flowers yellow\n🌷 tulip flowers plant nature summer spring\n🌱 seedling plant nature grass lawn spring\n🌲 evergreen tree plant nature\n🌳 deciduous tree plant nature\n🌴 palm tree plant vegetable nature summer beach mojito tropical\n🌵 cactus vegetable plant nature\n🌾 sheaf of rice nature plant\n🌿 herb vegetable plant medicine weed grass lawn\n☘️ shamrock vegetable plant nature irish clover\n🍀 four leaf clover vegetable plant nature lucky irish\n🍁 maple leaf nature plant vegetable ca fall\n🫜 root Vegetable\n🍂 fallen leaf nature plant vegetable leaves\n🪾 Leafless Tree\n🍃 leaf fluttering in wind nature plant tree vegetable grass lawn spring\n🍇 grapes fruit food wine\n🍈 melon fruit nature food\n🍉 watermelon fruit food picnic summer\n🍊 tangerine food fruit nature orange\n🍋 lemon fruit nature\n🍌 banana fruit food monkey\n🍍 pineapple fruit nature food\n🥭 mango fruit food tropical\n🍎 red apple fruit mac school\n🍏 green apple fruit nature\n🍐 pear fruit nature food\n🍑 peach fruit nature food\n🍒 cherries food fruit\n🍓 strawberry fruit food nature\n🥝 kiwi fruit fruit food\n🍅 tomato fruit vegetable nature food\n🥥 coconut fruit nature food palm\n🥑 avocado fruit food\n🍆 eggplant vegetable nature food aubergine\n🥔 potato food tuber vegatable starch\n🥕 carrot vegetable food orange\n🌽 ear of corn food vegetable plant\n🌶️ hot pepper food spicy chilli chili\n🥒 cucumber fruit food pickle\n🥬 leafy green food vegetable plant bok choy cabbage kale lettuce\n🥦 broccoli fruit food vegetable\n🧄 garlic food spice cook\n🧅 onion cook food spice\n🍄 mushroom plant vegetable\n🥜 peanuts food nut\n🌰 chestnut food squirrel\n🍞 bread food wheat breakfast toast\n🥐 croissant food bread french\n🥖 baguette bread food bread french\n🥨 pretzel food bread twisted\n🥯 bagel food bread bakery schmear\n🥞 pancakes food breakfast flapjacks hotcakes\n🧇 waffle food breakfast\n🧀 cheese wedge food chadder\n🍖 meat on bone good food drumstick\n🍗 poultry leg food meat drumstick bird chicken turkey\n🥩 cut of meat food cow meat cut chop lambchop porkchop\n🥓 bacon food breakfast pork pig meat\n🍔 hamburger meat fast food beef cheeseburger mcdonalds burger king\n🍟 french fries chips snack fast food\n🍕 pizza food party\n🌭 hot dog food frankfurter\n🥪 sandwich food lunch bread\n🌮 taco food mexican\n🌯 burrito food mexican\n🥙 stuffed flatbread food flatbread stuffed gyro\n🧆 falafel food\n🥚 egg food chicken breakfast\n🍳 cooking food breakfast kitchen egg\n🥘 shallow pan of food food cooking casserole paella\n🍲 pot of food food meat soup\n🥣 bowl with spoon food breakfast cereal oatmeal porridge\n🥗 green salad food healthy lettuce\n🍿 popcorn food movie theater films snack\n🧈 butter food cook\n🧂 salt condiment shaker\n🥫 canned food food soup\n🍱 bento box food japanese box\n🍘 rice cracker food japanese\n🍙 rice ball food japanese\n🍚 cooked rice food china asian\n🍛 curry rice food spicy hot indian\n🍜 steaming bowl food japanese noodle chopsticks\n🍝 spaghetti food italian noodle\n🍠 roasted sweet potato food nature\n🍢 oden food japanese\n🍣 sushi food fish japanese rice\n🍤 fried shrimp food animal appetizer summer\n🍥 fish cake with swirl food japan sea beach narutomaki pink swirl kamaboko surimi ramen\n🥮 moon cake food autumn\n🍡 dango food dessert sweet japanese barbecue meat\n🥟 dumpling food empanada pierogi potsticker\n🥠 fortune cookie food prophecy\n🥡 takeout box food leftovers\n🦀 crab animal crustacean\n🦞 lobster animal nature bisque claws seafood\n🦐 shrimp animal ocean nature seafood\n🦑 squid animal nature ocean sea\n🦪 oyster food\n🍦 soft ice cream food hot dessert summer\n🍧 shaved ice hot dessert summer\n🍨 ice cream food hot dessert\n🍩 doughnut food dessert snack sweet donut\n🍪 cookie food snack oreo chocolate sweet dessert\n🎂 birthday cake food dessert cake\n🍰 shortcake food dessert\n🧁 cupcake food dessert bakery sweet\n🥧 pie food dessert pastry\n🍫 chocolate bar food snack dessert sweet\n🍬 candy snack dessert sweet lolly\n🍭 lollipop food snack candy sweet\n🍮 custard dessert food\n🍯 honey pot bees sweet kitchen\n🍼 baby bottle food container milk\n🥛 glass of milk beverage drink cow\n☕ hot beverage beverage caffeine latte espresso coffee\n🍵 teacup without handle drink bowl breakfast green british\n🍶 sake wine drink drunk beverage japanese alcohol booze\n🍾 bottle with popping cork drink wine bottle celebration\n🍷 wine glass drink beverage drunk alcohol booze\n🍸 cocktail glass drink drunk alcohol beverage booze mojito\n🍹 tropical drink beverage cocktail summer beach alcohol booze mojito\n🍺 beer mug relax beverage drink drunk party pub summer alcohol booze\n🍻 clinking beer mugs relax beverage drink drunk party pub summer alcohol booze\n🥂 clinking glasses beverage drink party alcohol celebrate cheers wine champagne toast\n🥃 tumbler glass drink beverage drunk alcohol liquor booze bourbon scotch whisky glass shot\n🥤 cup with straw drink soda\n🧃 beverage box drink\n🧉 mate drink tea beverage\n🧊 ice water cold\n🥢 chopsticks food\n🍽️ fork and knife with plate food eat meal lunch dinner restaurant\n🍴 fork and knife cutlery kitchen\n🥄 spoon cutlery kitchen tableware\n🔪 kitchen knife knife blade cutlery kitchen weapon\n🏺 amphora vase jar\n🌍 globe showing europe africa globe world international\n🌎 globe showing americas globe world USA international\n🌏 globe showing asia australia globe world east international\n🌐 globe with meridians earth international world internet interweb i18n\n🗺️ world map location direction\n🗾 map of japan nation country japanese asia\n🧭 compass magnetic navigation orienteering\n🏔️ snow capped mountain photo nature environment winter cold\n⛰️ mountain photo nature environment\n🌋 volcano photo nature disaster\n🗻 mount fuji photo mountain nature japanese\n🏕️ camping photo outdoors tent\n🏖️ beach with umbrella weather summer sunny sand mojito\n🏜️ desert photo warm saharah\n🏝️ desert island photo tropical mojito\n🏞️ national park photo environment nature\n🏟️ stadium photo place sports concert venue\n🏛️ classical building art culture history\n🏗️ building construction wip working progress\n🧱 brick bricks\n🏘️ houses buildings photo\n🏚️ derelict house abandon evict broken building\n🏠 house building home\n🏡 house with garden home plant nature\n🏢 office building building bureau work\n🏣 japanese post office building envelope communication\n🏤 post office building email\n🏥 hospital building health surgery doctor\n🏦 bank building money sales cash business enterprise\n🏨 hotel building accomodation checkin\n🏩 love hotel like affection dating\n🏪 convenience store building shopping groceries\n🏫 school building student education learn teach\n🏬 department store building shopping mall\n🏭 factory building industry pollution smoke\n🏯 japanese castle photo building\n🏰 castle building royalty history\n💒 wedding love like affection couple marriage bride groom\n🗼 tokyo tower photo japanese\n🗽 statue of liberty american newyork\n⛪ church building religion christ\n🕌 mosque islam worship minaret\n🛕 hindu temple religion\n🕍 synagogue judaism worship temple jewish\n⛩️ shinto shrine temple japan kyoto\n🕋 kaaba mecca mosque islam\n⛲ fountain photo summer water fresh\n⛺ tent photo camping outdoors\n🌁 foggy photo mountain\n🌃 night with stars evening city downtown\n🏙️ cityscape photo night life urban\n🌄 sunrise over mountains view vacation photo\n🌅 sunrise morning view vacation photo\n🌆 cityscape at dusk photo evening sky buildings\n🌇 sunset photo good morning dawn\n🌉 bridge at night photo sanfrancisco\n♨️ hot springs bath warm relax\n🎠 carousel horse photo carnival\n🎡 ferris wheel photo carnival londoneye\n🎢 roller coaster carnival playground photo fun\n💈 barber pole hair salon style\n🎪 circus tent festival carnival party\n🚂 locomotive transportation vehicle train\n🚃 railway car transportation vehicle\n🚄 high speed train transportation vehicle\n🚅 bullet train transportation vehicle speed fast public travel\n🚆 train transportation vehicle\n🚇 metro transportation blue-square mrt underground tube\n🚈 light rail transportation vehicle\n🚉 station transportation vehicle public\n🚊 tram transportation vehicle\n🚝 monorail transportation vehicle\n🚞 mountain railway transportation vehicle\n🚋 tram car transportation vehicle carriage public travel\n🚌 bus car vehicle transportation\n🚍 oncoming bus vehicle transportation\n🚎 trolleybus bart transportation vehicle\n🚐 minibus vehicle car transportation\n🚑 ambulance health 911 hospital\n🚒 fire engine transportation cars vehicle\n🚓 police car vehicle cars transportation law legal enforcement\n🚔 oncoming police car vehicle law legal enforcement 911\n🚕 taxi uber vehicle cars transportation\n🚖 oncoming taxi vehicle cars uber\n🚗 automobile red transportation vehicle\n🚘 oncoming automobile car vehicle transportation\n🚙 sport utility vehicle transportation vehicle\n🚚 delivery truck cars transportation\n🚛 articulated lorry vehicle cars transportation express\n🚜 tractor vehicle car farming agriculture\n🏎️ racing car sports race fast formula f1\n🏍️ motorcycle race sports fast\n🛵 motor scooter vehicle vespa sasha\n🦽 manual wheelchair accessibility\n🦼 motorized wheelchair accessibility\n🛺 auto rickshaw move transportation\n🚲 bicycle sports bicycle exercise hipster\n🛴 kick scooter vehicle kick razor\n🛹 skateboard board\n🚏 bus stop transportation wait\n🛣️ motorway road cupertino interstate highway\n🛤️ railway track train transportation\n🛢️ oil drum barrell\n⛽ fuel pump gas station petroleum\n🚨 police car light police ambulance 911 emergency alert error pinged law legal\n🚥 horizontal traffic light transportation signal\n🚦 vertical traffic light transportation driving\n🛑 stop sign stop\n🚧 construction wip progress caution warning\n⚓ anchor ship ferry sea boat\n⛵ sailboat ship summer transportation water sailing\n🛶 canoe boat paddle water ship\n🚤 speedboat ship transportation vehicle summer\n🛳️ passenger ship yacht cruise ferry\n⛴️ ferry boat ship yacht\n🛥️ motor boat ship\n🚢 ship transportation titanic deploy\n✈️ airplane vehicle transportation flight fly\n🛩️ small airplane flight transportation fly vehicle\n🛫 airplane departure airport flight landing\n🛬 airplane arrival airport flight boarding\n🪂 parachute fly glide\n💺 seat sit airplane transport bus flight fly\n🚁 helicopter transportation vehicle fly\n🚟 suspension railway vehicle transportation\n🚠 mountain cableway transportation vehicle ski\n🚡 aerial tramway transportation vehicle ski\n🛰️ satellite communication gps orbit spaceflight NASA ISS\n🚀 rocket launch ship staffmode NASA outer space outer space fly\n🛸 flying saucer transportation vehicle ufo\n🛎️ bellhop bell service\n🧳 luggage packing travel\n⌛ hourglass done time clock oldschool limit exam quiz test\n⏳ hourglass not done oldschool time countdown\n⌚ watch time accessories\n⏰ alarm clock time wake\n⏱️ stopwatch time deadline\n⏲️ timer clock alarm\n🕰️ mantelpiece clock time\n🕛 twelve o clock time noon midnight midday late early schedule\n🕧 twelve thirty time late early schedule\n🕐 one o clock time late early schedule\n🕜 one thirty time late early schedule\n🕑 two o clock time late early schedule\n🕝 two thirty time late early schedule\n🕒 three o clock time late early schedule\n🕞 three thirty time late early schedule\n🕓 four o clock time late early schedule\n🕟 four thirty time late early schedule\n🕔 five o clock time late early schedule\n🕠 five thirty time late early schedule\n🕕 six o clock time late early schedule dawn dusk\n🕡 six thirty time late early schedule\n🕖 seven o clock time late early schedule\n🕢 seven thirty time late early schedule\n🕗 eight o clock time late early schedule\n🕣 eight thirty time late early schedule\n🕘 nine o clock time late early schedule\n🕤 nine thirty time late early schedule\n🕙 ten o clock time late early schedule\n🕥 ten thirty time late early schedule\n🕚 eleven o clock time late early schedule\n🕦 eleven thirty time late early schedule\n🌑 new moon nature twilight planet space night evening sleep\n🌒 waxing crescent moon nature twilight planet space night evening sleep\n🌓 first quarter moon nature twilight planet space night evening sleep\n🌔 waxing gibbous moon nature night sky gray twilight planet space evening sleep\n🌕 full moon nature yellow twilight planet space night evening sleep\n🌖 waning gibbous moon nature twilight planet space night evening sleep waxing gibbous moon\n🌗 last quarter moon nature twilight planet space night evening sleep\n🌘 waning crescent moon nature twilight planet space night evening sleep\n🌙 crescent moon night sleep sky evening magic\n🌚 new moon face nature twilight planet space night evening sleep\n🌛 first quarter moon face nature twilight planet space night evening sleep\n🌜 last quarter moon face nature twilight planet space night evening sleep\n🌡️ thermometer weather temperature hot cold\n☀️ sun weather nature brightness summer beach spring\n🌝 full moon face nature twilight planet space night evening sleep\n🌞 sun with face nature morning sky\n🪐 ringed planet outerspace\n⭐ star night yellow\n🌟 glowing star night sparkle awesome good magic\n🌠 shooting star night photo\n🌌 milky way photo space stars\n☁️ cloud weather sky\n⛅ sun behind cloud weather nature cloudy morning fall spring\n⛈️ cloud with lightning and rain weather lightning\n🌤️ sun behind small cloud weather\n🌥️ sun behind large cloud weather\n🌦️ sun behind rain cloud weather\n🌧️ cloud with rain weather\n🌨️ cloud with snow weather\n🌩️ cloud with lightning weather thunder\n🌪️ tornado weather cyclone twister\n🌫️ fog weather\n🌬️ wind face gust air\n🌀 cyclone weather swirl blue cloud vortex spiral whirlpool spin tornado hurricane typhoon\n🌈 rainbow nature happy unicorn face photo sky spring\n🌂 closed umbrella weather rain drizzle\n☂️ umbrella weather spring\n☔ umbrella with rain drops rainy weather spring\n⛱️ umbrella on ground weather summer\n⚡ high voltage thunder weather lightning bolt fast\n❄️ snowflake winter season cold weather christmas xmas\n☃️ snowman winter season cold weather christmas xmas frozen\n⛄ snowman without snow winter season cold weather christmas xmas frozen without snow\n☄️ comet space\n🔥 fire hot cook flame\n💧 droplet water drip faucet spring\n🌊 water wave sea water wave nature tsunami disaster\n🎃 jack o lantern halloween light pumpkin creepy fall\n🎄 christmas tree festival vacation december xmas celebration\n🎆 fireworks photo festival carnival congratulations\n🎇 sparkler stars night shine\n🧨 firecracker dynamite boom explode explosion explosive\n✨ sparkles stars shine shiny cool awesome good magic\n🎈 balloon party celebration birthday circus\n🎉 party popper party congratulations birthday magic circus celebration tada\n🎊 confetti ball festival party birthday circus\n🎋 tanabata tree plant nature branch summer\n🎍 pine decoration plant nature vegetable panda pine decoration\n🎎 japanese dolls japanese toy kimono\n🎏 carp streamer fish japanese koinobori carp banner\n🎐 wind chime nature ding spring bell\n🎑 moon viewing ceremony photo japan asia tsukimi\n🧧 red envelope gift\n🎀 ribbon decoration pink girl bowtie\n🎁 wrapped gift present birthday christmas xmas\n🎗️ reminder ribbon sports cause support awareness\n🎟️ admission tickets sports concert entrance\n🎫 ticket event concert pass\n🎖️ military medal award winning army\n🏆 trophy win award contest place ftw ceremony\n🏅 sports medal award winning\n🥇 1st place medal award winning first\n🥈 2nd place medal award second\n🥉 3rd place medal award third\n⚽ soccer ball sports football\n⚾ baseball sports balls\n🥎 softball sports balls\n🏀 basketball sports balls NBA\n🏐 volleyball sports balls\n🏈 american football sports balls NFL\n🏉 rugby football sports team\n🎾 tennis sports balls green\n🥏 flying disc sports frisbee ultimate\n🎳 bowling sports fun play\n🏏 cricket game sports\n🏑 field hockey sports\n🏒 ice hockey sports\n🥍 lacrosse sports ball stick\n🏓 ping pong sports pingpong\n🏸 badminton sports\n🥊 boxing glove sports fighting\n🥋 martial arts uniform judo karate taekwondo\n🥅 goal net sports\n⛳ flag in hole sports business flag hole summer\n⛸️ ice skate sports\n🎣 fishing pole food hobby summer\n🤿 diving mask sport ocean\n🎽 running shirt play pageant\n🎿 skis sports winter cold snow\n🛷 sled sleigh luge toboggan\n🥌 curling stone sports\n🎯 direct hit game play bar target bullseye\n🪀 yo yo toy\n🪁 kite wind fly\n🎱 pool 8 ball pool hobby game luck magic\n🔮 crystal ball disco party magic circus fortune teller\n🧿 nazar amulet bead charm\n🎮 video game play console PS4 Wii GameCube controller\n🕹️ joystick game play\n🎰 slot machine bet gamble vegas fruit machine luck casino\n🎲 game die dice random tabletop play luck\n🧩 puzzle piece interlocking puzzle piece\n🧸 teddy bear plush stuffed\n♠️ spade suit poker cards suits magic\n♥️ heart suit poker cards magic suits\n♦️ diamond suit poker cards magic suits\n♣️ club suit poker cards magic suits\n♟️ chess pawn expendable\n🃏 joker poker cards game play magic\n🀄 mahjong red dragon game play chinese kanji\n🎴 flower playing cards game sunset red\n🎭 performing arts acting theater drama\n🖼️ framed picture photography\n🎨 artist palette design paint draw colors\n🧵 thread needle sewing spool string\n🧶 yarn ball crochet knit\n👓 glasses fashion accessories eyesight nerdy dork geek\n🕶️ sunglasses face cool accessories\n🥽 goggles eyes protection safety\n🥼 lab coat doctor experiment scientist chemist\n🦺 safety vest protection\n👔 necktie shirt suitup formal fashion cloth business\n👕 t shirt fashion cloth casual shirt tee\n👖 jeans fashion shopping\n🧣 scarf neck winter clothes\n🧤 gloves hands winter clothes\n🧥 coat jacket\n🧦 socks stockings clothes\n👗 dress clothes fashion shopping\n👘 kimono dress fashion women female japanese\n🥻 sari dress\n🩱 one piece swimsuit fashion\n🩲 briefs clothing\n🩳 shorts clothing\n👙 bikini swimming female woman girl fashion beach summer\n👚 woman s clothes fashion shopping bags female\n👛 purse fashion accessories money sales shopping\n👜 handbag fashion accessory accessories shopping\n👝 clutch bag bag accessories shopping\n🛍️ shopping bags mall buy purchase\n🎒 backpack student education bag backpack\n👞 man s shoe fashion male\n👟 running shoe shoes sports sneakers\n🥾 hiking boot backpacking camping hiking\n🥿 flat shoe ballet slip-on slipper\n👠 high heeled shoe fashion shoes female pumps stiletto\n👡 woman s sandal shoes fashion flip flops\n🩰 ballet shoes dance\n👢 woman s boot shoes fashion\n👑 crown king kod leader royalty lord\n👒 woman s hat fashion accessories female lady spring\n🎩 top hat magic gentleman classy circus\n🎓 graduation cap school college degree university graduation cap hat legal learn education\n🧢 billed cap cap baseball\n⛑️ rescue worker s helmet construction build\n📿 prayer beads dhikr religious\n💄 lipstick female girl fashion woman\n💍 ring wedding propose marriage valentines diamond fashion jewelry gem engagement\n💎 gem stone blue ruby diamond jewelry\n🔇 muted speaker sound volume silence quiet\n🔈 speaker low volume sound volume silence broadcast\n🔉 speaker medium volume volume speaker broadcast\n🔊 speaker high volume volume noise noisy speaker broadcast\n📢 loudspeaker volume sound\n📣 megaphone sound speaker volume\n📯 postal horn instrument music\n🔔 bell sound notification christmas xmas chime\n🔕 bell with slash sound volume mute quiet silent\n🎼 musical score treble clef compose\n🎵 musical note score tone sound\n🎶 musical notes music score\n🎙️ studio microphone sing recording artist talkshow\n🎚️ level slider scale\n🎛️ control knobs dial\n🎤 microphone sound music PA sing talkshow\n🎧 headphone music score gadgets\n📻 radio communication music podcast program\n🎷 saxophone music instrument jazz blues\n🎸 guitar music instrument\n🪉 harp music instrument\n🎹 musical keyboard piano instrument compose\n🎺 trumpet music brass\n🎻 violin music instrument orchestra symphony\n🪕 banjo music instructment\n🥁 drum music instrument drumsticks snare\n📱 mobile phone technology apple gadgets dial\n📲 mobile phone with arrow iphone incoming\n☎️ telephone technology communication dial telephone\n📞 telephone receiver technology communication dial\n📟 pager bbcall oldschool 90s\n📠 fax machine communication technology\n🔋 battery power energy sustain\n🔌 electric plug charger power\n💻 laptop technology laptop screen display monitor\n🖥️ desktop computer technology computing screen\n🖨️ printer paper ink\n⌨️ keyboard technology computer type input text\n🖱️ computer mouse click\n🖲️ trackball technology trackpad\n💽 computer disk technology record data disk 90s\n💾 floppy disk oldschool technology save 90s 80s\n💿 optical disk technology dvd disk disc 90s\n📀 dvd cd disk disc\n🧮 abacus calculation\n🎥 movie camera film record\n🎞️ film frames movie\n📽️ film projector video tape record movie\n🎬 clapper board movie film record\n📺 television technology program oldschool show television\n📷 camera gadgets photography\n📸 camera with flash photography gadgets\n📹 video camera film record\n📼 videocassette record video oldschool 90s 80s\n🔍 magnifying glass tilted left search zoom find detective\n🔎 magnifying glass tilted right search zoom find detective\n🕯️ candle fire wax\n💡 light bulb light electricity idea\n🔦 flashlight dark camping sight night\n🏮 red paper lantern light paper halloween spooky\n🪔 diya lamp lighting\n📔 notebook with decorative cover classroom notes record paper study\n📕 closed book read library knowledge textbook learn\n📖 open book book read library knowledge literature learn study\n📗 green book read library knowledge study\n📘 blue book read library knowledge learn study\n📙 orange book read library knowledge textbook study\n📚 books literature library study\n📓 notebook stationery record notes paper study\n📒 ledger notes paper\n📃 page with curl documents office paper\n📜 scroll documents ancient history paper\n📄 page facing up documents office paper information\n📰 newspaper press headline\n🗞️ rolled up newspaper press headline\n📑 bookmark tabs favorite save order tidy\n🔖 bookmark favorite label save\n🏷️ label sale tag\n💰 money bag dollar payment coins sale\n💴 yen banknote money sales japanese dollar currency\n💵 dollar banknote money sales bill currency\n💶 euro banknote money sales dollar currency\n💷 pound banknote british sterling money sales bills uk england currency\n💸 money with wings dollar bills payment sale\n💳 credit card money sales dollar bill payment shopping\n🧾 receipt accounting expenses\n💹 chart increasing with yen green-square graph presentation stats\n💱 currency exchange money sales dollar travel\n💲 heavy dollar sign money sales payment currency buck\n✉️ envelope letter postal inbox communication\n📧 e mail communication inbox\n📨 incoming envelope email inbox\n📩 envelope with arrow email communication\n📤 outbox tray inbox email\n📥 inbox tray email documents\n📦 package mail gift cardboard box moving\n📫 closed mailbox with raised flag email inbox communication\n📪 closed mailbox with lowered flag email communication inbox\n📬 open mailbox with raised flag email inbox communication\n📭 open mailbox with lowered flag email inbox\n📮 postbox email letter envelope\n🗳️ ballot box with ballot election vote\n✏️ pencil stationery write paper writing school study\n✒️ black nib pen stationery writing write\n🖋️ fountain pen stationery writing write\n🖊️ pen stationery writing write\n🖌️ paintbrush drawing creativity art\n🖍️ crayon drawing creativity\n📝 memo write documents stationery pencil paper writing legal exam quiz test study compose\n💼 briefcase business documents work law legal job career\n📁 file folder documents business office\n📂 open file folder documents load\n🗂️ card index dividers organizing business stationery\n📅 calendar calendar schedule\n📆 tear off calendar schedule date planning\n🗒️ spiral notepad memo stationery\n🗓️ spiral calendar date schedule planning\n📇 card index business stationery\n📈 chart increasing graph presentation stats recovery business economics money sales good success\n📉 chart decreasing graph presentation stats recession business economics money sales bad failure\n📊 bar chart graph presentation stats\n📋 clipboard stationery documents\n📌 pushpin stationery mark here\n📍 round pushpin stationery location map here\n📎 paperclip documents stationery\n🖇️ linked paperclips documents stationery\n📏 straight ruler stationery calculate length math school drawing architect sketch\n📐 triangular ruler stationery math architect sketch\n✂️ scissors stationery cut\n🗃️ card file box business stationery\n🗄️ file cabinet filing organizing\n🗑️ wastebasket bin trash rubbish garbage toss\n🔒 locked security password padlock\n🔓 unlocked privacy security\n🔏 locked with pen security secret\n🔐 locked with key security privacy\n🔑 key lock door password\n🗝️ old key lock door password\n🔨 hammer tools build create\n🪏 shovel tool\n🪓 axe tool chop cut\n⛏️ pick tools dig\n⚒️ hammer and pick tools build create\n🛠️ hammer and wrench tools build create\n🗡️ dagger weapon\n⚔️ crossed swords weapon\n🔫 pistol violence weapon pistol revolver\n🏹 bow and arrow sports\n🛡️ shield protection security\n🔧 wrench tools diy ikea fix maintainer\n🔩 nut and bolt handy tools fix\n⚙️ gear cog\n🗜️ clamp tool\n⚖️ balance scale law fairness weight\n🦯 probing cane accessibility\n🔗 link rings url\n⛓️ chains lock arrest\n🧰 toolbox tools diy fix maintainer mechanic\n🧲 magnet attraction magnetic\n⚗️ alembic distilling science experiment chemistry\n🧪 test tube chemistry experiment lab science\n🧫 petri dish bacteria biology culture lab\n🧬 dna biologist genetics life\n🔬 microscope laboratory experiment zoomin science study\n🔭 telescope stars space zoom science astronomy\n📡 satellite antenna communication future radio space\n💉 syringe health hospital drugs blood medicine needle doctor nurse\n🩸 drop of blood period hurt harm wound\n💊 pill health medicine doctor pharmacy drug\n🩹 adhesive bandage heal\n🩺 stethoscope health\n🚪 door house entry exit\n🛏️ bed sleep rest\n🛋️ couch and lamp read chill\n🪑 chair sit furniture\n🫟 liquid splat Splatter\n🚽 toilet restroom wc washroom bathroom potty\n🚿 shower clean water bathroom\n🛁 bathtub clean shower bathroom\n🪒 razor cut\n🧴 lotion bottle moisturizer sunscreen\n🧷 safety pin diaper\n🧹 broom cleaning sweeping witch\n🧺 basket laundry\n🧻 roll of paper roll\n🧼 soap bar bathing cleaning lather\n🧽 sponge absorbing cleaning porous\n🧯 fire extinguisher quench\n🛒 shopping cart trolley\n🚬 cigarette kills tobacco cigarette joint smoke\n⚰️ coffin vampire dead die death rip graveyard cemetery casket funeral box\n⚱️ funeral urn dead die death rip ashes\n🗿 moai rock easter island moai\n🏧 atm sign money sales cash blue-square payment bank\n🚮 litter in bin sign blue-square sign human info\n🚰 potable water blue-square liquid restroom cleaning faucet\n♿ wheelchair symbol blue-square disabled accessibility\n🚹 men s room toilet restroom wc blue-square gender male\n🚺 women s room purple-square woman female toilet loo restroom gender\n🚻 restroom blue-square toilet refresh wc gender\n🚼 baby symbol orange-square child\n🚾 water closet toilet restroom blue-square\n🛂 passport control custom blue-square\n🛃 customs passport border blue-square\n🛄 baggage claim blue-square airport transport\n🛅 left luggage blue-square travel\n⚠️ warning exclamation wip alert error problem issue\n🚸 children crossing school warning danger sign driving yellow-diamond\n⛔ no entry limit security privacy bad denied stop circle\n🚫 prohibited forbid stop limit denied disallow circle\n🚳 no bicycles cyclist prohibited circle\n🚭 no smoking cigarette blue-square smell smoke\n🚯 no littering trash bin garbage circle\n🚱 non potable water drink faucet tap circle\n🚷 no pedestrians rules crossing walking circle\n📵 no mobile phones iphone mute circle\n🔞 no one under eighteen 18 drink pub night minor circle\n☢️ radioactive nuclear danger\n☣️ biohazard danger\n⬆️ up arrow blue-square continue top direction\n↗️ up right arrow blue-square point direction diagonal northeast\n➡️ right arrow blue-square next\n↘️ down right arrow blue-square direction diagonal southeast\n⬇️ down arrow blue-square direction bottom\n↙️ down left arrow blue-square direction diagonal southwest\n⬅️ left arrow blue-square previous back\n↖️ up left arrow blue-square point direction diagonal northwest\n↕️ up down arrow blue-square direction way vertical\n↔️ left right arrow shape direction horizontal sideways\n↩️ right arrow curving left back return blue-square undo enter\n↪️ left arrow curving right blue-square return rotate direction\n⤴️ right arrow curving up blue-square direction top\n⤵️ right arrow curving down blue-square direction bottom\n🔃 clockwise vertical arrows sync cycle round repeat\n🔄 counterclockwise arrows button blue-square sync cycle\n🔙 back arrow arrow words return\n🔚 end arrow words arrow\n🔛 on arrow arrow words\n🔜 soon arrow arrow words\n🔝 top arrow words blue-square\n🛐 place of worship religion church temple prayer\n⚛️ atom symbol science physics chemistry\n🕉️ om hinduism buddhism sikhism jainism\n✡️ star of david judaism\n☸️ wheel of dharma hinduism buddhism sikhism jainism\n☯️ yin yang balance\n✝️ latin cross christianity\n☦️ orthodox cross suppedaneum religion\n☪️ star and crescent islam\n☮️ peace symbol hippie\n🕎 menorah hanukkah candles jewish\n🔯 dotted six pointed star purple-square religion jewish hexagram\n♈ aries sign purple-square zodiac astrology\n♉ taurus purple-square sign zodiac astrology\n♊ gemini sign zodiac purple-square astrology\n♋ cancer sign zodiac purple-square astrology\n♌ leo sign purple-square zodiac astrology\n♍ virgo sign zodiac purple-square astrology\n♎ libra sign purple-square zodiac astrology\n♏ scorpio sign zodiac purple-square astrology scorpio\n♐ sagittarius sign zodiac purple-square astrology\n♑ capricorn sign zodiac purple-square astrology\n♒ aquarius sign purple-square zodiac astrology\n♓ pisces purple-square sign zodiac astrology\n⛎ ophiuchus sign purple-square constellation astrology\n🔀 shuffle tracks button blue-square shuffle music random\n🔁 repeat button loop record\n🔂 repeat single button blue-square loop\n▶️ play button blue-square right direction play\n⏩ fast forward button blue-square play speed continue\n⏭️ next track button forward next blue-square\n⏯️ play or pause button blue-square play pause\n◀️ reverse button blue-square left direction\n⏪ fast reverse button play blue-square\n⏮️ last track button backward\n🔼 upwards button blue-square triangle direction point forward top\n⏫ fast up button blue-square direction top\n🔽 downwards button blue-square direction bottom\n⏬ fast down button blue-square direction bottom\n⏸️ pause button pause blue-square\n⏹️ stop button blue-square\n⏺️ record button blue-square\n⏏️ eject button blue-square\n🎦 cinema blue-square record film movie curtain stage theater\n🔅 dim button sun afternoon warm summer\n🔆 bright button sun light\n📶 antenna bars blue-square reception phone internet connection wifi bluetooth bars\n📳 vibration mode orange-square phone\n📴 mobile phone off mute orange-square silence quiet\n♀️ female sign woman women lady girl\n♂️ male sign man boy men\n⚕️ medical symbol health hospital\n♾️ infinity forever\n♻️ recycling symbol arrow environment garbage trash\n⚜️ fleur de lis decorative scout\n🔱 trident emblem weapon spear\n📛 name badge fire forbid\n🔰 japanese symbol for beginner badge shield\n⭕ hollow red circle circle round\n✅ check mark button green-square ok agree vote election answer tick\n☑️ check box with check ok agree confirm black-square vote election yes tick\n✔️ check mark ok nike answer yes tick\n✖️ multiplication sign math calculation\n❌ cross mark no delete remove cancel red\n❎ cross mark button x green-square no deny\n➕ plus sign math calculation addition more increase\n➖ minus sign math calculation subtract less\n➗ division sign divide math calculation\n➰ curly loop scribble draw shape squiggle\n➿ double curly loop tape cassette\n〽️ part alternation mark graph presentation stats business economics bad\n✳️ eight spoked asterisk star sparkle green-square\n✴️ eight pointed star orange-square shape polygon\n❇️ sparkle stars green-square awesome good fireworks\n‼️ double exclamation mark exclamation surprise\n⁉️ exclamation question mark wat punctuation surprise\n❓ question mark doubt confused\n❔ white question mark doubts gray huh confused\n❕ white exclamation mark surprise punctuation gray wow warning\n❗ exclamation mark heavy exclamation mark danger surprise punctuation wow warning\n〰️ wavy dash draw line moustache mustache squiggle scribble\n©️ copyright ip license circle law legal\n®️ registered alphabet circle\n™️ trade mark trademark brand law legal\n#️⃣ keycap  symbol blue-square twitter\n*️⃣ keycap  star keycap\n0️⃣ keycap 0 0 numbers blue-square null\n1️⃣ keycap 1 blue-square numbers 1\n2️⃣ keycap 2 numbers 2 prime blue-square\n3️⃣ keycap 3 3 numbers prime blue-square\n4️⃣ keycap 4 4 numbers blue-square\n5️⃣ keycap 5 5 numbers blue-square prime\n6️⃣ keycap 6 6 numbers blue-square\n7️⃣ keycap 7 7 numbers blue-square prime\n8️⃣ keycap 8 8 blue-square numbers\n9️⃣ keycap 9 blue-square numbers 9\n🔟 keycap 10 numbers 10 blue-square\n🔠 input latin uppercase alphabet words blue-square\n🔡 input latin lowercase blue-square alphabet\n🔢 input numbers numbers blue-square\n🔣 input symbols blue-square music note ampersand percent glyphs characters\n🔤 input latin letters blue-square alphabet\n🅰️ a button red-square alphabet letter\n🆎 ab button red-square alphabet\n🅱️ b button red-square alphabet letter\n🆑 cl button alphabet words red-square\n🆒 cool button words blue-square\n🆓 free button blue-square words\nℹ️ information blue-square alphabet letter\n🆔 id button purple-square words\nⓂ️ circled m alphabet blue-circle letter\n🆕 new button blue-square words start\n🆖 ng button blue-square words shape icon\n🅾️ o button alphabet red-square letter\n🆗 ok button good agree yes blue-square\n🅿️ p button cars blue-square alphabet letter\n🆘 sos button help red-square words emergency 911\n🆙 up button blue-square above high\n🆚 vs button words orange-square\n🈁 japanese here button blue-square here katakana japanese destination\n🈂️ japanese service charge button japanese blue-square katakana\n🈷️ japanese monthly amount button chinese month moon japanese orange-square kanji\n🈶 japanese not free of charge button orange-square chinese have kanji\n🈯 japanese reserved button chinese point green-square kanji\n🉐 japanese bargain button chinese kanji obtain get circle\n🈹 japanese discount button cut divide chinese kanji pink-square\n🈚 japanese free of charge button nothing chinese kanji japanese orange-square\n🈲 japanese prohibited button kanji japanese chinese forbidden limit restricted red-square\n🉑 japanese acceptable button ok good chinese kanji agree yes orange-circle\n🈸 japanese application button chinese japanese kanji orange-square\n🈴 japanese passing grade button japanese chinese join kanji red-square\n🈳 japanese vacancy button kanji japanese chinese empty sky blue-square\n㊗️ japanese congratulations button chinese kanji japanese red-circle\n㊙️ japanese secret button privacy chinese sshh kanji red-circle\n🈺 japanese open for business button japanese opening hours orange-square\n🈵 japanese no vacancy button full chinese japanese red-square kanji\n🔴 red circle shape error danger\n🟠 orange circle round\n🟡 yellow circle round\n🟢 green circle round\n🔵 blue circle shape icon button\n🟣 purple circle round\n🟤 brown circle round\n⚫ black circle shape button round\n⚪ white circle shape round\n🟥 red square\n🟧 orange square\n🟨 yellow square\n🟩 green square\n🟦 blue square\n🟪 purple square\n🟫 brown square\n⬛ black large square shape icon button\n⬜ white large square shape icon stone button\n◼️ black medium square shape button icon\n◻️ white medium square shape stone icon\n◾ black medium small square icon shape button\n◽ white medium small square shape stone icon button\n▪️ black small square shape icon\n▫️ white small square shape icon\n🔶 large orange diamond shape jewel gem\n🔷 large blue diamond shape jewel gem\n🔸 small orange diamond shape jewel gem\n🔹 small blue diamond shape jewel gem\n🔺 red triangle pointed up shape direction up top\n🔻 red triangle pointed down shape direction bottom\n💠 diamond with a dot jewel blue gem crystal fancy\n🔘 radio button input old music circle\n🔳 white square button shape input\n🔲 black square button shape input frame\n🏁 chequered flag contest finishline race gokart\n🚩 triangular flag mark milestone place\n🎌 crossed flags japanese nation country border\n🏴 black flag pirate\n🏳️ white flag losing loser lost surrender give up fail\n🏳️‍🌈 rainbow flag flag rainbow pride gay lgbt glbt queer homosexual lesbian bisexual transgender\n🏴‍☠️ pirate flag skull crossbones flag banner\n🇦🇨 flag ascension island\n🇦🇩 flag andorra ad flag nation country banner andorra\n🇦🇪 flag united arab emirates united arab emirates flag nation country banner united arab emirates\n🇦🇫 flag afghanistan af flag nation country banner afghanistan\n🇦🇬 flag antigua barbuda antigua barbuda flag nation country banner antigua barbuda\n🇦🇮 flag anguilla ai flag nation country banner anguilla\n🇦🇱 flag albania al flag nation country banner albania\n🇦🇲 flag armenia am flag nation country banner armenia\n🇦🇴 flag angola ao flag nation country banner angola\n🇦🇶 flag antarctica aq flag nation country banner antarctica\n🇦🇷 flag argentina ar flag nation country banner argentina\n🇦🇸 flag american samoa american ws flag nation country banner american samoa\n🇦🇹 flag austria at flag nation country banner austria\n🇦🇺 flag australia au flag nation country banner australia\n🇦🇼 flag aruba aw flag nation country banner aruba\n🇦🇽 flag aland islands Åland islands flag nation country banner aland islands\n🇦🇿 flag azerbaijan az flag nation country banner azerbaijan\n🇧🇦 flag bosnia herzegovina bosnia herzegovina flag nation country banner bosnia herzegovina\n🇧🇧 flag barbados bb flag nation country banner barbados\n🇧🇩 flag bangladesh bd flag nation country banner bangladesh\n🇧🇪 flag belgium be flag nation country banner belgium\n🇧🇫 flag burkina faso burkina faso flag nation country banner burkina faso\n🇧🇬 flag bulgaria bg flag nation country banner bulgaria\n🇧🇭 flag bahrain bh flag nation country banner bahrain\n🇧🇮 flag burundi bi flag nation country banner burundi\n🇧🇯 flag benin bj flag nation country banner benin\n🇧🇱 flag st barthelemy saint barthélemy flag nation country banner st barthelemy\n🇧🇲 flag bermuda bm flag nation country banner bermuda\n🇧🇳 flag brunei bn darussalam flag nation country banner brunei\n🇧🇴 flag bolivia bo flag nation country banner bolivia\n🇧🇶 flag caribbean netherlands bonaire flag nation country banner caribbean netherlands\n🇧🇷 flag brazil br flag nation country banner brazil\n🇧🇸 flag bahamas bs flag nation country banner bahamas\n🇧🇹 flag bhutan bt flag nation country banner bhutan\n🇧🇻 flag bouvet island norway\n🇧🇼 flag botswana bw flag nation country banner botswana\n🇧🇾 flag belarus by flag nation country banner belarus\n🇧🇿 flag belize bz flag nation country banner belize\n🇨🇦 flag canada ca flag nation country banner canada\n🇨🇨 flag cocos islands cocos keeling islands flag nation country banner cocos islands\n🇨🇩 flag congo kinshasa congo democratic republic flag nation country banner congo kinshasa\n🇨🇫 flag central african republic central african republic flag nation country banner central african republic\n🇨🇬 flag congo brazzaville congo flag nation country banner congo brazzaville\n🇨🇭 flag switzerland ch flag nation country banner switzerland\n🇨🇮 flag cote d ivoire ivory coast flag nation country banner cote d ivoire\n🇨🇰 flag cook islands cook islands flag nation country banner cook islands\n🇨🇱 flag chile flag nation country banner chile\n🇨🇲 flag cameroon cm flag nation country banner cameroon\n🇨🇳 flag china china chinese prc flag country nation banner china\n🇨🇴 flag colombia co flag nation country banner colombia\n🇨🇵 flag clipperton island\n🇨🇷 flag costa rica costa rica flag nation country banner costa rica\n🇨🇺 flag cuba cu flag nation country banner cuba\n🇨🇻 flag cape verde cabo verde flag nation country banner cape verde\n🇨🇼 flag curacao curaçao flag nation country banner curacao\n🇨🇽 flag christmas island christmas island flag nation country banner christmas island\n🇨🇾 flag cyprus cy flag nation country banner cyprus\n🇨🇿 flag czechia cz flag nation country banner czechia\n🇩🇪 flag germany german nation flag country banner germany\n🇩🇬 flag diego garcia\n🇩🇯 flag djibouti dj flag nation country banner djibouti\n🇩🇰 flag denmark dk flag nation country banner denmark\n🇩🇲 flag dominica dm flag nation country banner dominica\n🇩🇴 flag dominican republic dominican republic flag nation country banner dominican republic\n🇩🇿 flag algeria dz flag nation country banner algeria\n🇪🇦 flag ceuta melilla\n🇪🇨 flag ecuador ec flag nation country banner ecuador\n🇪🇪 flag estonia ee flag nation country banner estonia\n🇪🇬 flag egypt eg flag nation country banner egypt\n🇪🇭 flag western sahara western sahara flag nation country banner western sahara\n🇪🇷 flag eritrea er flag nation country banner eritrea\n🇪🇸 flag spain spain flag nation country banner spain\n🇪🇹 flag ethiopia et flag nation country banner ethiopia\n🇪🇺 flag european union european union flag banner\n🇫🇮 flag finland fi flag nation country banner finland\n🇫🇯 flag fiji fj flag nation country banner fiji\n🇫🇰 flag falkland islands falkland islands malvinas flag nation country banner falkland islands\n🇫🇲 flag micronesia micronesia federated states flag nation country banner micronesia\n🇫🇴 flag faroe islands faroe islands flag nation country banner faroe islands\n🇫🇷 flag france banner flag nation france french country france\n🇬🇦 flag gabon ga flag nation country banner gabon\n🇬🇧 flag united kingdom united kingdom great britain northern ireland flag nation country banner british UK english england union jack united kingdom\n🇬🇩 flag grenada gd flag nation country banner grenada\n🇬🇪 flag georgia ge flag nation country banner georgia\n🇬🇫 flag french guiana french guiana flag nation country banner french guiana\n🇬🇬 flag guernsey gg flag nation country banner guernsey\n🇬🇭 flag ghana gh flag nation country banner ghana\n🇬🇮 flag gibraltar gi flag nation country banner gibraltar\n🇬🇱 flag greenland gl flag nation country banner greenland\n🇬🇲 flag gambia gm flag nation country banner gambia\n🇬🇳 flag guinea gn flag nation country banner guinea\n🇬🇵 flag guadeloupe gp flag nation country banner guadeloupe\n🇬🇶 flag equatorial guinea equatorial gn flag nation country banner equatorial guinea\n🇬🇷 flag greece gr flag nation country banner greece\n🇬🇸 flag south georgia south sandwich islands south georgia sandwich islands flag nation country banner south georgia south sandwich islands\n🇬🇹 flag guatemala gt flag nation country banner guatemala\n🇬🇺 flag guam gu flag nation country banner guam\n🇬🇼 flag guinea bissau gw bissau flag nation country banner guinea bissau\n🇬🇾 flag guyana gy flag nation country banner guyana\n🇭🇰 flag hong kong sar china hong kong flag nation country banner hong kong sar china\n🇭🇲 flag heard mcdonald islands\n🇭🇳 flag honduras hn flag nation country banner honduras\n🇭🇷 flag croatia hr flag nation country banner croatia\n🇭🇹 flag haiti ht flag nation country banner haiti\n🇭🇺 flag hungary hu flag nation country banner hungary\n🇮🇨 flag canary islands canary islands flag nation country banner canary islands\n🇮🇩 flag indonesia flag nation country banner indonesia\n🇮🇪 flag ireland ie flag nation country banner ireland\n🇮🇱 flag israel il flag nation country banner israel\n🇮🇲 flag isle of man isle man flag nation country banner isle of man\n🇮🇳 flag india in flag nation country banner india\n🇮🇴 flag british indian ocean territory british indian ocean territory flag nation country banner british indian ocean territory\n🇮🇶 flag iraq iq flag nation country banner iraq\n🇮🇷 flag iran iran islamic republic flag nation country banner iran\n🇮🇸 flag iceland is flag nation country banner iceland\n🇮🇹 flag italy italy flag nation country banner italy\n🇯🇪 flag jersey je flag nation country banner jersey\n🇯🇲 flag jamaica jm flag nation country banner jamaica\n🇯🇴 flag jordan jo flag nation country banner jordan\n🇯🇵 flag japan japanese nation flag country banner japan\n🇰🇪 flag kenya ke flag nation country banner kenya\n🇰🇬 flag kyrgyzstan kg flag nation country banner kyrgyzstan\n🇰🇭 flag cambodia kh flag nation country banner cambodia\n🇰🇮 flag kiribati ki flag nation country banner kiribati\n🇰🇲 flag comoros km flag nation country banner comoros\n🇰🇳 flag st kitts nevis saint kitts nevis flag nation country banner st kitts nevis\n🇰🇵 flag north korea north korea nation flag country banner north korea\n🇰🇷 flag south korea south korea nation flag country banner south korea\n🇰🇼 flag kuwait kw flag nation country banner kuwait\n🇰🇾 flag cayman islands cayman islands flag nation country banner cayman islands\n🇰🇿 flag kazakhstan kz flag nation country banner kazakhstan\n🇱🇦 flag laos lao democratic republic flag nation country banner laos\n🇱🇧 flag lebanon lb flag nation country banner lebanon\n🇱🇨 flag st lucia saint lucia flag nation country banner st lucia\n🇱🇮 flag liechtenstein li flag nation country banner liechtenstein\n🇱🇰 flag sri lanka sri lanka flag nation country banner sri lanka\n🇱🇷 flag liberia lr flag nation country banner liberia\n🇱🇸 flag lesotho ls flag nation country banner lesotho\n🇱🇹 flag lithuania lt flag nation country banner lithuania\n🇱🇺 flag luxembourg lu flag nation country banner luxembourg\n🇱🇻 flag latvia lv flag nation country banner latvia\n🇱🇾 flag libya ly flag nation country banner libya\n🇲🇦 flag morocco ma flag nation country banner morocco\n🇲🇨 flag monaco mc flag nation country banner monaco\n🇲🇩 flag moldova moldova republic flag nation country banner moldova\n🇲🇪 flag montenegro me flag nation country banner montenegro\n🇲🇫 flag st martin\n🇲🇬 flag madagascar mg flag nation country banner madagascar\n🇲🇭 flag marshall islands marshall islands flag nation country banner marshall islands\n🇲🇰 flag north macedonia macedonia flag nation country banner north macedonia\n🇲🇱 flag mali ml flag nation country banner mali\n🇲🇲 flag myanmar mm flag nation country banner myanmar\n🇲🇳 flag mongolia mn flag nation country banner mongolia\n🇲🇴 flag macao sar china macao flag nation country banner macao sar china\n🇲🇵 flag northern mariana islands northern mariana islands flag nation country banner northern mariana islands\n🇲🇶 flag martinique mq flag nation country banner martinique\n🇲🇷 flag mauritania mr flag nation country banner mauritania\n🇲🇸 flag montserrat ms flag nation country banner montserrat\n🇲🇹 flag malta mt flag nation country banner malta\n🇲🇺 flag mauritius mu flag nation country banner mauritius\n🇲🇻 flag maldives mv flag nation country banner maldives\n🇲🇼 flag malawi mw flag nation country banner malawi\n🇲🇽 flag mexico mx flag nation country banner mexico\n🇲🇾 flag malaysia my flag nation country banner malaysia\n🇲🇿 flag mozambique mz flag nation country banner mozambique\n🇳🇦 flag namibia na flag nation country banner namibia\n🇳🇨 flag new caledonia new caledonia flag nation country banner new caledonia\n🇳🇪 flag niger ne flag nation country banner niger\n🇳🇫 flag norfolk island norfolk island flag nation country banner norfolk island\n🇳🇬 flag nigeria flag nation country banner nigeria\n🇳🇮 flag nicaragua ni flag nation country banner nicaragua\n🇳🇱 flag netherlands nl flag nation country banner netherlands\n🇳🇴 flag norway no flag nation country banner norway\n🇳🇵 flag nepal np flag nation country banner nepal\n🇳🇷 flag nauru nr flag nation country banner nauru\n🇳🇺 flag niue nu flag nation country banner niue\n🇳🇿 flag new zealand new zealand flag nation country banner new zealand\n🇴🇲 flag oman om symbol flag nation country banner oman\n🇵🇦 flag panama pa flag nation country banner panama\n🇵🇪 flag peru pe flag nation country banner peru\n🇵🇫 flag french polynesia french polynesia flag nation country banner french polynesia\n🇵🇬 flag papua new guinea papua new guinea flag nation country banner papua new guinea\n🇵🇭 flag philippines ph flag nation country banner philippines\n🇵🇰 flag pakistan pk flag nation country banner pakistan\n🇵🇱 flag poland pl flag nation country banner poland\n🇵🇲 flag st pierre miquelon saint pierre miquelon flag nation country banner st pierre miquelon\n🇵🇳 flag pitcairn islands pitcairn flag nation country banner pitcairn islands\n🇵🇷 flag puerto rico puerto rico flag nation country banner puerto rico\n🇵🇸 flag palestinian territories palestine palestinian territories flag nation country banner palestinian territories\n🇵🇹 flag portugal pt flag nation country banner portugal\n🇵🇼 flag palau pw flag nation country banner palau\n🇵🇾 flag paraguay py flag nation country banner paraguay\n🇶🇦 flag qatar qa flag nation country banner qatar\n🇷🇪 flag reunion réunion flag nation country banner reunion\n🇷🇴 flag romania ro flag nation country banner romania\n🇷🇸 flag serbia rs flag nation country banner serbia\n🇷🇺 flag russia russian federation flag nation country banner russia\n🇷🇼 flag rwanda rw flag nation country banner rwanda\n🇸🇦 flag saudi arabia flag nation country banner saudi arabia\n🇸🇧 flag solomon islands solomon islands flag nation country banner solomon islands\n🇸🇨 flag seychelles sc flag nation country banner seychelles\n🇸🇩 flag sudan sd flag nation country banner sudan\n🇸🇪 flag sweden se flag nation country banner sweden\n🇸🇬 flag singapore sg flag nation country banner singapore\n🇸🇭 flag st helena saint helena ascension tristan cunha flag nation country banner st helena\n🇸🇮 flag slovenia si flag nation country banner slovenia\n🇸🇯 flag svalbard jan mayen\n🇸🇰 flag slovakia sk flag nation country banner slovakia\n🇸🇱 flag sierra leone sierra leone flag nation country banner sierra leone\n🇸🇲 flag san marino san marino flag nation country banner san marino\n🇸🇳 flag senegal sn flag nation country banner senegal\n🇸🇴 flag somalia so flag nation country banner somalia\n🇸🇷 flag suriname sr flag nation country banner suriname\n🇸🇸 flag south sudan south sd flag nation country banner south sudan\n🇸🇹 flag sao tome principe sao tome principe flag nation country banner sao tome principe\n🇸🇻 flag el salvador el salvador flag nation country banner el salvador\n🇸🇽 flag sint maarten sint maarten dutch flag nation country banner sint maarten\n🇸🇾 flag syria syrian arab republic flag nation country banner syria\n🇸🇿 flag eswatini sz flag nation country banner eswatini\n🇹🇦 flag tristan da cunha\n🇹🇨 flag turks caicos islands turks caicos islands flag nation country banner turks caicos islands\n🇹🇩 flag chad td flag nation country banner chad\n🇹🇫 flag french southern territories french southern territories flag nation country banner french southern territories\n🇹🇬 flag togo tg flag nation country banner togo\n🇹🇭 flag thailand th flag nation country banner thailand\n🇹🇯 flag tajikistan tj flag nation country banner tajikistan\n🇹🇰 flag tokelau tk flag nation country banner tokelau\n🇹🇱 flag timor leste timor leste flag nation country banner timor leste\n🇹🇲 flag turkmenistan flag nation country banner turkmenistan\n🇹🇳 flag tunisia tn flag nation country banner tunisia\n🇹🇴 flag tonga to flag nation country banner tonga\n🇹🇷 flag turkey turkey flag nation country banner turkey\n🇹🇹 flag trinidad tobago trinidad tobago flag nation country banner trinidad tobago\n🇹🇻 flag tuvalu flag nation country banner tuvalu\n🇹🇼 flag taiwan tw flag nation country banner taiwan\n🇹🇿 flag tanzania tanzania united republic flag nation country banner tanzania\n🇺🇦 flag ukraine ua flag nation country banner ukraine\n🇺🇬 flag uganda ug flag nation country banner uganda\n🇺🇲 flag u s outlying islands\n🇺🇳 flag united nations un flag banner\n🇺🇸 flag united states united states america flag nation country banner united states\n🇺🇾 flag uruguay uy flag nation country banner uruguay\n🇺🇿 flag uzbekistan uz flag nation country banner uzbekistan\n🇻🇦 flag vatican city vatican city flag nation country banner vatican city\n🇻🇨 flag st vincent grenadines saint vincent grenadines flag nation country banner st vincent grenadines\n🇻🇪 flag venezuela ve bolivarian republic flag nation country banner venezuela\n🇻🇬 flag british virgin islands british virgin islands bvi flag nation country banner british virgin islands\n🇻🇮 flag u s virgin islands virgin islands us flag nation country banner u s virgin islands\n🇻🇳 flag vietnam viet nam flag nation country banner vietnam\n🇻🇺 flag vanuatu vu flag nation country banner vanuatu\n🇼🇫 flag wallis futuna wallis futuna flag nation country banner wallis futuna\n🇼🇸 flag samoa ws flag nation country banner samoa\n🇽🇰 flag kosovo xk flag nation country banner kosovo\n🇾🇪 flag yemen ye flag nation country banner yemen\n🇾🇹 flag mayotte yt flag nation country banner mayotte\n🇿🇦 flag south africa south africa flag nation country banner south africa\n🇿🇲 flag zambia zm flag nation country banner zambia\n🇿🇼 flag zimbabwe zw flag nation country banner zimbabwe\n🏴󠁧󠁢󠁥󠁮󠁧󠁿 flag england flag english\n🏴󠁧󠁢󠁳󠁣󠁴󠁿 flag scotland flag scottish\n🏴󠁧󠁢󠁷󠁬󠁳󠁿 flag wales flag welsh\n🇨🇶 flag sark flag Sercq\n🥲 smiling face with tear sad cry pretend\n🥸 disguised face pretent brows glasses moustache\n🤌 pinched fingers size tiny small\n🫀 anatomical heart health heartbeat\n🫁 lungs breathe\n🥷 ninja ninjutsu skills japanese\n🤵‍♂️ man in tuxedo formal fashion\n🤵‍♀️ woman in tuxedo formal fashion\n👰‍♂️ man with veil wedding marriage\n👰‍♀️ woman with veil wedding marriage\n👩‍🍼 woman feeding baby birth food\n👨‍🍼 man feeding baby birth food\n🧑‍🍼 person feeding baby birth food\n🧑‍🎄 mx claus christmas\n🫂 people hugging care\n🐈‍⬛ black cat superstition luck\n🦬 bison ox\n🦣 mammoth elephant tusks\n🦫 beaver animal rodent\n🐻‍❄️ polar bear animal arctic\n🦤 dodo animal bird\n🪶 feather bird fly\n🦭 seal animal creature sea\n🪲 beetle insect\n🪳 cockroach insect pests\n🪰 fly insect\n🪱 worm animal\n🪴 potted plant greenery house\n🫐 blueberries fruit\n🫒 olive fruit\n🫑 bell pepper fruit plant\n🫓 flatbread flour food\n🫔 tamale food masa\n🫕 fondue cheese pot food\n🫖 teapot drink hot\n🧋 bubble tea taiwan boba milk tea straw\n🪨 rock stone\n🪵 wood nature timber trunk\n🛖 hut house structure\n🛻 pickup truck car transportation\n🛼 roller skate footwear sports\n🪄 magic wand supernature power\n🪅 pinata mexico candy celebration\n🪆 nesting dolls matryoshka toy\n🪡 sewing needle stitches\n🪢 knot rope scout\n🩴 thong sandal footwear summer\n🪖 military helmet army protection\n🪗 accordion music\n🪘 long drum music\n🪙 coin money currency\n🪃 boomerang weapon\n🪚 carpentry saw cut chop\n🪛 screwdriver tools\n🪝 hook tools\n🪜 ladder tools\n🛗 elevator lift\n🪞 mirror reflection\n🪟 window scenery\n🪠 plunger toilet\n🪤 mouse trap cheese\n🪣 bucket water container\n🪥 toothbrush hygiene dental\n🪦 headstone death rip grave\n🪧 placard announcement\n⚧️ transgender symbol lgbtq\n🏳️‍⚧️ transgender flag lgbtq\n😶‍🌫️ face in clouds shower steam dream\n😮‍💨 face exhaling relieve relief tired sigh\n😵‍💫 face with spiral eyes sick ill confused nauseous nausea\n❤️‍🔥 heart on fire passionate enthusiastic\n❤️‍🩹 mending heart broken heart bandage wounded\n🧔‍♂️ man beard facial hair\n🧔‍♀️ woman beard facial hair\n🫠 melting face hot heat\n🫢 face with open eyes and hand over mouth silence secret shock surprise\n🫣 face with peeking eye scared frightening embarrassing\n🫡 saluting face respect salute\n🫥 dotted line face invisible lonely isolation depression\n🫤 face with diagonal mouth skeptic confuse frustrated indifferent\n🥹 face holding back tears touched gratitude\n🫱 rightwards hand palm offer\n🫲 leftwards hand palm offer\n🫳 palm down hand palm drop\n🫴 palm up hand lift offer demand\n🫰 hand with index finger and thumb crossed heart love money expensive\n🫵 index pointing at the viewer you recruit\n🫶 heart hands love appreciation support\n🫦 biting lip flirt sexy pain worry\n🫅 person with crown royalty power\n🫃 pregnant man baby belly\n🫄 pregnant person baby belly\n🧌 troll mystical monster\n🪸 coral ocean sea reef\n🪷 lotus flower calm meditation\n🪹 empty nest bird\n🪺 nest with eggs bird\n🫘 beans food\n🫗 pouring liquid cup water\n🫙 jar container sauce\n🛝 playground slide fun park\n🛞 wheel car transport\n🛟 ring buoy life saver life preserver\n🪬 hamsa religion protection\n🪩 mirror ball disco dance party\n🪫 low battery drained dead\n🩼 crutch accessibility assist\n🩻 x-ray skeleton medicine\n🫧 bubbles soap fun carbonation sparkling\n🪪 identification card document\n🟰 heavy equals sign math\n¿? question upside down reversed spanish\n← left arrow\n↑ up arrow\n→ right arrow\n↓ down arrow\n←↑→↓ all directions up down left right arrows\nAH↗️HA↘️HA↗️HA↘️HA↗️HA↘️HA↗️HA↘️ pekora arrows hahaha rabbit\n• dot circle separator\n「」 japanese quote square bracket\n¯\\_(ツ)_/¯ shrug idk i dont know\n↵ enter key return\n𝕏  twitter x logo\n👉👈 etou ughhhhhhh shy\n👉👌 put it in imagination perv\n"
  },
  {
    "path": "Scripts/ide",
    "content": "#!/bin/bash\ntmux split-window -h -l 30%\n# tmux select-pane -L #focus the winidow to the left\n# tmux split-window -v -l 30%\n# tmux split-window -h -l 66%\ntmux split-window -v -l 35%\n"
  },
  {
    "path": "Scripts/ignore-power-button",
    "content": "#!/bin/bash\n\n# Disable shutting system down on power button to bind it to power menu afterwards\nsudo sed -i 's/.*HandlePowerKey=.*/HandlePowerKey=ignore/' /etc/systemd/logind.conf\n\n"
  },
  {
    "path": "Scripts/indicator-record",
    "content": "#!/bin/bash\n\nif pgrep -f \"^gpu-screen-recorder\" >/dev/null; then\n  echo '{\"text\": \"󰻂\", \"tooltip\": \"Stop recording\", \"class\": \"active\"}'\nelse\n  echo '{\"text\": \"\"}'\nfi\n"
  },
  {
    "path": "Scripts/kanshi-switch",
    "content": "#!/bin/bash\n\npick=$(gum choose --no-show-help \\\n    \"← Laptop  → Monitor\" \\\n    \"↑ Monitor  ↓ Laptop\" \\\n    \"← Monitor  → Laptop\" \\\n    \"Monitor Only\")\n\n[ -z \"$pick\" ] && exit 0\n\ncase \"$pick\" in\n    \"← Laptop  → Monitor\")   kanshictl switch laptop-left ;;\n    \"↑ Monitor  ↓ Laptop\")   kanshictl switch monitor-top ;;\n    \"← Monitor  → Laptop\")   kanshictl switch monitor-right ;;\n    \"Monitor Only\")           kanshictl switch monitor-only ;;\nesac\n"
  },
  {
    "path": "Scripts/launch-webapp",
    "content": "#!/bin/bash\n\n# Auto-detect VA-API driver for hardware video acceleration\nif lspci | grep -qi \"VGA.*AMD\\|Radeon\"; then\n\texport LIBVA_DRIVER_NAME=radeonsi\nelif lspci | grep -qi \"VGA.*Intel\"; then\n\texport LIBVA_DRIVER_NAME=iHD\nfi\n# NVIDIA uses nvidia-vaapi-driver if installed, no env var needed\n\nbrowser=$(xdg-settings get default-web-browser)\n\ncase $browser in\nbrave-browser* | google-chrome* | microsoft-edge* | opera* | vivaldi* | helium-browser*) ;;\n*) browser=\"brave-browser.desktop\" ;;\nesac\n\nbrowser_exec=$(sed -n 's/^Exec=\\([^ ]*\\).*/\\1/p' /usr/share/applications/$browser 2>/dev/null | head -1)\n\nexec setsid $browser_exec --app=\"$1\" \"${@:2}\"\n"
  },
  {
    "path": "Scripts/open_github",
    "content": "#!/usr/bin/env bash\n\n# Open the current repository in the browser\n\n# Get current tmux pane directory or fallback to pwd\nif [ -n \"$TMUX\" ]; then\n  path=$(tmux display-message -p \"#{pane_current_path}\")\nelse\n  path=$(pwd)\nfi\n\ncd \"$path\" || {\n  echo \"Failed to cd into $path\"\n  exit 1\n}\n\nurl=$(git remote get-url origin 2>/dev/null)\n\nif [[ $url == *github.com* ]]; then\n  if [[ $url == git@* ]]; then\n    url=\"${url#git@}\"\n    url=\"${url/:/\\/}\"\n    url=\"https://$url\"\n  fi\n  xdg-open \"$url\"\nelse\n  echo \"This repository is not hosted on GitHub\"\nfi\n"
  },
  {
    "path": "Scripts/powermenu",
    "content": "#!/bin/bash\n\nscrDir=\"$HOME/.config/hypr/scripts\"\n\noptions=\"Shutdown\\nReboot\\nSuspend\\nLogout\"\n\nchoice=$(echo -e \"$options\" | fuzzel --dmenu)\n\ncase \"$choice\" in\n\"Shutdown\")\n\tsystemctl poweroff\n\t;;\n\"Reboot\")\n\tsystemctl reboot\n\t;;\n\"Suspend\")\n\tsystemctl suspend\n\t;;\n\"Logout\")\n\tloginctl terminate-user $USER\n\t;;\nesac\n"
  },
  {
    "path": "Scripts/restart-app",
    "content": "#!/bin/bash\n\npkill -x $1\nsetsid $1 >/dev/null 2>&1 &\n"
  },
  {
    "path": "Scripts/run-scrcpy",
    "content": "#!/bin/bash\n\n# Cleanup existing sessions\nif pgrep -x \"scrcpy\" > /dev/null; then\n    pkill -9 scrcpy\n    sleep 0.5\nfi\n\n# 2. Check for driver and install if missing\nif ! pacman -Qq v4l2loopback-dkms &>/dev/null; then\n    pkexec pacman -S --needed --noconfirm v4l2loopback-dkms\nfi\n\n# 3. Load driver via Polkit if /dev/video2 is missing\nif [[ ! -c /dev/video2 ]]; then\n    pkexec modprobe v4l2loopback video_nr=2 card_label=\"AndroidCam\" exclusive_caps=1\nfi\n\ncase \"$1\" in\n    webcam)\n        # Using Front Camera\n        scrcpy --video-source=camera --camera-facing=front --camera-size=1920x1080 --v4l2-sink=/dev/video2 --no-playback --no-window &\n        notify-send \"Webcam\" \"Front camera live\" -i camera-webcam\n        ;;\n    mirror)\n        # Mobile Development Mirror\n        scrcpy --max-size=1920 --always-on-top --window-title=\"Android Dev\" --stay-awake &\n        notify-send \"Mirror\" \"Mobile Screen Live\" -i phone\n        ;;\n    *)\n        echo \"Usage: run-scrcpy [webcam|mirror]\"\n        ;;\nesac\n"
  },
  {
    "path": "Scripts/screenrecord",
    "content": "#!/bin/bash\n\n[[ -f ~/.config/user-dirs.dirs ]] && source ~/.config/user-dirs.dirs\nOUTPUT_DIR=\"${XDG_VIDEOS_DIR:-$HOME/Videos}\"\n\nif [[ ! -d \"$OUTPUT_DIR\" ]]; then\n  notify-send \"Screen recording directory does not exist: $OUTPUT_DIR\" -u critical -t 3000\n  exit 1\nfi\n\nDESKTOP_AUDIO=\"false\"\nMICROPHONE_AUDIO=\"false\"\nWEBCAM=\"false\"\nSTOP_RECORDING=\"false\"\n\nfor arg in \"$@\"; do\n  case \"$arg\" in\n  --with-desktop-audio) DESKTOP_AUDIO=\"true\" ;;\n  --with-microphone-audio) MICROPHONE_AUDIO=\"true\" ;;\n  --with-webcam) WEBCAM=\"true\" ;;\n  --stop-recording) STOP_RECORDING=\"true\" ;;\n  esac\ndone\n\ncleanup_webcam() {\n  pkill -f \"WebcamOverlay\" 2>/dev/null\n}\n\nstart_webcam_overlay() {\n  cleanup_webcam\n\n  # Get monitor scale (fallback to 1.0 for Sway)\n  local scale=1.0\n  # Try to get scale from Sway if possible\n  if command -v swaymsg >/dev/null; then\n    scale=$(swaymsg -t get_outputs | jq -r '.[] | select(.focused == true) | .scale // 1.0' | head -1)\n  fi\n\n  # Target width (base 360px, scaled to monitor)\n  local target_width=$(awk \"BEGIN {printf \\\"%.0f\\\", 360 * $scale}\")\n\n  # Try preferred 16:9 resolutions in order, use first available\n  local preferred_resolutions=(\"640x360\" \"1280x720\" \"1920x1080\")\n  local video_size_arg=\"\"\n  local available_formats=$(v4l2-ctl --list-formats-ext -d /dev/video0 2>/dev/null)\n\n  for resolution in \"${preferred_resolutions[@]}\"; do\n    if echo \"$available_formats\" | grep -q \"$resolution\"; then\n      video_size_arg=\"-video_size $resolution\"\n      break\n    fi\n  done\n\n  ffplay -f v4l2 $video_size_arg -framerate 30 /dev/video0 \\\n    -vf \"scale=${target_width}:-1\" \\\n    -window_title \"WebcamOverlay\" \\\n    -noborder \\\n    -fflags nobuffer -flags low_delay \\\n    -probesize 32 -analyzeduration 0 \\\n    -loglevel quiet &\n  sleep 1\n}\n\nstart_screenrecording() {\n  local filename=\"$OUTPUT_DIR/screenrecording-$(date +'%Y-%m-%d_%H-%M-%S').mp4\"\n  local audio_devices=\"\"\n  local audio_args=\"\"\n\n  [[ \"$DESKTOP_AUDIO\" == \"true\" ]] && audio_devices+=\"default_output\"\n\n  if [[ \"$MICROPHONE_AUDIO\" == \"true\" ]]; then\n    # Use Easy Effects source if available (for mono to stereo conversion), otherwise fallback to default input\n    local mic_source=\"default_input\"\n    if pactl list sources short | grep -q \"easyeffects_source\"; then\n      mic_source=\"easyeffects_source\"\n    fi\n    \n    [[ -n \"$audio_devices\" ]] && audio_devices+=\"|\"\n    audio_devices+=\"$mic_source\"\n  fi\n\n  [[ -n \"$audio_devices\" ]] && audio_args+=\"-a $audio_devices\"\n\n  gpu-screen-recorder -w portal -f 60 -fallback-cpu-encoding yes -o \"$filename\" $audio_args -ac aac &\n  toggle_screenrecording_indicator\n}\n\nstop_screenrecording() {\n  pkill -SIGINT -f \"^gpu-screen-recorder\" # SIGINT required to save video properly\n\n  # Wait a maximum of 5 seconds to finish before hard killing\n  local count=0\n  while pgrep -f \"^gpu-screen-recorder\" >/dev/null && [ $count -lt 50 ]; do\n    sleep 0.1\n    count=$((count + 1))\n  done\n\n  if pgrep -f \"^gpu-screen-recorder\" >/dev/null; then\n    pkill -9 -f \"^gpu-screen-recorder\"\n    cleanup_webcam\n    notify-send \"Screen recording error\" \"Recording process had to be force-killed. Video may be corrupted.\" -u critical -t 5000\n  else\n    cleanup_webcam\n    notify-send \"Screen recording saved to $OUTPUT_DIR\" -t 2000\n  fi\n  toggle_screenrecording_indicator\n}\n\ntoggle_screenrecording_indicator() {\n  pkill -RTMIN+8 waybar\n}\n\nscreenrecording_active() {\n  pgrep -f \"^gpu-screen-recorder\" >/dev/null || pgrep -f \"WebcamOverlay\" >/dev/null\n}\n\nif screenrecording_active; then\n  if pgrep -f \"WebcamOverlay\" >/dev/null && ! pgrep -f \"^gpu-screen-recorder\" >/dev/null; then\n    cleanup_webcam\n  else\n    stop_screenrecording\n  fi\nelif [[ \"$STOP_RECORDING\" == \"false\" ]]; then\n  [[ \"$WEBCAM\" == \"true\" ]] && start_webcam_overlay\n\n  start_screenrecording || cleanup_webcam\nelse\n  exit 1\nfi\n"
  },
  {
    "path": "Scripts/screenshot",
    "content": "#!/bin/bash\n\nOUTPUT_DIR=\"$HOME/Pictures/Screenshots\"\nmkdir -p \"$OUTPUT_DIR\"\n\npkill -0 slurp 2>/dev/null && exit 0\n\n# Detect compositor\nif pgrep -x niri >/dev/null; then\n    COMP=niri\nelif pgrep -x sway >/dev/null; then\n    COMP=sway\nelse\n    exit 1\nfi\n\nget_output() {\n    case \"$COMP\" in\n        niri) niri msg -j outputs | jq -r '.[] | select(.is_focused == true) | \"\\(.logical.x),\\(.logical.y) \\(.logical.width)x\\(.logical.height)\"' ;;\n        sway) swaymsg -t get_outputs | jq -r '.[] | select(.focused == true) | \"\\(.rect.x),\\(.rect.y) \\(.rect.width)x\\(.rect.height)\"' ;;\n    esac\n}\n\nMODE=\"${1:-smart}\"\n\nif [[ \"$MODE\" == fullscreen ]]; then\n    grim -g \"$(get_output)\" - | wl-copy\n    notify-send \"Screenshot captured\"\nelse\n    selection=\"$(case \"$COMP\" in\n        niri) niri msg -j outputs | jq -r '.[] | \"\\(.logical.x),\\(.logical.y) \\(.logical.width)x\\(.logical.height)\"'\n              niri msg -j windows | jq -r '.[] | select(.logical != null) | \"\\(.logical.x),\\(.logical.y) \\(.logical.width)x\\(.logical.height)\"' ;;\n        sway) swaymsg -t get_outputs | jq -r '.[] | \"\\(.rect.x),\\(.rect.y) \\(.rect.width)x\\(.rect.height)\"'\n              swaymsg -t get_tree | jq -r '.. | select(.type?) | select(.focused == true) | \"\\(.rect.x),\\(.rect.y) \\(.rect.width)x\\(.rect.height)\"' ;;\n    esac | slurp)\"\n\n    [[ -z \"$selection\" ]] && exit 0\n\n    grim -g \"$selection\" - | satty \\\n        --filename - \\\n        --output-filename \"$OUTPUT_DIR/screenshot-$(date +'%Y-%m-%d_%H-%M-%S').png\" \\\n        --early-exit \\\n        --actions-on-enter save-to-clipboard \\\n        --save-after-copy \\\n        --copy-command 'wl-copy'\nfi\n"
  },
  {
    "path": "Scripts/sessionX",
    "content": "#!/bin/bash\n# quick tmux session picker with fzf\n\ndirs=(\n\t\"$HOME/Downloads\"\n\t\"$HOME/Documents\"\n\t\"$HOME/Testing-repo\"\n\t\"$HOME/Git\"\n\t\"$HOME/Projects\"\n\t\"$HOME/dotfiles\"\n\t\"$HOME/Projects/flutter_projects\"\n)\n\n# these are added as-is, no subdir scan\nextras=(\n\t\"$HOME/Scripts\"\n\t\"$HOME/Projects/flutter_projects\"\n)\n\nall=()\nfor d in \"${dirs[@]}\"; do\n\tmapfile -t found < <(fd --type dir --max-depth 1 --full-path \"\" \"$d\" 2>/dev/null)\n\tall+=(\"${found[@]}\")\ndone\nall+=(\"${extras[@]}\")\n\nif [[ $# -eq 1 ]]; then\n\tselected=$1\nelse\n\tselected=$(printf '%s\\n' \"${all[@]}\" | sed \"s|^$HOME/||\" | fzf)\n\t[[ -n $selected ]] && selected=\"$HOME/$selected\"\nfi\n\n[[ -z $selected ]] && exit 0\n\nname=$(basename \"$selected\" | tr '.' '_')\n\n# tmux not running\nif [[ -z $TMUX ]] && ! pgrep -q tmux; then\n\ttmux new-session -s \"$name\" -c \"$selected\"\n\texit 0\nfi\n\n# create session if needed\ntmux has-session -t \"$name\" 2>/dev/null || tmux new-session -ds \"$name\" -c \"$selected\"\n\n# attach or switch\ntmux switch-client -t \"$name\" 2>/dev/null || tmux attach -t \"$name\"\n"
  },
  {
    "path": "Scripts/set-wallpaper",
    "content": "#!/bin/bash\n\nWALLPAPER_DIR=\"$HOME/Pictures/Wallpapers/\"\n\ncase \"${1:-}\" in\nrandom)\n\twallpaper=$(find \"$WALLPAPER_DIR\" -type f \\( -iname \"*.jpg\" -o -iname \"*.png\" -o -iname \"*.jpeg\" -o -iname \"*.webp\" \\) | shuf -n 1)\n\t[[ -z \"$wallpaper\" ]] && exit 1\n\tpkill swaybg 2>/dev/null\n\tswaybg -i \"$wallpaper\" -m fill &\n\tnotify-send \"Wallpaper\" \"$(basename \"$wallpaper\")\"\n\t;;\nchoose)\n\tselection=$(find \"$WALLPAPER_DIR\" -type f \\( -iname \"*.jpg\" -o -iname \"*.png\" -o -iname \"*.jpeg\" -o -iname \"*.webp\" \\) -printf \"%f\\n\" | sort | fuzzel --dmenu --prompt=\"Wallpaper: \")\n\t[[ -z \"$selection\" ]] && exit 0\n\twallpaper=$(find \"$WALLPAPER_DIR\" -name \"$selection\" -type f | head -1)\n\t[[ -z \"$wallpaper\" ]] && exit 1\n\tpkill swaybg 2>/dev/null\n\tswaybg -i \"$wallpaper\" -m fill &\n\tnotify-send \"Wallpaper\" \"$selection\"\n\t;;\nesac\n"
  },
  {
    "path": "Scripts/set-wallpaper-new",
    "content": "#!/bin/bash\n\nWALLPAPER_DIR=\"$HOME/Pictures/Wallpapers/\"\nWALLPAPER_VERTICAL=\"$WALLPAPER_DIR/Vertical-wallpapers/\"\n\nedp_wallpaper=$(find \"$WALLPAPER_DIR\" -type f \\( -iname \"*.jpg\" -o -iname \"*.png\" -o -iname \"*.jpeg\" -o -iname \"*.webp\" \\) ! -path \"*/Vertical-wallpapers/*\" | shuf -n 1)\nhdmi_wallpaper=$(find \"$WALLPAPER_VERTICAL\" -type f \\( -iname \"*.jpg\" -o -iname \"*.png\" -o -iname \"*.jpeg\" -o -iname \"*.webp\" \\) | shuf -n 1)\n\nif [[ -n \"$edp_wallpaper\" ]]; then\n\tpkill swaybg 2>/dev/null\n\tswaybg -o eDP-1 -i \"$edp_wallpaper\" -m fill &\nfi\n\nif [[ -n \"$hdmi_wallpaper\" ]]; then\n\tswaybg -o HDMI-A-1 -i \"$hdmi_wallpaper\" -m fill &\nfi\n\n[[ -n \"$edp_wallpaper\" ]] && notify-send \"Wallpaper (EDP)\" \"$(basename \"$edp_wallpaper\")\"\n[[ -n \"$hdmi_wallpaper\" ]] && notify-send \"Wallpaper (HDMI)\" \"$(basename \"$hdmi_wallpaper\")\"\n"
  },
  {
    "path": "Scripts/setup-dns",
    "content": "#!/bin/bash\n\nif [[ -z $1 ]]; then\n  dns=$(gum choose --height 5 --header \"Select DNS provider\" Cloudflare DHCP Custom)\nelse\n  dns=$1\nfi\n\ncase \"$dns\" in\nCloudflare)\n  sudo tee /etc/systemd/resolved.conf >/dev/null <<'EOF'\n[Resolve]\nDNS=1.1.1.1#cloudflare-dns.com 1.0.0.1#cloudflare-dns.com\nFallbackDNS=9.9.9.9 149.112.112.112\nDNSOverTLS=opportunistic\nEOF\n\n  # Ensure network interfaces don't override our DNS settings\n  for file in /etc/systemd/network/*.network; do\n    [[ -f \"$file\" ]] || continue\n    if ! grep -q \"^\\[DHCPv4\\]\" \"$file\"; then continue; fi\n\n    # Add UseDNS=no to DHCPv4 section if not present\n    if ! sed -n '/^\\[DHCPv4\\]/,/^\\[/p' \"$file\" | grep -q \"^UseDNS=\"; then\n      sudo sed -i '/^\\[DHCPv4\\]/a UseDNS=no' \"$file\"\n    fi\n\n    # Add UseDNS=no to IPv6AcceptRA section if present\n    if grep -q \"^\\[IPv6AcceptRA\\]\" \"$file\" && ! sed -n '/^\\[IPv6AcceptRA\\]/,/^\\[/p' \"$file\" | grep -q \"^UseDNS=\"; then\n      sudo sed -i '/^\\[IPv6AcceptRA\\]/a UseDNS=no' \"$file\"\n    fi\n  done\n\n  sudo systemctl restart systemd-networkd systemd-resolved\n  ;;\n\nDHCP)\n  sudo tee /etc/systemd/resolved.conf >/dev/null <<'EOF'\n[Resolve]\nDNS=\nFallbackDNS=\nDNSOverTLS=no\nEOF\n\n  # Allow network interfaces to use DHCP DNS\n  for file in /etc/systemd/network/*.network; do\n    [[ -f \"$file\" ]] || continue\n    sudo sed -i '/^UseDNS=no/d' \"$file\"\n  done\n\n  sudo systemctl restart systemd-networkd systemd-resolved\n  ;;\n\nCustom)\n  echo \"Enter your DNS servers (space-separated, e.g. '192.168.1.1 1.1.1.1'):\"\n  read -r dns_servers\n\n  if [[ -z \"$dns_servers\" ]]; then\n    echo \"Error: No DNS servers provided.\"\n    exit 1\n  fi\n\n  sudo tee /etc/systemd/resolved.conf >/dev/null <<EOF\n[Resolve]\nDNS=$dns_servers\nFallbackDNS=9.9.9.9 149.112.112.112\nEOF\n\n  # Ensure network interfaces don't override our DNS settings\n  for file in /etc/systemd/network/*.network; do\n    [[ -f \"$file\" ]] || continue\n    if ! grep -q \"^\\[DHCPv4\\]\" \"$file\"; then continue; fi\n\n    # Add UseDNS=no to DHCPv4 section if not present\n    if ! sed -n '/^\\[DHCPv4\\]/,/^\\[/p' \"$file\" | grep -q \"^UseDNS=\"; then\n      sudo sed -i '/^\\[DHCPv4\\]/a UseDNS=no' \"$file\"\n    fi\n\n    # Add UseDNS=no to IPv6AcceptRA section if present\n    if grep -q \"^\\[IPv6AcceptRA\\]\" \"$file\" && ! sed -n '/^\\[IPv6AcceptRA\\]/,/^\\[/p' \"$file\" | grep -q \"^UseDNS=\"; then\n      sudo sed -i '/^\\[IPv6AcceptRA\\]/a UseDNS=no' \"$file\"\n    fi\n  done\n\n  sudo systemctl restart systemd-networkd systemd-resolved\n\n  ;;\nesac\n"
  },
  {
    "path": "Scripts/setup-greetd",
    "content": "#!/bin/bash\n\necho \"Installing greetd and tuigreet...\"\nsudo pacman -S --needed greetd greetd-tuigreet\n\necho \"Configuring greetd to use tuigreet...\"\nsudo tee /etc/greetd/config.toml > /dev/null << 'EOF'\n[terminal]\n# The VT to run the greeter on. Can be \"next\", \"current\" and a number\n# designating the VT.\nvt = 1\n\n[initial_session]\ncommand = \"sway\"\nuser = \"vyrx\"\n\n[default_session]\n# -r: remembers the last logged in username\n# --remember-session: remembers the last selected DE/WM session\n# --asterisks: shows stars when typing password\n# --time: shows the current time\n# --cmd sway: uses sway as the default session if no previous session is remembered\ncommand = \"tuigreet -r --remember-session --asterisks --time --cmd sway\"\nuser = \"greeter\"\nEOF\n\n# Ensure the greeter user has permissions to write state for remember-session\nsudo usermod -aG video greeter 2>/dev/null\n\necho \"Enabling and starting greetd service...\"\nsudo systemctl enable greetd.service\nsudo systemctl restart greetd.service\n\necho \"Done! tuigreet is now configured to remember your last username and session.\"\n"
  },
  {
    "path": "Scripts/toggle-output",
    "content": "#!/bin/bash\n# Toggle monitor on/off\n\nOUTPUT=\"$1\"\nSTATE_FILE=\"/tmp/output-${OUTPUT}.state\"\n\n# Only check actual compositor processes\nif pgrep -x sway >/dev/null; then\n    COMP=sway\nelif pgrep -x niri >/dev/null; then\n    COMP=niri\nelse\n    exit 1\nfi\n\n# Check if currently off\nif [ -f \"$STATE_FILE\" ]; then\n    rm -f \"$STATE_FILE\"\n    state=on\nelse\n    touch \"$STATE_FILE\"\n    state=off\nfi\n\n# Apply based on compositor (different syntax!)\ncase \"$COMP\" in\n    niri) niri msg output \"$OUTPUT\" \"$state\" ;;\n    sway) \n        if [ \"$state\" = on ]; then\n            swaymsg output \"$OUTPUT\" enable\n        else\n            swaymsg output \"$OUTPUT\" disable\n        fi\n        ;;\nesac\n"
  },
  {
    "path": "Scripts/toggle-terminal-transparency",
    "content": "#!/bin/bash\n\n# Toggle terminal transparency between 1 and 0.8\n# Works for: Kitty, Ghostty, Alacritty\n\nKITTY=\"$HOME/.config/kitty/kitty.conf\"\nGHOSTTY=\"$HOME/.config/ghostty/config\"\nALACRITTY=\"$HOME/.config/alacritty/alacritty.toml\"\n\n# Kitty: background_opacity 1 <-> 0.8\nif [ -f \"$KITTY\" ]; then\n\tif grep -q \"background_opacity 1\" \"$KITTY\"; then\n\t\tsed -i \"s/background_opacity 1/background_opacity 0.95/\" \"$KITTY\"\n\telse\n\t\tsed -i \"s/background_opacity 0.95/background_opacity 1/\" \"$KITTY\"\n\tfi\n\tpkill -SIGUSR1 kitty\nfi\n\n# Ghostty: background-opacity = 1 <-> 0.8\nif [ -f \"$GHOSTTY\" ]; then\n\tif grep -q \"background-opacity = 1\" \"$GHOSTTY\"; then\n\t\tsed -i \"s/background-opacity = 1/background-opacity = 0.95/\" \"$GHOSTTY\"\n\telse\n\t\tsed -i \"s/background-opacity = 0.95/background-opacity = 1/\" \"$GHOSTTY\"\n\tfi\n\tpkill -SIGUSR2 ghostty\nfi\n\n# Alacritty: opacity = 1 <-> 0.8\nif [ -f \"$ALACRITTY\" ]; then\n\tif grep -q \"opacity = 1\" \"$ALACRITTY\"; then\n\t\tsed -i \"s/opacity = 1/opacity = 0.8/\" \"$ALACRITTY\"\n\telse\n\t\tsed -i \"s/opacity = 0.8/opacity = 1/\" \"$ALACRITTY\"\n\tfi\nfi\n"
  },
  {
    "path": "Scripts/toggle-waybar",
    "content": "#!/bin/bash\n\nif pgrep -x waybar >/dev/null; then\n\tpkill -x waybar\nelse\n\twaybar >/dev/null 2>&1 &\nfi\n"
  },
  {
    "path": "Scripts/toggle-wlsunset",
    "content": "#!/bin/bash\n\n# Toggle wlsunset (nightlight)\nif pgrep -x \"wlsunset\" > /dev/null; then\n    pkill wlsunset\n    notify-send \"Nightlight\" \"Off\" -a \"wlsunset\"\nelse\n    wlsunset &\n    notify-send \"Nightlight\" \"On\" -a \"wlsunset\"\nfi"
  },
  {
    "path": "Scripts/webapp-install",
    "content": "#!/bin/bash\n# launch_webapp=\"$HOME/dotfiles/scripts/launch-webapp\"\nif [ \"$#\" -lt 3 ]; then\n  echo -e \"\\e[32mLet's create a new web app.\\n\\e[0m\"\n  APP_NAME=$(gum input --prompt \"Name> \" --placeholder \"My favorite web app\")\n  APP_URL=$(gum input --prompt \"URL> \" --placeholder \"https://example.com\")\n  ICON_REF=$(gum input --prompt \"Icon URL> \" --placeholder \"See https://dashboardicons.com (must use PNG!)\")\n  CUSTOM_EXEC=\"\"\n  MIME_TYPES=\"\"\n  INTERACTIVE_MODE=true\nelse\n  APP_NAME=\"$1\"\n  APP_URL=\"$2\"\n  ICON_REF=\"$3\"\n  CUSTOM_EXEC=\"$4\" # Optional custom exec command\n  MIME_TYPES=\"$5\"  # Optional mime types\n  INTERACTIVE_MODE=false\nfi\n\n# Ensure valid execution\nif [[ -z \"$APP_NAME\" || -z \"$APP_URL\" || -z \"$ICON_REF\" ]]; then\n  echo \"You must set app name, app URL, and icon URL!\"\n  exit 1\nfi\n\n# Refer to local icon or fetch remotely from URL\nICON_DIR=\"$HOME/.local/share/applications/icons\"\nmkdir -p \"$ICON_DIR\"\nif [[ $ICON_REF =~ ^https?:// ]]; then\n  ICON_PATH=\"$ICON_DIR/$APP_NAME.png\"\n  if curl -sL -o \"$ICON_PATH\" \"$ICON_REF\"; then\n    ICON_PATH=\"$ICON_DIR/$APP_NAME.png\"\n  else\n    echo \"Error: Failed to download icon.\"\n    exit 1\n  fi\nelse\n  ICON_PATH=\"$ICON_DIR/$ICON_REF\"\nfi\n\n# Use custom exec if provided, otherwise default behavior\nif [[ -n $CUSTOM_EXEC ]]; then\n  EXEC_COMMAND=\"$CUSTOM_EXEC\"\nelse\n  EXEC_COMMAND=\"$HOME/Scripts/launch-webapp $APP_URL\"\nfi\n\n# Create application .desktop file\nDESKTOP_FILE=\"$HOME/.local/share/applications/$APP_NAME.desktop\"\n\ncat >\"$DESKTOP_FILE\" <<EOF\n[Desktop Entry]\nVersion=1.0\nName=$APP_NAME\nComment=$APP_NAME\nExec=$EXEC_COMMAND\nTerminal=false\nType=Application\nIcon=$ICON_PATH\nCategories=WebApp;\nStartupNotify=true\nX-WebApp=true\nEOF\n\n# Add mime types if provided\nif [[ -n $MIME_TYPES ]]; then\n  echo \"MimeType=$MIME_TYPES\" >>\"$DESKTOP_FILE\"\nfi\n\nchmod +x \"$DESKTOP_FILE\"\n\nif [[ $INTERACTIVE_MODE == true ]]; then\n  echo -e \"You can now find $APP_NAME using the app launcher (SUPER + SPACE)\\n\"\nfi\n"
  },
  {
    "path": "Scripts/webapp-remove",
    "content": "#!/bin/bash\n\nAPPS_DIR=\"$HOME/.local/share/applications\"\nICON_DIR=\"$APPS_DIR/icons\"\n\n# Find only webapps (desktop files with X-WebApp=true or using launch-webapp)\nAPP_NAMES=()\nfor file in \"$APPS_DIR\"/*.desktop; do\n  [[ -f \"$file\" ]] || continue\n  if grep -q \"X-WebApp=true\\|launch-webapp\" \"$file\"; then\n    APP_NAMES+=(\"$(basename \"$file\" .desktop)\")\n  fi\ndone\n\nif [[ ${#APP_NAMES[@]} -eq 0 ]]; then\n  echo \"No webapps found.\"\n  exit 0\nfi\n\n# Let user select apps to remove\nSELECTED=$(printf '%s\\n' \"${APP_NAMES[@]}\" | gum choose --no-limit \\\n  --cursor=\"› \" \\\n  --cursor-prefix=\"○ \" \\\n  --selected-prefix=\"● \" \\\n  --unselected-prefix=\"○ \" \\\n  --header \"Select webapps to remove (x toggle • enter submit)\")\n\nif [[ -z \"$SELECTED\" ]]; then\n  echo \"No apps selected.\"\n  exit 0\nfi\n\n# Remove selected apps\nwhile IFS= read -r app; do\n  rm -f \"$APPS_DIR/$app.desktop\"\n  rm -f \"$ICON_DIR/$app.png\"\n  echo \"Removed: $app\"\ndone <<< \"$SELECTED\"\n\necho -e \"\\nRemoval complete!\"\n"
  },
  {
    "path": "Scripts/webapps",
    "content": "#!/bin/bash\n#|---/ /+---------------------+---/ /|#\n#|--/ /-| Symphony Dotfiles   |--/ /-|#\n#|-/ /--| Web Apps Installer  |-/ /--|#\n#|/ /---+---------------------+/ /---|#\n\n# Predefined webapps: \"Name|URL|Icon\"\n# Icons from https://cdn.jsdelivr.net/gh/walkxcode/dashboard-icons/png/\nWEBAPPS=(\n\t\"GitHub|https://github.com/|https://cdn.jsdelivr.net/gh/walkxcode/dashboard-icons/png/github.png\"\n\t\"YouTube|https://youtube.com/|https://cdn.jsdelivr.net/gh/walkxcode/dashboard-icons/png/youtube.png\"\n\t\"Reddit|https://www.reddit.com/|https://cdn.jsdelivr.net/gh/homarr-labs/dashboard-icons/png/reddit.png\"\n\t\"WhatsApp|https://web.whatsapp.com/|https://cdn.jsdelivr.net/gh/walkxcode/dashboard-icons/png/whatsapp.png\"\n\t\"ChatGPT|https://chatgpt.com/|https://cdn.jsdelivr.net/gh/walkxcode/dashboard-icons/png/chatgpt.png\"\n\t\"Perplexity|https://perplexity.ai/|https://cdn.jsdelivr.net/gh/homarr-labs/dashboard-icons/png/perplexity.png\"\n\t\"Gmail|https://mail.google.com/|https://cdn.jsdelivr.net/gh/walkxcode/dashboard-icons/png/gmail.png\"\n\t\"Google Photos|https://photos.google.com/|https://cdn.jsdelivr.net/gh/walkxcode/dashboard-icons/png/google-photos.png\"\n\t\"Google Meet|https://meet.google.com/|https://cdn.jsdelivr.net/gh/walkxcode/dashboard-icons/png/google-meet.png\"\n\t\"Google Drive|https://drive.google.com/|https://cdn.jsdelivr.net/gh/homarr-labs/dashboard-icons/png/google-drive.png\"\n\t\"Todoist|https://todoist.com/|https://cdn.jsdelivr.net/gh/homarr-labs/dashboard-icons/png/todoist.png\"\n\t\"Calendar|https://calendar.google.com/|https://cdn.jsdelivr.net/gh/homarr-labs/dashboard-icons/png/google-calendar.png\"\n\t\"LinkedIn|https://www.linkedin.com/|https://cdn.jsdelivr.net/gh/walkxcode/dashboard-icons/png/linkedin.png\"\n\t\"Pinterest|https://www.pinterest.com/|https://cdn.jsdelivr.net/gh/homarr-labs/dashboard-icons/png/pinterest.png\"\n\t\"Figma|https://figma.com/|https://cdn.jsdelivr.net/gh/walkxcode/dashboard-icons/png/figma.png\"\n\t\"Notion|https://notion.so/|https://cdn.jsdelivr.net/gh/walkxcode/dashboard-icons/png/notion.png\"\n\t\"Twitter|https://x.com/|https://cdn.jsdelivr.net/gh/walkxcode/dashboard-icons/png/twitter.png\"\n\t\"DownGit|https://downgit.github.io/#/home|https://cdn.jsdelivr.net/gh/homarr-labs/dashboard-icons/png/synology-download-station.png\"\n\t\"Wallhaven|https://wallhaven.cc/|https://cdn.jsdelivr.net/gh/homarr-labs/dashboard-icons/png/ward.png\"\n\t\"Gemini|https://gemini.google.com/app|https://cdn.jsdelivr.net/gh/homarr-labs/dashboard-icons/png/google-gemini.png\"\n\t\"Qobuz|https://www.qobuz.com/us-en/shop|https://cdn.jsdelivr.net/gh/homarr-labs/dashboard-icons/png/questdb.png\"\n\t\"Excalidraw|https://excalidraw.com/|https://cdn.jsdelivr.net/gh/homarr-labs/dashboard-icons/png/excalidraw.png\"\n\t\"Discord|https://discord.com/channels/@me|https://cdn.jsdelivr.net/gh/homarr-labs/dashboard-icons/png/discord.png\"\n\t\"Spotify|https://open.spotify.com/|https://cdn.jsdelivr.net/gh/homarr-labs/dashboard-icons/png/spotify.png\"\n\t\"Hotstar|https://www.hotstar.com/in/home|https://cdn.jsdelivr.net/gh/homarr-labs/dashboard-icons/png/jiohotstar.png\"\n\t\"Netflix|https://www.netflix.com/|https://cdn.jsdelivr.net/gh/homarr-labs/dashboard-icons/png/netflix.png\"\n\t\"Lucida|https://lucida.to/|https://cdn.jsdelivr.net/gh/homarr-labs/dashboard-icons/png/deezer.png\"\n\t\"Aur Repository|https://aur.archlinux.org/|https://cdn.jsdelivr.net/gh/homarr-labs/dashboard-icons/png/arch-linux.png\"\n\t\"Movie|https://www.1flex.nl/|https://cdn.jsdelivr.net/gh/homarr-labs/dashboard-icons/png/synology-video-station.png\"\n\t\"Cohort|https://app.100xdevs.com/courses/14/|https://cdn.jsdelivr.net/gh/homarr-labs/dashboard-icons/png/google-contacts.png\"\n\t\"Udemy|https://www.udemy.com/course/learn-flutter-dart-to-build-ios-android-apps/learn/lecture/37213680?start=15#overview|https://cdn.jsdelivr.net/gh/homarr-labs/dashboard-icons/png/udemy-light.png\"\n\t\"LastFm|https://www.last.fm|https://cdn.jsdelivr.net/gh/homarr-labs/dashboard-icons/png/multi-scrobbler.png\"\n\t\"Dropbox|https://www.dropbox.com|https://cdn.jsdelivr.net/gh/homarr-labs/dashboard-icons/png/dropbox.png\"\n\t\"notebook-lm|https://notebooklm.google.com/?icid=home_maincta/|https://cdn.jsdelivr.net/gh/homarr-labs/dashboard-icons/png/notebook-lm.png\"\n\t\"dashboard-icons|https://dashboardicons.com//|https://cdn.jsdelivr.net/gh/homarr-labs/dashboard-icons/png/dashboard-icons.png\"\n\t\"Monkey Type|https://monkeytype.com/|https://cdn.jsdelivr.net/gh/homarr-labs/dashboard-icons/png/monkeytype.png\"\n\t\"YouTube Music|https://music.youtube.com/|https://cdn.jsdelivr.net/gh/homarr-labs/dashboard-icons/png/youtube-music.png\"\n\t\"Spotify|https://open.spotify.com/|https://cdn.jsdelivr.net/gh/homarr-labs/dashboard-icons/png/spotify.png\"\n\t\"Chess|https://www.chess.com/|https://cdn.jsdelivr.net/gh/homarr-labs/dashboard-icons/png/chess.png\"\n\n)\n\nWEBAPP_INSTALL=\"$HOME/Scripts/webapp-install\"\n\ninstall_webapps() {\n\t# Build selection list\n\tlocal options=()\n\tfor entry in \"${WEBAPPS[@]}\"; do\n\t\tIFS='|' read -r name url icon <<<\"$entry\"\n\t\toptions+=(\"$name\")\n\tdone\n\n\techo -e \"\\n\\033[1mSelect web apps to install:\\033[0m\\n\"\n\n\tselected=$(printf '%s\\n' \"${options[@]}\" | gum choose --no-limit \\\n\t\t--cursor=\"› \" \\\n\t\t--cursor-prefix=\"○ \" \\\n\t\t--selected-prefix=\"● \" \\\n\t\t--unselected-prefix=\"○ \" \\\n\t\t--header \"Space to select, Enter to confirm\") || true\n\n\t[[ -z \"$selected\" ]] && {\n\t\techo \"No app selected.\"\n\t\treturn\n\t}\n\n\t# Install selected apps\n\twhile IFS= read -r choice; do\n\t\t# Remove suffix if present (single selection)\n\t\tname=\"${choice% (installed)}\"\n\n\t\t# Find the entry for selected app\n\t\tfor entry in \"${WEBAPPS[@]}\"; do\n\t\t\tIFS='|' read -r n url icon <<<\"$entry\"\n\t\t\tif [[ \"$n\" == \"$name\" ]]; then\n\t\t\t\techo \"Installing $name...\"\n\t\t\t\t\"$WEBAPP_INSTALL\" \"$name\" \"$url\" \"$icon\" &&\n\t\t\t\t\techo -e \"\\033[32m✓\\033[0m $name\" ||\n\t\t\t\t\techo -e \"\\033[31m✗\\033[0m $name (failed)\"\n\t\t\t\tbreak\n\t\t\tfi\n\t\tdone\n\tdone <<<\"$selected\"\n\n\techo -e \"\\nDone! Apps available in launcher (Mod + Space)\"\n}\n\n# Run if executed directly\n[[ \"${BASH_SOURCE[0]}\" == \"${0}\" ]] && install_webapps\n"
  }
]