gitextract_9l3ptfwt/ ├── .config/ │ ├── ags/ │ │ ├── .eslintignore │ │ ├── .eslintrc.js │ │ ├── .github/ │ │ │ ├── ISSUE_TEMPLATE/ │ │ │ │ ├── bug_report.md │ │ │ │ └── feature_request.md │ │ │ └── workflows/ │ │ │ └── ci.yml │ │ ├── .gitignore │ │ ├── .gitmodules │ │ ├── .prettierignore │ │ ├── .prettierrc │ │ ├── LICENSE │ │ ├── README.md │ │ ├── config.js │ │ ├── customModules/ │ │ │ ├── PollVar.ts │ │ │ ├── config.ts │ │ │ ├── cpu/ │ │ │ │ ├── computeCPU.ts │ │ │ │ └── index.ts │ │ │ ├── kblayout/ │ │ │ │ ├── getLayout.ts │ │ │ │ ├── index.ts │ │ │ │ └── layouts.ts │ │ │ ├── module.ts │ │ │ ├── netstat/ │ │ │ │ ├── computeNetwork.ts │ │ │ │ └── index.ts │ │ │ ├── power/ │ │ │ │ └── index.ts │ │ │ ├── ram/ │ │ │ │ ├── computeRam.ts │ │ │ │ └── index.ts │ │ │ ├── storage/ │ │ │ │ ├── computeStorage.ts │ │ │ │ └── index.ts │ │ │ ├── submap/ │ │ │ │ ├── helpers.ts │ │ │ │ └── index.ts │ │ │ ├── theme.ts │ │ │ ├── updates/ │ │ │ │ └── index.ts │ │ │ ├── utils.ts │ │ │ └── weather/ │ │ │ └── index.ts │ │ ├── directoryMonitorService.ts │ │ ├── flake.nix │ │ ├── globals/ │ │ │ ├── dropdown.ts │ │ │ ├── mousePos.ts │ │ │ ├── network.ts │ │ │ ├── notification.ts │ │ │ ├── useTheme.ts │ │ │ ├── utilities.ts │ │ │ ├── variables.ts │ │ │ ├── weather.ts │ │ │ └── window.ts │ │ ├── globals.d.ts │ │ ├── install_fonts.sh │ │ ├── lib/ │ │ │ ├── constants/ │ │ │ │ └── colors.ts │ │ │ ├── icons.ts │ │ │ ├── option.ts │ │ │ ├── session.ts │ │ │ ├── shared/ │ │ │ │ ├── media.ts │ │ │ │ └── notifications.ts │ │ │ ├── types/ │ │ │ │ ├── audio.d.ts │ │ │ │ ├── bar.d.ts │ │ │ │ ├── customModules/ │ │ │ │ │ ├── generic.d.ts │ │ │ │ │ ├── kbLayout.d.ts │ │ │ │ │ ├── network.d.ts │ │ │ │ │ └── utils.d.ts │ │ │ │ ├── defaults/ │ │ │ │ │ ├── bar.ts │ │ │ │ │ ├── netstat.ts │ │ │ │ │ ├── options.ts │ │ │ │ │ └── weather.ts │ │ │ │ ├── dropdownmenu.d.ts │ │ │ │ ├── filechooser.d.ts │ │ │ │ ├── globals.d.ts │ │ │ │ ├── gpustat.d.ts │ │ │ │ ├── mpris.d.ts │ │ │ │ ├── network.d.ts │ │ │ │ ├── notification.d.ts │ │ │ │ ├── options.d.ts │ │ │ │ ├── popupwindow.d.ts │ │ │ │ ├── power.d.ts │ │ │ │ ├── powerprofiles.d.ts │ │ │ │ ├── systray.d.ts │ │ │ │ ├── utils.d.ts │ │ │ │ ├── variable.d.ts │ │ │ │ ├── volume.d.ts │ │ │ │ ├── weather.d.ts │ │ │ │ ├── widget.d.ts │ │ │ │ └── workspace.d.ts │ │ │ ├── utils.ts │ │ │ └── variables.ts │ │ ├── main.ts │ │ ├── modules/ │ │ │ ├── bar/ │ │ │ │ ├── Bar.ts │ │ │ │ ├── Exports.ts │ │ │ │ ├── SideEffects.ts │ │ │ │ ├── battery/ │ │ │ │ │ └── index.ts │ │ │ │ ├── bluetooth/ │ │ │ │ │ └── index.ts │ │ │ │ ├── clock/ │ │ │ │ │ └── index.ts │ │ │ │ ├── media/ │ │ │ │ │ └── index.ts │ │ │ │ ├── menu/ │ │ │ │ │ └── index.ts │ │ │ │ ├── network/ │ │ │ │ │ └── index.ts │ │ │ │ ├── notifications/ │ │ │ │ │ └── index.ts │ │ │ │ ├── systray/ │ │ │ │ │ └── index.ts │ │ │ │ ├── utils.ts │ │ │ │ ├── volume/ │ │ │ │ │ └── index.ts │ │ │ │ ├── window_title/ │ │ │ │ │ └── index.ts │ │ │ │ └── workspaces/ │ │ │ │ ├── helpers.ts │ │ │ │ ├── index.ts │ │ │ │ ├── utils.ts │ │ │ │ └── variants/ │ │ │ │ ├── default.ts │ │ │ │ └── occupied.ts │ │ │ ├── icons/ │ │ │ │ ├── index.ts │ │ │ │ └── weather.ts │ │ │ ├── menus/ │ │ │ │ ├── audio/ │ │ │ │ │ ├── active/ │ │ │ │ │ │ ├── SelectedInput.ts │ │ │ │ │ │ ├── SelectedPlayback.ts │ │ │ │ │ │ └── index.ts │ │ │ │ │ ├── available/ │ │ │ │ │ │ ├── InputDevices.ts │ │ │ │ │ │ ├── PlaybackDevices.ts │ │ │ │ │ │ └── index.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ └── utils.ts │ │ │ │ ├── bluetooth/ │ │ │ │ │ ├── devices/ │ │ │ │ │ │ ├── connectedControls.ts │ │ │ │ │ │ ├── devicelist.ts │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ └── label.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ └── utils.ts │ │ │ │ ├── calendar/ │ │ │ │ │ ├── calendar.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── time/ │ │ │ │ │ │ └── index.ts │ │ │ │ │ └── weather/ │ │ │ │ │ ├── hourly/ │ │ │ │ │ │ ├── icon/ │ │ │ │ │ │ │ └── index.ts │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ ├── temperature/ │ │ │ │ │ │ │ └── index.ts │ │ │ │ │ │ ├── time/ │ │ │ │ │ │ │ └── index.ts │ │ │ │ │ │ └── utils.ts │ │ │ │ │ ├── icon/ │ │ │ │ │ │ └── index.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── stats/ │ │ │ │ │ │ └── index.ts │ │ │ │ │ └── temperature/ │ │ │ │ │ └── index.ts │ │ │ │ ├── dashboard/ │ │ │ │ │ ├── controls/ │ │ │ │ │ │ └── index.ts │ │ │ │ │ ├── directories/ │ │ │ │ │ │ └── index.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── profile/ │ │ │ │ │ │ └── index.ts │ │ │ │ │ ├── shortcuts/ │ │ │ │ │ │ └── index.ts │ │ │ │ │ └── stats/ │ │ │ │ │ └── index.ts │ │ │ │ ├── energy/ │ │ │ │ │ ├── brightness/ │ │ │ │ │ │ └── index.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ └── profiles/ │ │ │ │ │ └── index.ts │ │ │ │ ├── main.ts │ │ │ │ ├── media/ │ │ │ │ │ ├── components/ │ │ │ │ │ │ ├── bar.ts │ │ │ │ │ │ ├── controls.ts │ │ │ │ │ │ └── mediainfo.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ └── media.ts │ │ │ │ ├── network/ │ │ │ │ │ ├── ethernet/ │ │ │ │ │ │ └── index.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── utils.ts │ │ │ │ │ └── wifi/ │ │ │ │ │ ├── APStaging.ts │ │ │ │ │ ├── WirelessAPs.ts │ │ │ │ │ └── index.ts │ │ │ │ ├── notifications/ │ │ │ │ │ ├── controls/ │ │ │ │ │ │ └── index.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── notification/ │ │ │ │ │ │ ├── actions/ │ │ │ │ │ │ │ └── index.ts │ │ │ │ │ │ ├── body/ │ │ │ │ │ │ │ └── index.ts │ │ │ │ │ │ ├── close/ │ │ │ │ │ │ │ └── index.ts │ │ │ │ │ │ ├── header/ │ │ │ │ │ │ │ ├── icon.ts │ │ │ │ │ │ │ └── index.ts │ │ │ │ │ │ ├── image/ │ │ │ │ │ │ │ └── index.ts │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ └── placeholder/ │ │ │ │ │ │ └── index.ts │ │ │ │ │ ├── pager/ │ │ │ │ │ │ └── index.ts │ │ │ │ │ └── utils.ts │ │ │ │ ├── power/ │ │ │ │ │ ├── helpers/ │ │ │ │ │ │ └── actions.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ └── verification.ts │ │ │ │ ├── powerDropdown/ │ │ │ │ │ ├── button.ts │ │ │ │ │ └── index.ts │ │ │ │ └── shared/ │ │ │ │ ├── dropdown/ │ │ │ │ │ ├── eventBoxes/ │ │ │ │ │ │ └── index.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ └── locationHandler/ │ │ │ │ │ └── index.ts │ │ │ │ └── popup/ │ │ │ │ └── index.ts │ │ │ ├── notifications/ │ │ │ │ ├── actions/ │ │ │ │ │ └── index.ts │ │ │ │ ├── body/ │ │ │ │ │ └── index.ts │ │ │ │ ├── close/ │ │ │ │ │ └── index.ts │ │ │ │ ├── header/ │ │ │ │ │ ├── icon.ts │ │ │ │ │ └── index.ts │ │ │ │ ├── image/ │ │ │ │ │ └── index.ts │ │ │ │ └── index.ts │ │ │ ├── osd/ │ │ │ │ ├── bar/ │ │ │ │ │ └── index.ts │ │ │ │ ├── icon/ │ │ │ │ │ └── index.ts │ │ │ │ ├── index.ts │ │ │ │ └── label/ │ │ │ │ └── index.ts │ │ │ └── shared/ │ │ │ └── barItemBox.ts │ │ ├── nix/ │ │ │ └── default.nix │ │ ├── options.ts │ │ ├── package.json │ │ ├── scripts/ │ │ │ ├── README.md │ │ │ ├── checkUpdates.sh │ │ │ ├── color_generation/ │ │ │ │ ├── applycolor.sh │ │ │ │ ├── colorgen.sh │ │ │ │ ├── generate_colors_material.py │ │ │ │ ├── pywal_to_material.scss │ │ │ │ ├── randomwall.sh │ │ │ │ ├── schemes/ │ │ │ │ │ └── scheme_morevibrant.py │ │ │ │ ├── specials/ │ │ │ │ │ ├── _material_badapple-l.scss │ │ │ │ │ └── _material_badapple.scss │ │ │ │ ├── switchcolor.sh │ │ │ │ └── switchwall.sh │ │ │ ├── fillThemes.js │ │ │ ├── fillThemes.sh │ │ │ ├── grimblast.sh │ │ │ ├── hyprland/ │ │ │ │ ├── get_keybinds.py │ │ │ │ └── workspace_action.sh │ │ │ ├── quickscripts/ │ │ │ │ └── nixos-trim-generations.sh │ │ │ ├── record-script.sh │ │ │ ├── sway/ │ │ │ │ └── swayToRelativeWs.sh │ │ │ ├── templates/ │ │ │ │ ├── fuzzel/ │ │ │ │ │ └── fuzzel.ini │ │ │ │ ├── gradience/ │ │ │ │ │ └── preset.json │ │ │ │ ├── hypr/ │ │ │ │ │ ├── hyprland/ │ │ │ │ │ │ └── colors.conf │ │ │ │ │ └── hyprlock.conf │ │ │ │ └── terminal/ │ │ │ │ ├── scheme-base.json │ │ │ │ ├── scheme-monochrome.json │ │ │ │ └── sequences.txt │ │ │ └── wayland-idle-inhibitor.py │ │ ├── scss/ │ │ │ ├── main.scss │ │ │ ├── optionsTrackers.ts │ │ │ ├── style/ │ │ │ │ ├── bar/ │ │ │ │ │ ├── audio.scss │ │ │ │ │ ├── bar.scss │ │ │ │ │ ├── battery.scss │ │ │ │ │ ├── bluetooth.scss │ │ │ │ │ ├── clock.scss │ │ │ │ │ ├── media.scss │ │ │ │ │ ├── menu.scss │ │ │ │ │ ├── network.scss │ │ │ │ │ ├── notifications.scss │ │ │ │ │ ├── power.scss │ │ │ │ │ ├── systray.scss │ │ │ │ │ ├── window_title.scss │ │ │ │ │ └── workspace.scss │ │ │ │ ├── colors.scss │ │ │ │ ├── common/ │ │ │ │ │ ├── common.scss │ │ │ │ │ ├── floating-widget.scss │ │ │ │ │ ├── general.scss │ │ │ │ │ └── widget-button.scss │ │ │ │ ├── customModules/ │ │ │ │ │ └── style.scss │ │ │ │ ├── highlights.scss │ │ │ │ ├── menus/ │ │ │ │ │ ├── audiomenu.scss │ │ │ │ │ ├── bluetooth.scss │ │ │ │ │ ├── calendar.scss │ │ │ │ │ ├── dashboard.scss │ │ │ │ │ ├── energy.scss │ │ │ │ │ ├── media.scss │ │ │ │ │ ├── menu.scss │ │ │ │ │ ├── network.scss │ │ │ │ │ ├── notifications.scss │ │ │ │ │ ├── power.scss │ │ │ │ │ └── powerdropdown.scss │ │ │ │ ├── notifications/ │ │ │ │ │ └── popups.scss │ │ │ │ ├── osd/ │ │ │ │ │ └── index.scss │ │ │ │ └── settings/ │ │ │ │ └── dialog.scss │ │ │ └── style.ts │ │ ├── services/ │ │ │ ├── Brightness.ts │ │ │ ├── Cpu.ts │ │ │ ├── Ram.ts │ │ │ ├── Storage.ts │ │ │ ├── Wallpaper.ts │ │ │ ├── bluetooth.py │ │ │ ├── matugen/ │ │ │ │ ├── index.ts │ │ │ │ └── variations.ts │ │ │ ├── screen_record.sh │ │ │ └── snapshot.sh │ │ ├── themes/ │ │ │ ├── catppuccin_frappe.json │ │ │ ├── catppuccin_frappe_split.json │ │ │ ├── catppuccin_latte.json │ │ │ ├── catppuccin_latte_split.json │ │ │ ├── catppuccin_macchiato.json │ │ │ ├── catppuccin_macchiato_split.json │ │ │ ├── catppuccin_mocha.json │ │ │ ├── catppuccin_mocha_split.json │ │ │ ├── cyberpunk.json │ │ │ ├── cyberpunk_split.json │ │ │ ├── dracula.json │ │ │ ├── dracula_split.json │ │ │ ├── everforest.json │ │ │ ├── everforest_split.json │ │ │ ├── gruvbox.json │ │ │ ├── gruvbox_split.json │ │ │ ├── monochrome.json │ │ │ ├── monochrome_split.json │ │ │ ├── nord.json │ │ │ ├── nord_split.json │ │ │ ├── one_dark.json │ │ │ ├── one_dark_split.json │ │ │ ├── rose_pine.json │ │ │ ├── rose_pine_moon.json │ │ │ ├── rose_pine_moon_split.json │ │ │ ├── rose_pine_split.json │ │ │ ├── tokyo_night.json │ │ │ └── tokyo_night_split.json │ │ ├── tsconfig.json │ │ └── widget/ │ │ ├── RegularWindow.ts │ │ └── settings/ │ │ ├── SettingsDialog.ts │ │ ├── pages/ │ │ │ ├── config/ │ │ │ │ ├── bar/ │ │ │ │ │ └── index.ts │ │ │ │ ├── general/ │ │ │ │ │ └── index.ts │ │ │ │ ├── index.ts │ │ │ │ ├── menus/ │ │ │ │ │ ├── clock.ts │ │ │ │ │ ├── dashboard.ts │ │ │ │ │ └── power.ts │ │ │ │ ├── notifications/ │ │ │ │ │ └── index.ts │ │ │ │ └── osd/ │ │ │ │ └── index.ts │ │ │ └── theme/ │ │ │ ├── bar/ │ │ │ │ └── index.ts │ │ │ ├── index.ts │ │ │ ├── menus/ │ │ │ │ ├── battery.ts │ │ │ │ ├── bluetooth.ts │ │ │ │ ├── clock.ts │ │ │ │ ├── dashboard.ts │ │ │ │ ├── index.ts │ │ │ │ ├── matugen.ts │ │ │ │ ├── media.ts │ │ │ │ ├── network.ts │ │ │ │ ├── notifications.ts │ │ │ │ ├── power.ts │ │ │ │ ├── systray.ts │ │ │ │ └── volume.ts │ │ │ ├── notifications/ │ │ │ │ └── index.ts │ │ │ └── osd/ │ │ │ └── index.ts │ │ ├── shared/ │ │ │ ├── FileChooser.ts │ │ │ ├── Header.ts │ │ │ ├── Inputter.ts │ │ │ ├── Label.ts │ │ │ ├── Option.ts │ │ │ └── components/ │ │ │ ├── boolean.ts │ │ │ ├── color.ts │ │ │ ├── enum.ts │ │ │ ├── font.ts │ │ │ ├── image.ts │ │ │ ├── import.ts │ │ │ ├── number.ts │ │ │ ├── object.ts │ │ │ ├── string.ts │ │ │ └── wallpaper.ts │ │ └── side_effects/ │ │ └── index.ts │ ├── fuzzel/ │ │ └── fuzzel.ini │ ├── hypr/ │ │ ├── hypridle.conf │ │ ├── hyprland/ │ │ │ ├── colors.conf │ │ │ ├── env.conf │ │ │ ├── execs.conf │ │ │ ├── general.conf │ │ │ ├── keybinds.conf │ │ │ └── rules.conf │ │ ├── hyprland.conf │ │ ├── hyprlock/ │ │ │ └── status.sh │ │ ├── hyprlock.conf │ │ ├── monitors.conf │ │ ├── shaders/ │ │ │ ├── chromatic_abberation.frag │ │ │ ├── crt.frag │ │ │ ├── drugs.frag │ │ │ ├── extradark.frag │ │ │ ├── invert.frag │ │ │ └── solarized.frag │ │ └── workspaces.conf │ ├── kitty/ │ │ ├── current-theme.conf │ │ ├── kitty-hyprland.conf │ │ ├── kitty-themes/ │ │ │ ├── .all-contributorsrc │ │ │ ├── .tools/ │ │ │ │ ├── README.md │ │ │ │ ├── color_table.sh │ │ │ │ ├── convert.py │ │ │ │ ├── convert_conf.swift │ │ │ │ ├── extract-vscode.sh │ │ │ │ ├── generate_conf.sh │ │ │ │ ├── generate_theme_preview.sh │ │ │ │ ├── generate_themes_previews.sh │ │ │ │ ├── libcapture.sh │ │ │ │ ├── markdown.sh │ │ │ │ ├── palette.py │ │ │ │ ├── preview.py │ │ │ │ ├── previews.sh │ │ │ │ ├── template.conf │ │ │ │ ├── template.conf.j2 │ │ │ │ └── windowid.swift │ │ │ ├── CONTRIBUTING.md │ │ │ ├── LICENSE.md │ │ │ ├── README.md │ │ │ └── themes/ │ │ │ ├── 3024_Day.conf │ │ │ ├── 3024_Night.conf │ │ │ ├── AdventureTime.conf │ │ │ ├── Afterglow.conf │ │ │ ├── AlienBlood.conf │ │ │ ├── Alucard.conf │ │ │ ├── Apprentice.conf │ │ │ ├── Argonaut.conf │ │ │ ├── Arthur.conf │ │ │ ├── AtelierSulphurpool.conf │ │ │ ├── Atom.conf │ │ │ ├── AtomOneLight.conf │ │ │ ├── Batman.conf │ │ │ ├── Belafonte_Day.conf │ │ │ ├── Belafonte_Night.conf │ │ │ ├── BirdsOfParadise.conf │ │ │ ├── Blazer.conf │ │ │ ├── Borland.conf │ │ │ ├── Bright_Lights.conf │ │ │ ├── Broadcast.conf │ │ │ ├── Brogrammer.conf │ │ │ ├── C64.conf │ │ │ ├── CLRS.conf │ │ │ ├── Chalk.conf │ │ │ ├── Chalkboard.conf │ │ │ ├── Ciapre.conf │ │ │ ├── Cobalt2.conf │ │ │ ├── Cobalt_Neon.conf │ │ │ ├── CrayonPonyFish.conf │ │ │ ├── Dark_Pastel.conf │ │ │ ├── Darkside.conf │ │ │ ├── Desert.conf │ │ │ ├── DimmedMonokai.conf │ │ │ ├── DotGov.conf │ │ │ ├── Dracula.conf │ │ │ ├── Dumbledore.conf │ │ │ ├── Duotone_Dark.conf │ │ │ ├── ENCOM.conf │ │ │ ├── Earthsong.conf │ │ │ ├── Elemental.conf │ │ │ ├── Espresso.conf │ │ │ ├── Espresso_Libre.conf │ │ │ ├── Fideloper.conf │ │ │ ├── FishTank.conf │ │ │ ├── Flat.conf │ │ │ ├── Flatland.conf │ │ │ ├── Floraverse.conf │ │ │ ├── FrontEndDelight.conf │ │ │ ├── FunForrest.conf │ │ │ ├── Galaxy.conf │ │ │ ├── Github.conf │ │ │ ├── Glacier.conf │ │ │ ├── GoaBase.conf │ │ │ ├── Grape.conf │ │ │ ├── Grass.conf │ │ │ ├── Hardcore.conf │ │ │ ├── Harper.conf │ │ │ ├── Highway.conf │ │ │ ├── Hipster_Green.conf │ │ │ ├── Homebrew.conf │ │ │ ├── Hurtado.conf │ │ │ ├── Hybrid.conf │ │ │ ├── IC_Green_PPL.conf │ │ │ ├── IC_Orange_PPL.conf │ │ │ ├── IR_Black.conf │ │ │ ├── Jackie_Brown.conf │ │ │ ├── Japanesque.conf │ │ │ ├── Jellybeans.conf │ │ │ ├── JetBrains_Darcula.conf │ │ │ ├── Kibble.conf │ │ │ ├── Later_This_Evening.conf │ │ │ ├── Lavandula.conf │ │ │ ├── LiquidCarbon.conf │ │ │ ├── LiquidCarbonTransparent.conf │ │ │ ├── LiquidCarbonTransparentInverse.conf │ │ │ ├── Man_Page.conf │ │ │ ├── Material.conf │ │ │ ├── MaterialDark.conf │ │ │ ├── Mathias.conf │ │ │ ├── Medallion.conf │ │ │ ├── Misterioso.conf │ │ │ ├── Molokai.conf │ │ │ ├── MonaLisa.conf │ │ │ ├── Monokai.conf │ │ │ ├── Monokai_Classic.conf │ │ │ ├── Monokai_Pro.conf │ │ │ ├── Monokai_Pro_(Filter_Machine).conf │ │ │ ├── Monokai_Pro_(Filter_Octagon).conf │ │ │ ├── Monokai_Pro_(Filter_Ristretto).conf │ │ │ ├── Monokai_Pro_(Filter_Spectrum).conf │ │ │ ├── Monokai_Soda.conf │ │ │ ├── N0tch2k.conf │ │ │ ├── Neopolitan.conf │ │ │ ├── Neutron.conf │ │ │ ├── NightLion_v1.conf │ │ │ ├── NightLion_v2.conf │ │ │ ├── Nova.conf │ │ │ ├── Novel.conf │ │ │ ├── Obsidian.conf │ │ │ ├── Ocean.conf │ │ │ ├── OceanicMaterial.conf │ │ │ ├── Ollie.conf │ │ │ ├── OneDark.conf │ │ │ ├── Parasio_Dark.conf │ │ │ ├── PaulMillr.conf │ │ │ ├── PencilDark.conf │ │ │ ├── PencilLight.conf │ │ │ ├── Piatto_Light.conf │ │ │ ├── Pnevma.conf │ │ │ ├── Pro.conf │ │ │ ├── Red_Alert.conf │ │ │ ├── Red_Sands.conf │ │ │ ├── Relaxed_Afterglow.conf │ │ │ ├── Renault_Style.conf │ │ │ ├── Renault_Style_Light.conf │ │ │ ├── Rippedcasts.conf │ │ │ ├── Royal.conf │ │ │ ├── SeaShells.conf │ │ │ ├── Seafoam_Pastel.conf │ │ │ ├── Seti.conf │ │ │ ├── Shaman.conf │ │ │ ├── Slate.conf │ │ │ ├── Smyck.conf │ │ │ ├── SoftServer.conf │ │ │ ├── Solarized_Darcula.conf │ │ │ ├── Solarized_Dark.conf │ │ │ ├── Solarized_Dark_-_Patched.conf │ │ │ ├── Solarized_Dark_Higher_Contrast.conf │ │ │ ├── Solarized_Light.conf │ │ │ ├── Source_Code_X.conf │ │ │ ├── SpaceGray.conf │ │ │ ├── SpaceGray_Eighties.conf │ │ │ ├── SpaceGray_Eighties_Dull.conf │ │ │ ├── Spacedust.conf │ │ │ ├── Spiderman.conf │ │ │ ├── Spring.conf │ │ │ ├── Square.conf │ │ │ ├── Sundried.conf │ │ │ ├── Symfonic.conf │ │ │ ├── Tango_Dark.conf │ │ │ ├── Tango_Light.conf │ │ │ ├── Teerb.conf │ │ │ ├── Thayer_Bright.conf │ │ │ ├── The_Hulk.conf │ │ │ ├── Tomorrow.conf │ │ │ ├── Tomorrow_Night.conf │ │ │ ├── Tomorrow_Night_Blue.conf │ │ │ ├── Tomorrow_Night_Bright.conf │ │ │ ├── Tomorrow_Night_Eighties.conf │ │ │ ├── ToyChest.conf │ │ │ ├── Treehouse.conf │ │ │ ├── Twilight.conf │ │ │ ├── Ubuntu.conf │ │ │ ├── Urple.conf │ │ │ ├── Vaughn.conf │ │ │ ├── VibrantInk.conf │ │ │ ├── WarmNeon.conf │ │ │ ├── Wez.conf │ │ │ ├── WildCherry.conf │ │ │ ├── Wombat.conf │ │ │ ├── Wryan.conf │ │ │ ├── Zenburn.conf │ │ │ ├── ayu.conf │ │ │ ├── ayu_light.conf │ │ │ ├── ayu_mirage.conf │ │ │ ├── gruvbox_dark.conf │ │ │ ├── gruvbox_light.conf │ │ │ ├── idleToes.conf │ │ │ ├── rose-pine-moon.conf │ │ │ └── snazzy.conf │ │ └── kitty.conf │ ├── qt5ct/ │ │ └── qt5ct.conf │ ├── qt6ct/ │ │ ├── colors/ │ │ │ ├── Catppuccin-Latte.conf │ │ │ └── Catppuccin-Mocha.conf │ │ └── qt6ct.conf │ ├── rofi/ │ │ ├── applets/ │ │ │ ├── bin/ │ │ │ │ ├── appasroot.sh │ │ │ │ ├── apps.sh │ │ │ │ ├── battery.sh │ │ │ │ ├── brightness.sh │ │ │ │ ├── mpd.sh │ │ │ │ ├── powermenu.sh │ │ │ │ ├── quicklinks.sh │ │ │ │ ├── screenshot.sh │ │ │ │ └── volume.sh │ │ │ ├── shared/ │ │ │ │ ├── colors.rasi │ │ │ │ ├── fonts.rasi │ │ │ │ └── theme.bash │ │ │ ├── type-1/ │ │ │ │ ├── style-1.rasi │ │ │ │ ├── style-2.rasi │ │ │ │ └── style-3.rasi │ │ │ ├── type-2/ │ │ │ │ ├── style-1.rasi │ │ │ │ ├── style-2.rasi │ │ │ │ └── style-3.rasi │ │ │ ├── type-3/ │ │ │ │ ├── style-1.rasi │ │ │ │ ├── style-2.rasi │ │ │ │ └── style-3.rasi │ │ │ ├── type-4/ │ │ │ │ ├── style-1.rasi │ │ │ │ ├── style-2.rasi │ │ │ │ └── style-3.rasi │ │ │ └── type-5/ │ │ │ ├── style-1.rasi │ │ │ ├── style-2.rasi │ │ │ └── style-3.rasi │ │ ├── colors/ │ │ │ ├── adapta.rasi │ │ │ ├── arc.rasi │ │ │ ├── black.rasi │ │ │ ├── catppuccin.rasi │ │ │ ├── cyberpunk.rasi │ │ │ ├── dracula.rasi │ │ │ ├── everforest.rasi │ │ │ ├── gruvbox.rasi │ │ │ ├── lovelace.rasi │ │ │ ├── navy.rasi │ │ │ ├── nord.rasi │ │ │ ├── onedark.rasi │ │ │ ├── paper.rasi │ │ │ ├── solarized.rasi │ │ │ ├── tokyonight.rasi │ │ │ └── yousai.rasi │ │ ├── config.rasi │ │ ├── launchers/ │ │ │ ├── type-1/ │ │ │ │ ├── launcher.sh │ │ │ │ ├── shared/ │ │ │ │ │ ├── colors.rasi │ │ │ │ │ └── fonts.rasi │ │ │ │ ├── style-1.rasi │ │ │ │ ├── style-10.rasi │ │ │ │ ├── style-11.rasi │ │ │ │ ├── style-12.rasi │ │ │ │ ├── style-13.rasi │ │ │ │ ├── style-14.rasi │ │ │ │ ├── style-15.rasi │ │ │ │ ├── style-2.rasi │ │ │ │ ├── style-3.rasi │ │ │ │ ├── style-4.rasi │ │ │ │ ├── style-5.rasi │ │ │ │ ├── style-6.rasi │ │ │ │ ├── style-7.rasi │ │ │ │ ├── style-8.rasi │ │ │ │ └── style-9.rasi │ │ │ ├── type-2/ │ │ │ │ ├── launcher.sh │ │ │ │ ├── shared/ │ │ │ │ │ ├── colors.rasi │ │ │ │ │ └── fonts.rasi │ │ │ │ ├── style-1.rasi │ │ │ │ ├── style-10.rasi │ │ │ │ ├── style-11.rasi │ │ │ │ ├── style-12.rasi │ │ │ │ ├── style-13.rasi │ │ │ │ ├── style-14.rasi │ │ │ │ ├── style-15.rasi │ │ │ │ ├── style-2.rasi │ │ │ │ ├── style-3.rasi │ │ │ │ ├── style-4.rasi │ │ │ │ ├── style-5.rasi │ │ │ │ ├── style-6.rasi │ │ │ │ ├── style-7.rasi │ │ │ │ ├── style-8.rasi │ │ │ │ └── style-9.rasi │ │ │ ├── type-3/ │ │ │ │ ├── launcher.sh │ │ │ │ ├── shared/ │ │ │ │ │ ├── colors.rasi │ │ │ │ │ └── fonts.rasi │ │ │ │ ├── style-1.rasi │ │ │ │ ├── style-10.rasi │ │ │ │ ├── style-2.rasi │ │ │ │ ├── style-3.rasi │ │ │ │ ├── style-4.rasi │ │ │ │ ├── style-5.rasi │ │ │ │ ├── style-6.rasi │ │ │ │ ├── style-7.rasi │ │ │ │ ├── style-8.rasi │ │ │ │ └── style-9.rasi │ │ │ ├── type-4/ │ │ │ │ ├── launcher.sh │ │ │ │ ├── shared/ │ │ │ │ │ ├── colors.rasi │ │ │ │ │ └── fonts.rasi │ │ │ │ ├── style-1.rasi │ │ │ │ ├── style-10.rasi │ │ │ │ ├── style-2.rasi │ │ │ │ ├── style-3.rasi │ │ │ │ ├── style-4.rasi │ │ │ │ ├── style-5.rasi │ │ │ │ ├── style-6.rasi │ │ │ │ ├── style-7.rasi │ │ │ │ ├── style-8.rasi │ │ │ │ └── style-9.rasi │ │ │ ├── type-5/ │ │ │ │ ├── launcher.sh │ │ │ │ ├── style-1.rasi │ │ │ │ ├── style-2.rasi │ │ │ │ ├── style-3.rasi │ │ │ │ ├── style-4.rasi │ │ │ │ └── style-5.rasi │ │ │ ├── type-6/ │ │ │ │ ├── launcher.sh │ │ │ │ ├── style-1.rasi │ │ │ │ ├── style-10.rasi │ │ │ │ ├── style-2.rasi │ │ │ │ ├── style-3.rasi │ │ │ │ ├── style-4.rasi │ │ │ │ ├── style-5.rasi │ │ │ │ ├── style-6.rasi │ │ │ │ ├── style-7.rasi │ │ │ │ ├── style-8.rasi │ │ │ │ └── style-9.rasi │ │ │ └── type-7/ │ │ │ ├── launcher.sh │ │ │ ├── style-1.rasi │ │ │ ├── style-10.rasi │ │ │ ├── style-2.rasi │ │ │ ├── style-3.rasi │ │ │ ├── style-4.rasi │ │ │ ├── style-5.rasi │ │ │ ├── style-6.rasi │ │ │ ├── style-7.rasi │ │ │ ├── style-8.rasi │ │ │ └── style-9.rasi │ │ └── powermenu/ │ │ ├── type-1/ │ │ │ ├── powermenu.sh │ │ │ ├── shared/ │ │ │ │ ├── colors.rasi │ │ │ │ └── fonts.rasi │ │ │ ├── style-1.rasi │ │ │ ├── style-2.rasi │ │ │ ├── style-3.rasi │ │ │ ├── style-4.rasi │ │ │ └── style-5.rasi │ │ ├── type-2/ │ │ │ ├── powermenu.sh │ │ │ ├── shared/ │ │ │ │ ├── colors.rasi │ │ │ │ └── fonts.rasi │ │ │ ├── style-1.rasi │ │ │ ├── style-10.rasi │ │ │ ├── style-2.rasi │ │ │ ├── style-3.rasi │ │ │ ├── style-4.rasi │ │ │ ├── style-5.rasi │ │ │ ├── style-6.rasi │ │ │ ├── style-7.rasi │ │ │ ├── style-8.rasi │ │ │ └── style-9.rasi │ │ ├── type-3/ │ │ │ ├── powermenu.sh │ │ │ ├── shared/ │ │ │ │ ├── colors.rasi │ │ │ │ ├── confirm.rasi │ │ │ │ └── fonts.rasi │ │ │ ├── style-1.rasi │ │ │ ├── style-2.rasi │ │ │ ├── style-3.rasi │ │ │ ├── style-4.rasi │ │ │ └── style-5.rasi │ │ ├── type-4/ │ │ │ ├── powermenu.sh │ │ │ ├── shared/ │ │ │ │ ├── colors.rasi │ │ │ │ ├── confirm.rasi │ │ │ │ └── fonts.rasi │ │ │ ├── style-1.rasi │ │ │ ├── style-2.rasi │ │ │ ├── style-3.rasi │ │ │ ├── style-4.rasi │ │ │ └── style-5.rasi │ │ ├── type-5/ │ │ │ ├── powermenu.sh │ │ │ ├── style-1.rasi │ │ │ ├── style-2.rasi │ │ │ ├── style-3.rasi │ │ │ ├── style-4.rasi │ │ │ └── style-5.rasi │ │ └── type-6/ │ │ ├── powermenu.sh │ │ ├── style-1.rasi │ │ ├── style-2.rasi │ │ ├── style-3.rasi │ │ ├── style-4.rasi │ │ └── style-5.rasi │ ├── wlogout/ │ │ ├── layout │ │ └── style.css │ └── zshrc.d/ │ ├── auto-Hypr.sh │ ├── dots-hyprland.zsh │ └── shortcuts.zsh ├── .fastfetch_conf.jsonc ├── .fonts/ │ ├── .uuid │ └── CustomTkinter_shapes_font.otf ├── .gitattributes ├── .zprofile ├── .zshenv ├── .zshrc ├── README.md ├── backup.sh └── hyprpanel_config.json