├── .Xresources ├── .gitattributes ├── .gitconfig ├── .gitignore ├── .gitmodules ├── .gtkrc-2.0 ├── .mocha.gitconfig ├── .myclirc ├── .noderc ├── .profile ├── .pyrc ├── .scripts ├── .gitignore ├── battery-status.sh ├── check_battery.sh ├── cloud_mount ├── port_scans.js ├── preview ├── preview_kitty ├── preview_sixel ├── rdp ├── vpn └── vpn-cookie ├── .tmux.conf ├── .w3m ├── config └── cookie ├── .zimrc ├── .zshfunc ├── .zshrc ├── Dockerfile ├── Makefile ├── README.md ├── config ├── .gitignore ├── atuin │ ├── config.toml │ └── themes │ │ └── catppuccin-mocha-red.toml ├── bat │ └── themes │ │ └── Catppuccin-mocha.tmTheme ├── btop │ ├── btop.conf │ └── themes │ │ └── catppuccin_mocha.theme ├── dunst │ ├── dunstrc │ └── vol ├── eww │ ├── css │ │ ├── bar.scss │ │ ├── calendar.scss │ │ ├── colors-dark.scss │ │ ├── colors-light.scss │ │ ├── general.scss │ │ ├── indicators.scss │ │ ├── music.scss │ │ ├── osd.scss │ │ ├── prelude.scss │ │ ├── system-menu.scss │ │ └── system.scss │ ├── eww.scss │ ├── eww.yuck │ ├── modules │ │ ├── bluetooth.yuck │ │ ├── bright.yuck │ │ ├── clock.yuck │ │ ├── indicators.yuck │ │ ├── music.yuck │ │ ├── net.yuck │ │ ├── sys.yuck │ │ ├── volume.yuck │ │ └── workspaces.yuck │ ├── scripts │ │ ├── airplane │ │ ├── bluetooth │ │ ├── brightness │ │ ├── indicators │ │ ├── net │ │ ├── utils │ │ └── volume │ ├── variables.yuck │ └── windows │ │ ├── bar.yuck │ │ ├── calendar.yuck │ │ ├── music.yuck │ │ ├── osd.yuck │ │ └── system-menu.yuck ├── fastfetch │ └── thinkpad.txt ├── firejail │ ├── librewolf.profile │ ├── microsoft-edge-stable.profile │ └── spotify.profile ├── fontconfig │ └── fonts.conf ├── foot │ └── foot.ini ├── hypr │ ├── animations │ │ ├── classic.conf │ │ ├── diablo-1.conf │ │ ├── diablo-2.conf │ │ ├── disable.conf │ │ ├── dynamic.conf │ │ ├── fast.conf │ │ ├── high.conf │ │ ├── ja.conf │ │ ├── optimized.conf │ │ └── theme.conf │ ├── colors │ │ └── mocha.conf │ ├── hybrid.conf │ ├── hyprland.conf │ ├── intel.conf │ ├── keybinds.conf │ ├── monitors.conf │ ├── newm_mode.conf │ ├── normal_mode.conf │ ├── nvidia.conf │ ├── scripts │ │ ├── fix-portals.sh │ │ ├── marks │ │ └── toggle_size │ ├── startup.conf │ ├── theme.conf │ ├── windowrule.conf │ ├── workspace.conf │ └── workspacem.conf ├── imv │ └── config ├── kitty │ ├── colorschemes │ │ ├── amora.conf │ │ ├── diff-mocha.conf │ │ ├── eyes_protect.conf │ │ ├── miramare.conf │ │ ├── mocha.conf │ │ ├── oblivion.conf │ │ ├── sweet.conf │ │ └── truecolor.conf │ ├── kitty.conf │ ├── kitty.conf.bak │ └── patch_font.conf ├── luakit │ ├── allowed.lua │ ├── autoscroll.lua │ ├── block_referers.lua │ ├── block_referers_wm.lua │ ├── rc.lua │ ├── theme.lua │ └── userconf.lua ├── mpv │ ├── fonts │ │ └── Material-Design-Iconic-Font.ttf │ ├── input.conf │ ├── mpv.conf │ ├── mpvnet.conf │ ├── script-modules │ │ └── gallery.lua │ ├── script-opts │ │ ├── gallery_worker.conf │ │ ├── modern-extended.conf │ │ ├── playlist_view.conf │ │ ├── slicing_copy.conf │ │ └── thumbfast.conf │ ├── scripts │ │ ├── gallery-thumbgen.lua │ │ ├── modern-extended.lua │ │ ├── playlist-view.lua │ │ ├── slicing_copy.lua │ │ ├── sortlist.lua │ │ └── thumbfast.lua │ ├── shaders │ │ ├── Anime4K_AutoDownscalePre_x2.glsl │ │ ├── Anime4K_AutoDownscalePre_x4.glsl │ │ ├── Anime4K_Clamp_Highlights.glsl │ │ ├── Anime4K_Darken_Fast.glsl │ │ ├── Anime4K_Darken_HQ.glsl │ │ ├── Anime4K_Darken_VeryFast.glsl │ │ ├── Anime4K_Deblur_DoG.glsl │ │ ├── Anime4K_Deblur_Original.glsl │ │ ├── Anime4K_Denoise_Bilateral_Mean.glsl │ │ ├── Anime4K_Denoise_Bilateral_Median.glsl │ │ ├── Anime4K_Denoise_Bilateral_Mode.glsl │ │ ├── Anime4K_Restore_CNN_L.glsl │ │ ├── Anime4K_Restore_CNN_M.glsl │ │ ├── Anime4K_Restore_CNN_S.glsl │ │ ├── Anime4K_Restore_CNN_Soft_L.glsl │ │ ├── Anime4K_Restore_CNN_Soft_M.glsl │ │ ├── Anime4K_Restore_CNN_Soft_S.glsl │ │ ├── Anime4K_Restore_CNN_Soft_UL.glsl │ │ ├── Anime4K_Restore_CNN_Soft_VL.glsl │ │ ├── Anime4K_Restore_CNN_UL.glsl │ │ ├── Anime4K_Restore_CNN_VL.glsl │ │ ├── Anime4K_Thin_Fast.glsl │ │ ├── Anime4K_Thin_HQ.glsl │ │ ├── Anime4K_Thin_VeryFast.glsl │ │ ├── Anime4K_Upscale_CNN_x2_L.glsl │ │ ├── Anime4K_Upscale_CNN_x2_M.glsl │ │ ├── Anime4K_Upscale_CNN_x2_S.glsl │ │ ├── Anime4K_Upscale_CNN_x2_UL.glsl │ │ ├── Anime4K_Upscale_CNN_x2_VL.glsl │ │ ├── Anime4K_Upscale_DTD_x2.glsl │ │ ├── Anime4K_Upscale_Deblur_DoG_x2.glsl │ │ ├── Anime4K_Upscale_Deblur_Original_x2.glsl │ │ ├── Anime4K_Upscale_Denoise_CNN_x2_L.glsl │ │ ├── Anime4K_Upscale_Denoise_CNN_x2_M.glsl │ │ ├── Anime4K_Upscale_Denoise_CNN_x2_S.glsl │ │ ├── Anime4K_Upscale_Denoise_CNN_x2_UL.glsl │ │ ├── Anime4K_Upscale_Denoise_CNN_x2_VL.glsl │ │ ├── Anime4K_Upscale_DoG_x2.glsl │ │ ├── Anime4K_Upscale_Original_x2.glsl │ │ ├── CAS-scaled.glsl │ │ ├── FSR.glsl │ │ ├── FSRCNNX_x2_16-0-4-1.glsl │ │ ├── FSRCNNX_x2_8-0-4-1.glsl │ │ ├── KrigBilateral.glsl │ │ ├── NVScaler.glsl │ │ ├── SSimDownscaler.glsl │ │ ├── nnedi3-nns128-win8x6.hook │ │ ├── nnedi3-nns16-win8x6.hook │ │ ├── nnedi3-nns256-win8x6.hook │ │ ├── nnedi3-nns32-win8x6.hook │ │ ├── nnedi3-nns64-win8x6.hook │ │ ├── noise_static_chroma.hook │ │ ├── noise_static_chroma_strong.hook │ │ ├── noise_static_luma.hook │ │ └── noise_static_luma_strong.hook │ └── temp.conf ├── mwc │ ├── fix-portals.sh │ ├── mwc │ └── mwc.conf ├── newm │ ├── config.py │ ├── configV2.py │ ├── configV3.py │ ├── native_bar.py │ ├── portal.conf │ ├── startup.py │ └── utilities.py ├── nushell │ ├── config.nu │ ├── env.nu │ └── history.txt ├── nvim │ ├── .editorconfig │ ├── .gitignore │ ├── .luacheckrc │ ├── .luarc.json │ ├── .stylua.toml │ ├── colors │ │ ├── cockatoo.lua │ │ ├── default.lua │ │ ├── macro.lua │ │ ├── nano.lua │ │ ├── sonokai.lua │ │ └── stata.lua │ ├── filetype.lua │ ├── ftplugin │ │ ├── bash.lua │ │ ├── bib.lua │ │ ├── c.lua │ │ ├── cpp.lua │ │ ├── cs.lua │ │ ├── csv.lua │ │ ├── help.lua │ │ ├── html.lua │ │ ├── json.lua │ │ ├── lua.lua │ │ ├── make.lua │ │ ├── markdown.lua │ │ ├── netrw.vim │ │ ├── norg.lua │ │ ├── norl.lua │ │ ├── python.lua │ │ ├── qf.lua │ │ ├── quarto.lua │ │ ├── sh.lua │ │ ├── tex.lua │ │ └── zsh.lua │ ├── indent │ │ └── markdown.vim │ ├── init.lua │ ├── lsp │ │ ├── basedpyright.lua │ │ ├── bashls.lua │ │ ├── clangd.lua │ │ ├── csharp_ls.lua │ │ ├── cssls.lua │ │ ├── digestif.lua │ │ ├── dockerls.lua │ │ ├── emmet.lua │ │ ├── jsonls.lua │ │ ├── lua_ls.lua │ │ ├── marksman.lua │ │ ├── nimls.lua │ │ ├── omnisharp.lua │ │ ├── ruff_ls.lua │ │ ├── texlab.lua │ │ ├── tsserver.lua │ │ └── v_analyzer.lua │ ├── lua │ │ ├── config │ │ │ ├── autocmds.lua │ │ │ ├── defaults.lua │ │ │ ├── keymappings.lua │ │ │ ├── lazy.lua │ │ │ └── lsp │ │ │ │ ├── commands.lua │ │ │ │ ├── grammar.lua │ │ │ │ ├── init.lua │ │ │ │ ├── keymaps.lua │ │ │ │ └── utils.lua │ │ ├── dap │ │ │ ├── bash.lua │ │ │ ├── c.lua │ │ │ ├── cpp.lua │ │ │ ├── go.lua │ │ │ ├── lua.lua │ │ │ ├── python.lua │ │ │ └── sh.lua │ │ ├── modules │ │ │ ├── text_es.json │ │ │ └── writing_assistant.lua │ │ ├── plugins │ │ │ ├── dev │ │ │ │ ├── ai.lua │ │ │ │ ├── betterTerm.lua │ │ │ │ ├── blink.lua │ │ │ │ ├── code_runner.lua │ │ │ │ ├── dab.lua │ │ │ │ ├── init.lua │ │ │ │ ├── lang │ │ │ │ │ ├── clangd.lua │ │ │ │ │ ├── csharp.lua │ │ │ │ │ ├── json.lua │ │ │ │ │ ├── latex.lua │ │ │ │ │ ├── markdown.lua │ │ │ │ │ ├── nim.lua │ │ │ │ │ ├── python.lua │ │ │ │ │ ├── sh.lua │ │ │ │ │ ├── typescript.lua │ │ │ │ │ └── v.lua │ │ │ │ ├── neogen.lua │ │ │ │ ├── refactoring.lua │ │ │ │ ├── rest.lua │ │ │ │ ├── template.lua │ │ │ │ └── test.lua │ │ │ ├── general │ │ │ │ ├── autopair.lua │ │ │ │ ├── harpoon.lua │ │ │ │ ├── init.lua │ │ │ │ ├── mini.lua │ │ │ │ ├── search_and_replace.lua │ │ │ │ └── snacks.lua │ │ │ ├── modes │ │ │ │ ├── database.lua │ │ │ │ ├── git.lua │ │ │ │ ├── init.lua │ │ │ │ ├── motion.lua │ │ │ │ └── org.lua │ │ │ └── ui │ │ │ │ ├── catppuccin.lua │ │ │ │ ├── gitsigns.lua │ │ │ │ ├── icons.lua │ │ │ │ ├── init.lua │ │ │ │ ├── noice.lua │ │ │ │ └── treesitter.lua │ │ ├── snippets │ │ │ ├── all.lua │ │ │ ├── c.lua │ │ │ ├── cpp.lua │ │ │ ├── cuda.lua │ │ │ ├── fish.lua │ │ │ ├── go.lua │ │ │ ├── javascript.lua │ │ │ ├── lua.lua │ │ │ ├── markdown.lua │ │ │ ├── python.lua │ │ │ ├── sh.lua │ │ │ ├── tex │ │ │ │ ├── init.lua │ │ │ │ └── math.lua │ │ │ ├── typescript.lua │ │ │ └── vim.lua │ │ ├── ui │ │ │ ├── statuscolumn.lua │ │ │ ├── statusline.lua │ │ │ ├── tabline.lua │ │ │ └── winbar │ │ │ │ ├── api.lua │ │ │ │ ├── bar.lua │ │ │ │ ├── configs.lua │ │ │ │ ├── hlgroups.lua │ │ │ │ ├── init.lua │ │ │ │ ├── menu.lua │ │ │ │ ├── sources │ │ │ │ ├── init.lua │ │ │ │ ├── lsp.lua │ │ │ │ ├── markdown.lua │ │ │ │ └── treesitter.lua │ │ │ │ └── utils │ │ │ │ ├── bar.lua │ │ │ │ ├── init.lua │ │ │ │ ├── menu.lua │ │ │ │ └── source.lua │ │ └── utils │ │ │ ├── buf.lua │ │ │ ├── cmd.lua │ │ │ ├── dap.lua │ │ │ ├── fn.lua │ │ │ ├── fs.lua │ │ │ ├── ft.lua │ │ │ ├── git.lua │ │ │ ├── hl.lua │ │ │ ├── init.lua │ │ │ ├── json.lua │ │ │ ├── key.lua │ │ │ ├── keymap.lua │ │ │ ├── lsp.lua │ │ │ ├── lua.lua │ │ │ ├── misc.lua │ │ │ ├── notify.lua │ │ │ ├── opt.lua │ │ │ ├── snippets │ │ │ ├── conds.lua │ │ │ ├── funcs.lua │ │ │ ├── init.lua │ │ │ ├── nodes.lua │ │ │ └── snips.lua │ │ │ ├── static │ │ │ ├── borders │ │ │ │ ├── _borders.lua │ │ │ │ ├── _borders_nf.lua │ │ │ │ └── init.lua │ │ │ ├── boxes │ │ │ │ ├── _boxes.lua │ │ │ │ ├── _boxes_nf.lua │ │ │ │ └── init.lua │ │ │ ├── icons │ │ │ │ ├── _icons.lua │ │ │ │ ├── _icons_nf.lua │ │ │ │ └── init.lua │ │ │ └── init.lua │ │ │ ├── stl.lua │ │ │ ├── str.lua │ │ │ ├── syn.lua │ │ │ ├── tab.lua │ │ │ ├── term.lua │ │ │ ├── ts.lua │ │ │ ├── ui.lua │ │ │ ├── web.lua │ │ │ └── win.lua │ ├── nvim.version │ ├── plugin │ │ ├── _.lua │ │ ├── clean.vim │ │ └── help.lua │ ├── project_manager.json │ ├── queries │ │ └── markdown │ │ │ └── textobjects.scm │ ├── selene.toml │ ├── spell │ │ ├── es.utf-8.spl │ │ └── es.utf-8.sug │ ├── syntax │ │ ├── asm.vim │ │ ├── markdown.vim │ │ └── qf.vim │ ├── template │ │ ├── c │ │ │ └── basic.c │ │ ├── cpp │ │ │ ├── basic.cpp │ │ │ ├── basic_class.cpp │ │ │ ├── class.cpp │ │ │ ├── punteros_maximo_minimo.cpp │ │ │ ├── punteros_multipicar.cpp │ │ │ └── punteros_swap.cpp │ │ └── norg │ │ │ ├── sa.norg │ │ │ └── schedule.norg │ ├── typrstats │ ├── vim.toml │ └── vscode.vim ├── nvtop │ └── interface.ini ├── rofi │ ├── applets │ │ ├── bin │ │ │ ├── apps.sh │ │ │ ├── battery.sh │ │ │ ├── monitor.sh │ │ │ ├── powermenu.sh │ │ │ └── quicklinks.sh │ │ ├── shared │ │ │ ├── colors.rasi │ │ │ ├── fonts.rasi │ │ │ └── theme.bash │ │ └── type-3 │ │ │ ├── style-1.rasi │ │ │ ├── style-2.rasi │ │ │ └── style-3.rasi │ ├── assets │ │ └── notification.png │ ├── calendar │ │ ├── bin │ │ │ └── calendar │ │ └── themes │ │ │ └── calendar.rasi │ ├── colors │ │ ├── catppuccin.rasi │ │ ├── colors.txt │ │ └── ramdom_color.sh │ ├── config.rasi │ ├── launcher │ │ ├── launcher.sh │ │ ├── shared │ │ │ ├── colors.rasi │ │ │ └── fonts.rasi │ │ └── style-2.rasi │ ├── menu │ │ ├── menu.sh │ │ ├── style-1.rasi │ │ └── style-2.rasi │ ├── notification.rasi │ ├── run.sh │ ├── scripts │ │ ├── apps │ │ ├── battery │ │ ├── bookmarks │ │ ├── clipboard │ │ ├── launcher │ │ ├── menu │ │ ├── monitor │ │ ├── passman │ │ ├── powermenu │ │ └── quicklinks │ ├── selector.rasi │ ├── text │ │ ├── bookmarks │ │ ├── bookmarks.sh │ │ ├── clipboard.sh │ │ ├── confirm.rasi │ │ ├── img │ │ ├── passman.sh │ │ └── style_2.rasi │ └── theme.rasi ├── starship.toml ├── swaylock │ └── config ├── swww │ ├── select.sh │ ├── swwwallpaper.sh │ ├── swwwallselect.sh │ ├── wall.blur │ ├── wall.ctl │ └── wall.set ├── termusic │ ├── data.db │ ├── mocha.toml │ ├── server.toml │ ├── themes │ │ ├── 3024.dark.yml │ │ ├── 3024.light.yml │ │ ├── Afterglow.yml │ │ ├── Argonaut.yml │ │ ├── Ashes.dark.yml │ │ ├── Ashes.light.yml │ │ ├── Astromouse.yml │ │ ├── Atelierdune.dark.yml │ │ ├── Atelierdune.light.yml │ │ ├── Atelierforest.dark.yml │ │ ├── Atelierforest.light.yml │ │ ├── Atelierheath.dark.yml │ │ ├── Atelierheath.light.yml │ │ ├── Atelierlakeside.dark.yml │ │ ├── Atelierlakeside.light.yml │ │ ├── Atelierseaside.dark.yml │ │ ├── Atelierseaside.light.yml │ │ ├── Ayu-Dark.yml │ │ ├── Ayu-Mirage.yml │ │ ├── Base16-Default-Dark.yml │ │ ├── Baskerville - Count Von Count.yml │ │ ├── Baskerville - Eldorado dark.yml │ │ ├── Baskerville - FarSide.yml │ │ ├── Baskerville - ivory dark.yml │ │ ├── Baskerville - lost woods.yml │ │ ├── Baskerville-ivorylight.yml │ │ ├── Belge.yml │ │ ├── Bespin.dark.yml │ │ ├── Bespin.light.yml │ │ ├── Bitmute.yml │ │ ├── Bleh-1.yml │ │ ├── Blood-Moon.yml │ │ ├── Breeze.yml │ │ ├── Brewer.dark.yml │ │ ├── Brewer.light.yml │ │ ├── Campbell.yml │ │ ├── Chalk.dark.yml │ │ ├── Chalk.light.yml │ │ ├── Challenger-Deep.yml │ │ ├── Cloud.yml │ │ ├── Cobalt-2.yml │ │ ├── Codeschool.dark.yml │ │ ├── Codeschool.light.yml │ │ ├── Colorfulcolors.yml │ │ ├── DOOMICIDE darkocean.yml │ │ ├── Darkside.yml │ │ ├── Darktooth.yml │ │ ├── Dawn.yml │ │ ├── Deafened.yml │ │ ├── Default.dark.yml │ │ ├── Default.light.yml │ │ ├── Derp.yml │ │ ├── Digerati.yml │ │ ├── Dkeg - canvasedpastel.yml │ │ ├── Dkeg - catchmeifyoucan.yml │ │ ├── Dkeg - citystreets.yml │ │ ├── Dkeg - colorstar.yml │ │ ├── Dkeg - panels.yml │ │ ├── Dkeg - redphoenix.yml │ │ ├── Dkeg - teva.yml │ │ ├── Dkeg - unsiftedwheat.yml │ │ ├── Dkeg - vwbug.yml │ │ ├── Dotshare.yml │ │ ├── Dracula.yml │ │ ├── Dwmrob.yml │ │ ├── Eighties.dark.yml │ │ ├── Eighties.light.yml │ │ ├── Embers.dark.yml │ │ ├── Embers.light.yml │ │ ├── Epiphany.yml │ │ ├── Eqie6.yml │ │ ├── Erebus.yml │ │ ├── Euphrasia.yml │ │ ├── Fishbone.yml │ │ ├── Gjm.yml │ │ ├── Gnometerm.yml │ │ ├── Google.dark.yml │ │ ├── Google.light.yml │ │ ├── Gotham.yml │ │ ├── Grandshell.yml │ │ ├── Grayscale.dark.yml │ │ ├── Grayscale.light.yml │ │ ├── Greenscreen.dark.yml │ │ ├── Greenscreen.light.yml │ │ ├── Gruvbox-Dark.yml │ │ ├── Gruvbox-Light.yml │ │ ├── Gslob nature-suede.yml │ │ ├── Gutterslob - aikofog.yml │ │ ├── Gutterslob - lumifoo.yml │ │ ├── Gutterslob lightwhite.yml │ │ ├── Hund.yml │ │ ├── Hybrid.yml │ │ ├── Hyper.yml │ │ ├── IR-Black.yml │ │ ├── Iceberg-Dark.yml │ │ ├── Iceberg-Light.yml │ │ ├── Iiamblack.yml │ │ ├── Insignificato.yml │ │ ├── Invisibone.yml │ │ ├── Isotope.dark.yml │ │ ├── Isotope.light.yml │ │ ├── Jasonwryan.yml │ │ ├── Jellybeans.yml │ │ ├── Jmbi.yml │ │ ├── Jwr-dark.yml │ │ ├── Kasugano.yml │ │ ├── Kitty.yml │ │ ├── Londontube.dark.yml │ │ ├── Londontube.light.yml │ │ ├── Marrakesh.dark.yml │ │ ├── Marrakesh.light.yml │ │ ├── Material-Theme.yml │ │ ├── Material.yml │ │ ├── Mikado.yml │ │ ├── Mikazuki.yml │ │ ├── Mocha.dark.yml │ │ ├── Mocha.light.yml │ │ ├── Molokai.yml │ │ ├── Monokai-Pro.yml │ │ ├── Monokai-Soda.yml │ │ ├── Monokai.dark.yml │ │ ├── Monokai.light.yml │ │ ├── Monotheme.yml │ │ ├── Mostly-bright.yml │ │ ├── Muse.yml │ │ ├── Muzieca lowcontrast.yml │ │ ├── Muzieca mono.yml │ │ ├── Muzieca pastel white.yml │ │ ├── Nancy.yml │ │ ├── Navy-and-ivory.yml │ │ ├── Neon.yml │ │ ├── New-Moon.yml │ │ ├── Nightfly.yml │ │ ├── Nord.yml │ │ ├── Nova.yml │ │ ├── Nucolors.yml │ │ ├── Nudge.yml │ │ ├── NumixDarkest.yml │ │ ├── OK100 - Matrix.yml │ │ ├── Ocean.dark.yml │ │ ├── Ocean.light.yml │ │ ├── Oceanic-Next.yml │ │ ├── One-Dark.yml │ │ ├── One-Light.yml │ │ ├── Orangish.yml │ │ ├── Oxide.yml │ │ ├── Palenight.yml │ │ ├── Panda.yml │ │ ├── Paraiso.dark.yml │ │ ├── Paraiso.light.yml │ │ ├── Parker_brothers.yml │ │ ├── Pencil-Dark.yml │ │ ├── Pencil-Light.yml │ │ ├── Phrak1.yml │ │ ├── Pop!-OS.yml │ │ ├── Pretty-and-pastel.yml │ │ ├── Pulp.yml │ │ ├── Railscasts.dark.yml │ │ ├── Railscasts.light.yml │ │ ├── Rasi.yml │ │ ├── Rezza.yml │ │ ├── Rooster - SOS.yml │ │ ├── Rydgel.yml │ │ ├── S3r0-modified.yml │ │ ├── Seabird.yml │ │ ├── Seoul256.yml │ │ ├── Sexcolors.yml │ │ ├── Shapeshifter.dark.yml │ │ ├── Shapeshifter.light.yml │ │ ├── Shic.yml │ │ ├── Simple_rainbow.yml │ │ ├── Snazzy.yml │ │ ├── Solarized-Dark.yml │ │ ├── Solarized-Light.yml │ │ ├── Sourcerer.yml │ │ ├── Splurge.yml │ │ ├── Substrata.yml │ │ ├── Swayr.yml │ │ ├── Sweetlove.yml │ │ ├── Taerminal.yml │ │ ├── Tango.yml │ │ ├── Tangoesque.yml │ │ ├── Tangoish.yml │ │ ├── Tartan.yml │ │ ├── Tender.yml │ │ ├── Terminal-app-Basic.yml │ │ ├── Terminal-app.yml │ │ ├── Theme2.yml │ │ ├── Thwump.yml │ │ ├── Tlh.yml │ │ ├── Tokyonight_Day.yml │ │ ├── Tokyonight_Night.yml │ │ ├── Tokyonight_Storm.yml │ │ ├── Tomorrow-Night-Bright.yml │ │ ├── Tomorrow-Night.yml │ │ ├── Tomorrow.dark.yml │ │ ├── Tomorrow.light.yml │ │ ├── Trim-yer-beard.yml │ │ ├── Twilight.dark.yml │ │ ├── Twilight.light.yml │ │ ├── Ubuntu.yml │ │ ├── User 77 - Mashup colors.yml │ │ ├── Vacuous2.yml │ │ ├── Visiblue.yml │ │ ├── Visibone-alt-2.yml │ │ ├── Visibone.yml │ │ ├── Wombat.yml │ │ ├── X-dotshare.yml │ │ ├── X-erosion.yml │ │ ├── XTerm.yml │ │ ├── Yousai.yml │ │ ├── Zenburn.yml │ │ ├── iTerm-Default.yml │ │ └── vscode.dark.yml │ └── tui.toml ├── tridactyl │ ├── themes │ │ ├── catppuccin.css │ │ └── other.css │ └── tridactylrc ├── wluma │ └── config.toml ├── xdg-desktop-portal-termfilechooser │ ├── .last_selected │ ├── config │ └── yazi-wrapper.sh ├── xdg-desktop-portal │ ├── hyprland-portals.conf │ └── mwc-portals.conf ├── yazi │ ├── Catppuccin-mocha.tmTheme │ ├── init.lua │ ├── keymap.toml │ ├── package.toml │ ├── theme.toml │ └── yazi.toml └── zathura │ ├── sweetDark │ └── zathurarc ├── etc ├── NetworkManager │ ├── NetworkManager.conf │ └── conf.d │ │ └── wifi_rand_mac.conf ├── auto-cpufreq.conf ├── dnscrypt-proxy │ ├── dnscrypt-proxy.toml │ └── get_blocklist ├── greetd │ ├── config.toml │ ├── hyprland.conf │ ├── regreet.css │ └── regreet.toml ├── keyd │ └── default.conf ├── makepkg.conf ├── nftables-chatgpt.conf ├── nftables-docker.conf ├── nftables.conf ├── pkg ├── resolv.conf ├── sysctl.d │ ├── 30-ipforward.conf │ ├── 40-max-user-watches.conf │ └── 99-sysctl.conf └── zcfan.conf ├── keychron_k12_pro.layout.json ├── local └── share │ ├── applications │ └── inaoe.desktop │ └── luakit │ └── styles │ ├── abcvideo.css │ ├── archive.css │ ├── chaturbate.css │ ├── clipwatching.css │ ├── codeproject.css │ ├── discord.css │ ├── dood.css │ ├── gamovideo.css │ ├── gfycat.css │ ├── github.css │ ├── highwebmedia.css │ ├── linuxquestions.css │ ├── lowes.css │ ├── m.youtube.css │ ├── mixdrop.css │ ├── pjtrailers.css │ ├── primewire.css │ ├── redd-head.css │ ├── reddit.css │ ├── redgifs.css │ ├── stackoverflow.css │ ├── swatchseries.css │ ├── tinyhousebasics.css │ ├── twitter.css │ ├── unix.stackexchange.css │ ├── upstream.css │ ├── vidlox.css │ ├── vidtodo.css │ └── wikipedia.css ├── pkglist.txt ├── themes ├── custom_folders │ ├── AndroidStudio.png │ ├── Arduino.png │ ├── Clouds.png │ ├── Game.png │ ├── Git.png │ ├── IDEA.png │ ├── drive.png │ ├── python.png │ └── vscode.png ├── firefox │ ├── catppuccin.css │ ├── chrome │ │ └── userChrome.css │ └── sweet_tridactyl.css └── stylus.json ├── thinkpad ├── README.md ├── etc │ └── zcfan.conf └── scripts │ ├── 98-power-saving.conf │ ├── 99-performance.conf │ ├── power-mode-startup.sh │ └── power-mode.sh └── wayland ├── desktop └── firefox.desktop ├── electron-flags.conf ├── scripts ├── hypr-run.sh ├── newm-run.sh ├── nvidia_firefox ├── open-wl ├── sway-run.sh └── wayland_enablement.sh └── toggle_wcam /.Xresources: -------------------------------------------------------------------------------- 1 | *background: #1E1E2E 2 | *foreground: #CDD6F4 3 | 4 | ! black 5 | *color0: #45475A 6 | *color8: #585B70 7 | 8 | ! red 9 | *color1: #F38BA8 10 | *color9: #F38BA8 11 | 12 | ! green 13 | *color2: #A6E3A1 14 | *color10: #A6E3A1 15 | 16 | ! yellow 17 | *color3: #F9E2AF 18 | *color11: #F9E2AF 19 | 20 | ! blue 21 | *color4: #89B4FA 22 | *color12: #89B4FA 23 | 24 | ! magenta 25 | *color5: #F5C2E7 26 | *color13: #F5C2E7 27 | 28 | ! cyan 29 | *color6: #94E2D5 30 | *color14: #94E2D5 31 | 32 | ! white 33 | *color7: #BAC2DE 34 | *color15: #A6ADC8 35 | -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | .zsh_history filter=git-crypt diff=git-crypt 2 | .gitconfig filter=git-crypt diff=git-crypt 3 | config/rofi/text/bookmarks filter=git-crypt diff=git-crypt 4 | config/nushell/history.txt filter=git-crypt diff=git-crypt 5 | -------------------------------------------------------------------------------- /.gitconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CRAG666/dotfiles/7ea1f8adb41002217b1cdd88c11846bd505cba32/.gitconfig -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- 1 | [submodule "config/ranger/plugins/ranger_udisk_menu"] 2 | path = config/ranger/plugins/ranger_udisk_menu 3 | url = https://github.com/SL-RU/ranger_udisk_menu 4 | [submodule "config/ranger/plugins/ranger_devicons"] 5 | path = config/ranger/plugins/ranger_devicons 6 | url = https://github.com/alexanderjeurissen/ranger_devicons 7 | -------------------------------------------------------------------------------- /.noderc: -------------------------------------------------------------------------------- 1 | const repl = require('repl'); 2 | var replServer = repl.start({prompt: '\x1b[32m\ue718 \u21D2\x1b[0m '}); 3 | -------------------------------------------------------------------------------- /.profile: -------------------------------------------------------------------------------- 1 | # export PATH="$HOME/.local/bin:$HOME/.poetry/bin:$PATH:$ANDROID_HOME/tools:$ANDROID_HOME/platform-tools" 2 | # export MESA_LOADER_DRIVER_OVERRIDE=iris 3 | # export ANDROID_HOME=/opt/android-sdk 4 | export _JAVA_OPTIONS="-Dawt.useSystemAAFontSettings=on -Dswing.aatext=true -Dswing.defaultlaf=com.sun.java.swing.plaf.gtk.GTKLookAndFeel -Dswing.crossplatformlaf=com.sun.java.swing.plaf.gtk.GTKLookAndFeel ${_JAVA_OPTIONS}" 5 | # export QT_QPA_PLATFORMTHEME=qt6ct 6 | # export RIDER_JDK=/usr/share/rider/jbr 7 | export DOTNET_CLI_TELEMETRY_OPTOUT=1 8 | -------------------------------------------------------------------------------- /.pyrc: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python3 2 | import sys 3 | 4 | # ANSI escape sequences 5 | YELLOW = "\033[93m" 6 | RESET = "\033[0m" 7 | PROMPT = "\ue235 \uE27A " 8 | 9 | sys.ps1 = f"{RESET}{YELLOW}{PROMPT}{RESET}" 10 | sys.ps2 = f"{RESET}{YELLOW}...{RESET}" 11 | -------------------------------------------------------------------------------- /.scripts/.gitignore: -------------------------------------------------------------------------------- 1 | servicesemail.txt 2 | serviceskey.txt 3 | -------------------------------------------------------------------------------- /.scripts/battery-status.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | while true; do 3 | # export DISPLAY=:0.0 4 | battery_level=$(cat /sys/class/power_supply/BAT0/capacity) 5 | on_ac_power=$(cat /sys/class/power_supply/AC/online) 6 | if [ "$on_ac_power" -eq 1 ]; then 7 | if [ "$battery_level" -ge 85 ]; then 8 | notify-send "Battery Full" "Level: $battery_level% " 9 | paplay /usr/share/sounds/freedesktop/stereo/suspend-error.oga 10 | fi 11 | else 12 | if [ "$battery_level" -le 15 ]; then 13 | notify-send --urgency=CRITICAL "Battery Low" "Level: $battery_level%" 14 | paplay /usr/share/sounds/freedesktop/stereo/suspend-error.oga 15 | fi 16 | fi 17 | sleep 60 18 | done 19 | -------------------------------------------------------------------------------- /.scripts/rdp: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | # 3 | # 4 | remmina -c $(awk ' 5 | /^full address:s:/ { sub("full address:s:",""); sub("\015",""); host=$1; next} 6 | /^username:s:/ { sub("username:s:",""); sub("\015",""); user=$1; next} 7 | END { 8 | printf "rdp://%s@%s\n", user, host 9 | } 10 | ' $1) 11 | -------------------------------------------------------------------------------- /.scripts/vpn: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | host="vpn.ecosur.mx:10443" 3 | cookie=$(./webview.AppImage --enable-features=UseOzonePlatform --ozone-platform=wayland "$host" 2>/dev/null) 4 | # sudo openfortivpn vpn.ecosur.mx:10443 --cookie="$cookie" --realm=foo 5 | sudo openfortivpn "$host" --cookie="$cookie" 6 | # sudo openconnect --protocol=fortinet --cookie="$cookie" $host 7 | -------------------------------------------------------------------------------- /.scripts/vpn-cookie: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | host="vpn.ecosur.mx:10443" 3 | cookie=$(cat ~/.scripts/cookie) 4 | # sudo openfortivpn vpn.ecosur.mx:10443 --cookie="$cookie" --realm=foo 5 | # sudo openfortivpn "$host" --cookie="$cookie" 6 | sudo openfortivpn --cookie="SVPNCOOKIE=$cookie" $host 7 | -------------------------------------------------------------------------------- /.w3m/config: -------------------------------------------------------------------------------- 1 | inline_img_protocol 4 2 | imgdisplay kitty 3 | -------------------------------------------------------------------------------- /.w3m/cookie: -------------------------------------------------------------------------------- 1 | https://w3m.sourceforge.net/ __cf_bm iZ7PaD.0OGAjaUYm7i8cXpJLKf4PcoTfUy4c7f4i2Vs-1735795175-1.0.1.1-3hl_XWYQV.H2ZQiG94q_0OaLSY3LkfnrEcIIY1R7Kqt7SP2KFAwm_vTCLLGb3jkCguT9ldRhQekXEWzlSrAMeQ 1735796975 .sourceforge.net / 15 0 2 | -------------------------------------------------------------------------------- /config/.gitignore: -------------------------------------------------------------------------------- 1 | style.css 2 | style.css.map 3 | -------------------------------------------------------------------------------- /config/atuin/themes/catppuccin-mocha-red.toml: -------------------------------------------------------------------------------- 1 | [theme] 2 | name = "catppuccin-mocha-red" 3 | 4 | [colors] 5 | AlertInfo = "#a6e3a1" 6 | AlertWarn = "#fab387" 7 | AlertError = "#f38ba8" 8 | Annotation = "#f38ba8" 9 | Base = "#cdd6f4" 10 | Guidance = "#9399b2" 11 | Important = "#f38ba8" 12 | Title = "#f38ba8" 13 | -------------------------------------------------------------------------------- /config/bat/themes/Catppuccin-mocha.tmTheme: -------------------------------------------------------------------------------- 1 | /home/think-crag/.config/yazi/Catppuccin-mocha.tmTheme -------------------------------------------------------------------------------- /config/eww/css/bar.scss: -------------------------------------------------------------------------------- 1 | .bar { 2 | background: $bar-bg; 3 | } 4 | .module { 5 | margin: 0 0.5rem; 6 | } 7 | 8 | /* workspaces */ 9 | .focused { 10 | background-color: $focused; 11 | border-radius: 1rem; 12 | margin: 0.3rem; 13 | padding: 0.3rem; 14 | } 15 | 16 | .ws { 17 | background: $surface; 18 | border-radius: 2rem; 19 | margin: 0.8rem 0.2rem; 20 | padding: 0.1rem; 21 | } 22 | 23 | .ws-red { 24 | background: $red; 25 | } 26 | .ws-yellow { 27 | background: $yellow; 28 | } 29 | .ws-green { 30 | background: $green; 31 | } 32 | .ws-blue { 33 | background: $blue; 34 | } 35 | -------------------------------------------------------------------------------- /config/eww/css/calendar.scss: -------------------------------------------------------------------------------- 1 | .calendar-window { 2 | @include window; 3 | } 4 | 5 | calendar { 6 | margin: 0.3rem; 7 | padding: 0.2rem; 8 | 9 | :selected { 10 | background: $surface; 11 | border-radius: 100%; 12 | padding: 0.3rem 0.5rem; 13 | } 14 | 15 | .header { 16 | color: $subtext; 17 | } 18 | 19 | .highlight { 20 | color: $red; 21 | font-weight: bold; 22 | } 23 | 24 | .button { 25 | padding: 0.5rem 0.3rem; 26 | } 27 | 28 | :indeterminate { 29 | color: $subtext; 30 | } 31 | } 32 | -------------------------------------------------------------------------------- /config/eww/css/indicators.scss: -------------------------------------------------------------------------------- 1 | /* screenshare & mic share indicators */ 2 | .indicators { 3 | margin: 0.5rem 0; 4 | 5 | :first-child { 6 | border-radius: 1rem 0 0 1rem; 7 | } 8 | 9 | :last-child { 10 | border-radius: 0 1rem 1rem 0; 11 | } 12 | 13 | :only-child { 14 | border-radius: 1rem; 15 | } 16 | } 17 | 18 | .indicator { 19 | color: $bg; 20 | padding: 0 0.4rem; 21 | } 22 | 23 | .screenshare { 24 | background: $red; 25 | } 26 | .micshare { 27 | background: $green; 28 | } 29 | .camerashare { 30 | background: $blue; 31 | } 32 | -------------------------------------------------------------------------------- /config/eww/css/osd.scss: -------------------------------------------------------------------------------- 1 | .osd-part { 2 | @include window; 3 | margin: 0.2rem; 4 | 5 | .icon { 6 | color: $overlay; 7 | font-size: 2rem; 8 | } 9 | 10 | trough { 11 | margin: 0 0.5rem; 12 | min-width: 8rem; 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /config/eww/css/prelude.scss: -------------------------------------------------------------------------------- 1 | /* get rid of GTK theme's styles and set defaults */ 2 | * { 3 | all: unset; 4 | font-family: Inter, Roboto, sans-serif; 5 | transition: 200ms ease; 6 | } 7 | -------------------------------------------------------------------------------- /config/eww/css/system.scss: -------------------------------------------------------------------------------- 1 | /* CPU & RAM */ 2 | .sys-indicator { 3 | .property { 4 | font-size: 0.5rem; 5 | font-weight: 300; 6 | margin-bottom: -0.2rem; 7 | margin-top: 0.4rem; 8 | } 9 | 10 | .value { 11 | font-size: 0.8rem; 12 | } 13 | 14 | margin: 0.35rem; 15 | } 16 | 17 | .bar .battery .icon { 18 | font-size: 1.2rem; 19 | .low { 20 | color: $red; 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /config/eww/eww.scss: -------------------------------------------------------------------------------- 1 | /* style aggregator */ 2 | 3 | /* setup */ 4 | @import "css/prelude"; 5 | @import "css/colors"; 6 | @import "css/general"; 7 | 8 | /* modules & windows */ 9 | @import "css/bar"; 10 | @import "css/calendar"; 11 | @import "css/indicators"; 12 | @import "css/music"; 13 | @import "css/osd"; 14 | @import "css/system-menu"; 15 | @import "css/system"; 16 | -------------------------------------------------------------------------------- /config/eww/eww.yuck: -------------------------------------------------------------------------------- 1 | ; all variables and listeners 2 | (include "./variables.yuck") 3 | 4 | ; various bar modules 5 | (include "./modules/bluetooth.yuck") 6 | (include "./modules/clock.yuck") 7 | (include "./modules/indicators.yuck") 8 | (include "./modules/music.yuck") 9 | (include "./modules/net.yuck") 10 | (include "./modules/sys.yuck") 11 | (include "./modules/volume.yuck") 12 | (include "./modules/workspaces.yuck") 13 | 14 | ; individual windows 15 | (include "./windows/bar.yuck") 16 | (include "./windows/calendar.yuck") 17 | (include "./windows/music.yuck") 18 | (include "./windows/osd.yuck") 19 | (include "./windows/system-menu.yuck") 20 | -------------------------------------------------------------------------------- /config/eww/modules/bluetooth.yuck: -------------------------------------------------------------------------------- 1 | (defwidget bluetooth [] 2 | (label 3 | :class "module icon ${bluetooth.state}" 4 | :tooltip "${bluetooth.text} ${bluetooth.battery}" 5 | :text {bluetooth.state == "connected" ? "" : bluetooth.state == "enabled" ? "" : ""})) 6 | -------------------------------------------------------------------------------- /config/eww/modules/bright.yuck: -------------------------------------------------------------------------------- 1 | (defwidget bright [] 2 | (box 3 | :class "module" 4 | (eventbox 5 | ; scroll to change the brightness level 6 | :onscroll "echo {} | sed -e 's/up/-U 1/g' -e 's/down/-A 1/g' | xargs brillo -S" 7 | (label 8 | :text {brightness.icon} 9 | :class "bright-icon icon" 10 | :tooltip "brightness ${round(brightness.percent, 0)}%")))) 11 | -------------------------------------------------------------------------------- /config/eww/modules/clock.yuck: -------------------------------------------------------------------------------- 1 | (defwidget clock_module [] 2 | (eventbox 3 | :onclick "eww open --toggle calendar" 4 | (label 5 | :class "text module" 6 | :text {formattime(EWW_TIME, "%a %b %d %H:%M")}))) 7 | -------------------------------------------------------------------------------- /config/eww/modules/indicators.yuck: -------------------------------------------------------------------------------- 1 | ; screenshare & mic share indicators 2 | (defwidget indicators [] 3 | (box 4 | :space-evenly false 5 | :class "indicators" 6 | (for i in indicators 7 | (label 8 | :class "icon indicator ${i.class}" 9 | :tooltip "${i.name} is being shared" 10 | :text {i.icon})))) 11 | -------------------------------------------------------------------------------- /config/eww/modules/net.yuck: -------------------------------------------------------------------------------- 1 | (defwidget net [] 2 | (label 3 | :class "module icon ${net.state}" 4 | :tooltip {net.text} 5 | :text {net.icon})) 6 | -------------------------------------------------------------------------------- /config/eww/modules/volume.yuck: -------------------------------------------------------------------------------- 1 | (defwidget volume-module [] 2 | (box 3 | :class "module icon" 4 | (eventbox 5 | ; scroll over the icon to change volume 6 | ; low increment so that scrolling with a touchpad doesn't shatter your eardrums 7 | :onscroll "echo {} | sed -e 's/up/-/g' -e 's/down/+/g' | xargs -I% wpctl set-volume @DEFAULT_AUDIO_SINK@ 0.005%" 8 | :onclick "pavucontrol &" ; open pavucontrol on click 9 | :onrightclick "scripts/volume mute SINK" ; toggle mute on right click 10 | (label 11 | :class "vol-icon" 12 | :tooltip "volume ${volume.percent}%" 13 | :text {volume.icon})))) 14 | -------------------------------------------------------------------------------- /config/eww/modules/workspaces.yuck: -------------------------------------------------------------------------------- 1 | (defvar monitor_colors `["ws-red", "ws-yellow", "ws-green", "ws-blue"]`) 2 | 3 | (defwidget workspaces [] 4 | (eventbox 5 | ; scroll to change workspace 6 | :onscroll "echo {} | sed -e \"s/up/-1/g\" -e \"s/down/+1/g\" | xargs hyprctl dispatch workspace" 7 | (box 8 | :class "module workspaces" 9 | (for ws in {hyprland.workspaces} 10 | (button 11 | :onclick "hyprctl dispatch workspace ${ws.name}" 12 | :class `ws icon ${ws.state == "Active" ? monitor_colors[ws.monitor] : ""}` 13 | (box 14 | :class `${ws.name == hyprland.focused ? "focused" : ""}` 15 | :height 3)))))) 16 | -------------------------------------------------------------------------------- /config/eww/windows/calendar.yuck: -------------------------------------------------------------------------------- 1 | (defwidget calendar-window [] 2 | (box 3 | :class "text calendar-window" 4 | (calendar))) 5 | 6 | (defwindow calendar 7 | :monitor 0 8 | :geometry (geometry 9 | :x "0%" 10 | :y "0%" 11 | :anchor "top right" 12 | :width "0px" 13 | :height "0px") 14 | :namespace "eww-calendar" 15 | (calendar-window)) 16 | -------------------------------------------------------------------------------- /config/firejail/microsoft-edge-stable.profile: -------------------------------------------------------------------------------- 1 | # Firejail profile for Microsoft Edge Stable 2 | # Description: Web browser from Microsoft, stable channel 3 | # This file is overwritten after every install/update 4 | # Persistent local customizations 5 | include microsoft-edge-stable.local 6 | # Persistent global definitions 7 | # added by included profile 8 | #include globals.local 9 | 10 | # Redirect 11 | include microsoft-edge.profile 12 | 13 | whitelist ${HOME}/.config/microsoft-edge-stable-flags.conf 14 | -------------------------------------------------------------------------------- /config/fontconfig/fonts.conf: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | DankMonoNerdFont Nerd Font Mono 7 | 8 | 9 | 100 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /config/hypr/animations/disable.conf: -------------------------------------------------------------------------------- 1 | 2 | # // ▄▀█ █▄░█ █ █▀▄▀█ ▄▀█ ▀█▀ █ █▀█ █▄░█ 3 | # // █▀█ █░▀█ █ █░▀░█ █▀█ ░█░ █ █▄█ █░▀█ 4 | 5 | # See https://wiki.hyprland.org/Configuring/Animations/ 6 | # credits: https://github.com/prasanthrangan/hyprdots 7 | 8 | animations:enabled=false 9 | 10 | -------------------------------------------------------------------------------- /config/hypr/intel.conf: -------------------------------------------------------------------------------- 1 | env = MOZ_DISABLE_RDD_SANDBOX,1 2 | env = LIBVA_DRIVER_NAME,iHD 3 | env = VDPAU_DRIVER,va_gl 4 | env = MESA_LOADER_DRIVER_OVERRIDE,iris 5 | 6 | # brightness control 7 | 8 | bindle = , XF86MonBrightnessUp, exec, brightnessctl s 400+ 9 | bindle = , XF86MonBrightnessDown, exec, brightnessctl s 400- 10 | -------------------------------------------------------------------------------- /config/hypr/nvidia.conf: -------------------------------------------------------------------------------- 1 | 2 | # █▄░█ █░█ █ █▀▄ █ ▄▀█ 3 | # █░▀█ ▀▄▀ █ █▄▀ █ █▀█ 4 | 5 | env = GBM_BACKEND,nvidia-drm 6 | env = LIBVA_DRIVER_NAME,nvidia 7 | env = __GLX_VENDOR_LIBRARY_NAME,nvidia 8 | env = __GL_VRR_ALLOWED,1 9 | env = WLR_NO_HARDWARE_CURSORS,1 10 | env = WLR_DRM_NO_ATOMIC,1 11 | env = VDPAU_DRIVER,nvidia 12 | env = MOZ_DISABLE_RDD_SANDBOX,1 13 | # env = __EGL_VENDOR_LIBRARY_FILENAMES,/usr/share/glvnd/egl_vendor.d/10_nvidia.json 14 | env = __GL_GSYNC_ALLOWED,0 15 | env = WLR_BACKEND,vulkan 16 | env = NVD_BACKEND,direct 17 | # brightness control 18 | 19 | bindle = , XF86MonBrightnessUp, exec, brightnessctl s 10+ 20 | bindle = , XF86MonBrightnessDown, exec, brightnessctl s 10- 21 | -------------------------------------------------------------------------------- /config/hypr/scripts/fix-portals.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | sleep 1 3 | systemctl --user import-environment WAYLAND_DISPLAY XDG_CURRENT_DESKTOP 4 | dbus-update-activation-environment --systemd WAYLAND_DISPLAY XDG_CURRENT_DESKTOP=Hyprland 5 | sleep 1 6 | systemctl --user restart xdg-desktop-portal.service 7 | -------------------------------------------------------------------------------- /config/mpv/fonts/Material-Design-Iconic-Font.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CRAG666/dotfiles/7ea1f8adb41002217b1cdd88c11846bd505cba32/config/mpv/fonts/Material-Design-Iconic-Font.ttf -------------------------------------------------------------------------------- /config/mpv/mpvnet.conf: -------------------------------------------------------------------------------- 1 | process-instance=multi 2 | -------------------------------------------------------------------------------- /config/mpv/script-opts/slicing_copy.conf: -------------------------------------------------------------------------------- 1 | # Output directory options 2 | # ENABLE ONLY 1 target_dir= 3 | # Same directory as file 4 | # target_dir="./" 5 | 6 | # Sub-directory next to file 7 | target_dir="./cut/" 8 | 9 | # directory inside mpv config folder 10 | # target_dir="~~/cutfragments" 11 | 12 | # Cutom directory 13 | # target_dir="C:\path_to\custom_dir" 14 | 15 | 16 | # Custom Input 17 | # Mark position and cut 18 | key_slicing_mark=c 19 | 20 | # Clear Selection 21 | key_clear_slicing_mark=C 22 | 23 | # Toggle capture audio 24 | key_slicing_audio=ctrl+c -------------------------------------------------------------------------------- /config/mpv/temp.conf: -------------------------------------------------------------------------------- 1 | profile=high-quality 2 | vo=gpu 3 | hwdec=auto-copy-safe 4 | hwdec-codecs=all 5 | gpu-context=wayland 6 | scale=ewa_lanczossharp 7 | cscale=ewa_lanczossharp 8 | interpolation 9 | tscale=oversample 10 | embeddedfonts=yes 11 | sub-auto=fuzzy 12 | sub-visibility=yes 13 | script-opts=ytdl_hook-ytdl_path=/usr/bin/yt-dlp 14 | background-color='#1e1e2e' 15 | osd-back-color='#6c7086' 16 | osd-border-color='#11111b' 17 | osd-color='#cdd6f4' 18 | osd-shadow-color='#1e1e2e' 19 | [1080p] 20 | ytdl-format=bestvideo[height<=?1080]+bestaudio/best 21 | -------------------------------------------------------------------------------- /config/mwc/fix-portals.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | sleep 1 3 | systemctl --user import-environment WAYLAND_DISPLAY XDG_CURRENT_DESKTOP 4 | dbus-update-activation-environment --systemd WAYLAND_DISPLAY XDG_CURRENT_DESKTOP=mwc 5 | sleep 1 6 | systemctl --user restart xdg-desktop-portal.service 7 | -------------------------------------------------------------------------------- /config/newm/config.py: -------------------------------------------------------------------------------- 1 | configV3.py -------------------------------------------------------------------------------- /config/newm/portal.conf: -------------------------------------------------------------------------------- 1 | [screencast] 2 | output_name=eDP-1 3 | max_fps=30 4 | chooser_type=none 5 | -------------------------------------------------------------------------------- /config/nvim/.editorconfig: -------------------------------------------------------------------------------- 1 | root = true 2 | 3 | [*] 4 | end_of_line = lf 5 | 6 | [*.lua] 7 | indent_size = 2 8 | indent_style = space 9 | -------------------------------------------------------------------------------- /config/nvim/.gitignore: -------------------------------------------------------------------------------- 1 | lazy-lock.json 2 | -------------------------------------------------------------------------------- /config/nvim/.luacheckrc: -------------------------------------------------------------------------------- 1 | ---@diagnostic disable: lowercase-global 2 | -- luacheck: ignore 111 3 | globals = { 'vim' } 4 | max_line_length = false 5 | -------------------------------------------------------------------------------- /config/nvim/.stylua.toml: -------------------------------------------------------------------------------- 1 | column_width = 79 2 | indent_type = 'Spaces' 3 | indent_width = 2 4 | quote_style = 'AutoPreferSingle' 5 | -------------------------------------------------------------------------------- /config/nvim/filetype.lua: -------------------------------------------------------------------------------- 1 | vim.filetype.add({ 2 | extension = { 3 | -- Special filetypes for Weixin Mini Program 4 | wxss = 'css', 5 | wxml = 'html', 6 | }, 7 | }) 8 | 9 | vim.filetype.add({ 10 | pattern = { ['.*/hypr/.*%.conf'] = 'hyprlang' }, 11 | }) 12 | 13 | vim.filetype.add({ 14 | pattern = { ['zathurarc'] = 'zathurarc' }, 15 | }) 16 | 17 | vim.filetype.add({ 18 | pattern = { ['.*%.rasi'] = 'rasi' }, 19 | }) 20 | vim.treesitter.language.register('markdown', 'quarto') 21 | vim.filetype.add({ 22 | pattern = { ['.*%.ipynb'] = 'jupyter' }, 23 | }) 24 | -------------------------------------------------------------------------------- /config/nvim/ftplugin/bash.lua: -------------------------------------------------------------------------------- 1 | sh -------------------------------------------------------------------------------- /config/nvim/ftplugin/bib.lua: -------------------------------------------------------------------------------- 1 | vim.bo.textwidth = 106 2 | vim.bo.commentstring = '% %s' 3 | -------------------------------------------------------------------------------- /config/nvim/ftplugin/c.lua: -------------------------------------------------------------------------------- 1 | cpp.lua -------------------------------------------------------------------------------- /config/nvim/ftplugin/cpp.lua: -------------------------------------------------------------------------------- 1 | local set = vim.opt 2 | 3 | set.tabstop = 2 4 | set.shiftwidth = 2 5 | set.expandtab = true 6 | set.cinoptions = ':0g0(0s' 7 | vim.bo.commentstring = '// %s' 8 | -------------------------------------------------------------------------------- /config/nvim/ftplugin/cs.lua: -------------------------------------------------------------------------------- 1 | set = vim.bo 2 | set.shiftwidth = 4 3 | set.softtabstop = 4 4 | set.expandtab = true 5 | -------------------------------------------------------------------------------- /config/nvim/ftplugin/help.lua: -------------------------------------------------------------------------------- 1 | if vim.bo.ma then 2 | return 3 | end 4 | 5 | vim.bo.buflisted = false 6 | vim.opt_local.list = false 7 | vim.opt_local.number = false 8 | vim.opt_local.relativenumber = false 9 | vim.opt_local.scrolloff = 999 10 | vim.opt_local.signcolumn = "no" 11 | vim.opt_local.spell = false 12 | vim.opt_local.statuscolumn = "" 13 | -------------------------------------------------------------------------------- /config/nvim/ftplugin/html.lua: -------------------------------------------------------------------------------- 1 | -- Add custom tags for wxml files to indent them correctly 2 | if vim.fn.fnamemodify(vim.api.nvim_buf_get_name(0), ":e") == "wxml" then 3 | vim.b.html_indent_inctags = "view" 4 | end 5 | 6 | vim.bo.commentstring = "" 7 | -------------------------------------------------------------------------------- /config/nvim/ftplugin/json.lua: -------------------------------------------------------------------------------- 1 | vim.bo.shiftwidth = 2 2 | vim.bo.tabstop = 2 3 | vim.bo.expandtab = true 4 | vim.bo.autoindent = true 5 | vim.bo.softtabstop = 2 6 | vim.bo.textwidth = 106 7 | -------------------------------------------------------------------------------- /config/nvim/ftplugin/lua.lua: -------------------------------------------------------------------------------- 1 | vim.bo.shiftwidth = 2 2 | vim.bo.tabstop = 2 3 | vim.bo.softtabstop = 2 4 | vim.bo.textwidth = 106 5 | vim.bo.expandtab = true 6 | vim.bo.autoindent = true 7 | -------------------------------------------------------------------------------- /config/nvim/ftplugin/make.lua: -------------------------------------------------------------------------------- 1 | vim.bo.expandtab = false 2 | vim.bo.shiftwidth = 4 3 | vim.bo.softtabstop = 0 4 | vim.bo.tabstop = 4 5 | -------------------------------------------------------------------------------- /config/nvim/ftplugin/markdown.lua: -------------------------------------------------------------------------------- 1 | vim.bo.textwidth = 106 2 | vim.bo.sw = 4 3 | vim.bo.cindent = false 4 | vim.bo.smartindent = false 5 | vim.opt_local.wrap = true 6 | vim.opt_local.linebreak = true 7 | vim.bo.commentstring = "" 8 | -------------------------------------------------------------------------------- /config/nvim/ftplugin/netrw.vim: -------------------------------------------------------------------------------- 1 | setlocal bufhidden=hide 2 | setlocal buftype=nofile 3 | setlocal nobuflisted 4 | setlocal nolist 5 | setlocal nonumber 6 | setlocal norelativenumber 7 | setlocal nospell 8 | setlocal signcolumn=no 9 | setlocal winbar= 10 | -------------------------------------------------------------------------------- /config/nvim/ftplugin/norl.lua: -------------------------------------------------------------------------------- 1 | norg.lua -------------------------------------------------------------------------------- /config/nvim/ftplugin/python.lua: -------------------------------------------------------------------------------- 1 | vim.bo.shiftwidth = 4 2 | vim.bo.tabstop = 4 3 | vim.bo.softtabstop = 4 4 | vim.bo.expandtab = true 5 | vim.bo.textwidth = 80 6 | vim.bo.autoindent = true 7 | vim.bo.smartindent = true 8 | -------------------------------------------------------------------------------- /config/nvim/ftplugin/qf.lua: -------------------------------------------------------------------------------- 1 | -- If is quickfix list, always open it at the bottom of screen 2 | if vim.fn.win_gettype() == 'quickfix' then 3 | vim.cmd.wincmd('J') 4 | end 5 | 6 | vim.bo.buflisted = false 7 | vim.opt_local.list = false 8 | vim.opt_local.spell = false 9 | vim.opt_local.nu = false 10 | vim.opt_local.rnu = false 11 | vim.opt_local.signcolumn = 'no' 12 | vim.opt_local.statuscolumn = '' 13 | 14 | -- Provides `:Cfilter` and `:Lfilter` commands 15 | vim.cmd.packadd({ 16 | args = { 'cfilter' }, 17 | mods = { emsg_silent = true }, 18 | }) 19 | -------------------------------------------------------------------------------- /config/nvim/ftplugin/quarto.lua: -------------------------------------------------------------------------------- 1 | markdown.lua -------------------------------------------------------------------------------- /config/nvim/ftplugin/sh.lua: -------------------------------------------------------------------------------- 1 | vim.treesitter.language.register("bash", "zsh") 2 | -------------------------------------------------------------------------------- /config/nvim/ftplugin/tex.lua: -------------------------------------------------------------------------------- 1 | vim.bo.textwidth = 106 2 | vim.opt_local.wrap = true 3 | vim.bo.commentstring = '% %s' 4 | -------------------------------------------------------------------------------- /config/nvim/ftplugin/zsh.lua: -------------------------------------------------------------------------------- 1 | sh.lua -------------------------------------------------------------------------------- /config/nvim/init.lua: -------------------------------------------------------------------------------- 1 | require('config.defaults') 2 | require('config.keymappings') 3 | require('config.autocmds') 4 | require('config.lazy').setup() 5 | -------------------------------------------------------------------------------- /config/nvim/lsp/basedpyright.lua: -------------------------------------------------------------------------------- 1 | local root_markers = { 2 | 'pyproject.toml', 3 | 'setup.py', 4 | 'setup.cfg', 5 | 'requirements.txt', 6 | 'Pipfile', 7 | 'pyrightconfig.json', 8 | } 9 | return { 10 | cmd = { 'basedpyright-langserver', '--stdio' }, 11 | root_markers = root_markers, 12 | filetypes = { 'python' }, 13 | settings = { 14 | basedpyright = { 15 | analysis = { 16 | autoSearchPaths = true, 17 | autoImportCompletions = true, 18 | inlayHints = { 19 | variableTypes = true, 20 | } 21 | }, 22 | }, 23 | }, 24 | single_file_support = true, 25 | } 26 | -------------------------------------------------------------------------------- /config/nvim/lsp/bashls.lua: -------------------------------------------------------------------------------- 1 | return { 2 | cmd = { 'bash-language-server', 'start' }, 3 | filetypes = { 'sh', 'bash' }, 4 | settings = { 5 | bashIde = { 6 | globPattern = '*@(.sh|.inc|.bash|.zsh|.command)', 7 | }, 8 | }, 9 | single_file_support = true, 10 | } 11 | -------------------------------------------------------------------------------- /config/nvim/lsp/csharp_ls.lua: -------------------------------------------------------------------------------- 1 | return { 2 | cmd = { 'csharp-ls' }, 3 | filetypes = { 'cs' }, 4 | root_markers = { '.git', '*.sln', '*.csproj' }, 5 | init_options = { 6 | AutomaticWorkspaceInit = true, 7 | }, 8 | } 9 | -------------------------------------------------------------------------------- /config/nvim/lsp/cssls.lua: -------------------------------------------------------------------------------- 1 | return { 2 | cmd = { 'vscode-css-languageserver', '--stdio' }, 3 | filetypes = { 'css', 'scss', 'less' }, 4 | } 5 | -------------------------------------------------------------------------------- /config/nvim/lsp/digestif.lua: -------------------------------------------------------------------------------- 1 | return { 2 | cmd = { "digestif" }, 3 | filetypes = { 'tex' }, 4 | root_markers = { 'Tectonic.toml', '.git' }, 5 | } 6 | -------------------------------------------------------------------------------- /config/nvim/lsp/dockerls.lua: -------------------------------------------------------------------------------- 1 | return { 2 | cmd = { 'docker-langserver', '--stdio' }, 3 | root_markers = { 4 | 'Dockerfile', 5 | }, 6 | filetypes = { 7 | 'dockerfile', 8 | }, 9 | single_file_support = true, 10 | } 11 | -------------------------------------------------------------------------------- /config/nvim/lsp/emmet.lua: -------------------------------------------------------------------------------- 1 | return { 2 | cmd = { "emmet-language-server", "--stdio" }, 3 | filetypes = { 4 | "css", 5 | "html", 6 | "blade", 7 | "php", 8 | "javascript", 9 | "javascriptreact", 10 | "typescriptreact", 11 | }, 12 | root_markers = { 13 | ".git", 14 | }, 15 | } 16 | -------------------------------------------------------------------------------- /config/nvim/lsp/jsonls.lua: -------------------------------------------------------------------------------- 1 | return { 2 | filetypes = { 'json' }, 3 | on_new_config = function(new_config) 4 | new_config.settings.json.schemas = new_config.settings.json.schemas or {} 5 | vim.list_extend( 6 | new_config.settings.json.schemas, 7 | require('schemastore').json.schemas() 8 | ) 9 | end, 10 | settings = { 11 | json = { 12 | format = { 13 | enable = true, 14 | }, 15 | validate = { enable = true }, 16 | }, 17 | }, 18 | } 19 | -------------------------------------------------------------------------------- /config/nvim/lsp/marksman.lua: -------------------------------------------------------------------------------- 1 | require('config.lsp').setup({ 2 | cmd = { 'marksman', 'server' }, 3 | single_file_suppor = true, 4 | root_markers = { '.marksman.toml', 'build.sh' }, 5 | filetypes = { 'markdown', "quarto" }, 6 | }) 7 | -------------------------------------------------------------------------------- /config/nvim/lsp/nimls.lua: -------------------------------------------------------------------------------- 1 | return { 2 | cmd = { 'nimlangserver' }, 3 | filetypes = { 'nim' }, 4 | settings = { 5 | nim = { 6 | nimsuggestPath = '/usr/bin/', 7 | }, 8 | }, 9 | -- single_file_support = true, 10 | } 11 | -------------------------------------------------------------------------------- /config/nvim/lsp/ruff_ls.lua: -------------------------------------------------------------------------------- 1 | local root_markers = { 2 | 'pyproject.toml', 3 | 'setup.py', 4 | 'setup.cfg', 5 | 'requirements.txt', 6 | 'Pipfile', 7 | 'pyrightconfig.json', 8 | } 9 | return { 10 | cmd = { 'ruff', 'server' }, 11 | filetypes = { 'python' }, 12 | single_file_support = true, 13 | root_markers = root_markers, 14 | init_options = { 15 | settings = { 16 | args = { '--line-length=180' }, 17 | }, 18 | }, 19 | } 20 | -------------------------------------------------------------------------------- /config/nvim/lsp/texlab.lua: -------------------------------------------------------------------------------- 1 | return { 2 | cmd = { 'texlab' }, 3 | filetypes = { 'tex', 'bib' }, 4 | root_markers = { 'Tectonic.toml', '.git', '*.bib' }, 5 | settings = { 6 | texlab = { 7 | rootDirectory = nil, 8 | chktex = { 9 | onOpenAndSave = true, 10 | onEdit = true, 11 | }, 12 | diagnosticsDelay = 300, 13 | latexFormatter = 'latexindent', 14 | latexindent = { 15 | ['local'] = nil, 16 | modifyLineBreaks = false, 17 | }, 18 | bibtexFormatter = 'texlab', 19 | formatterLineLength = 80, 20 | }, 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /config/nvim/lsp/tsserver.lua: -------------------------------------------------------------------------------- 1 | ---@type vim.lsp.Config 2 | return { 3 | init_options = { hostInfo = "neovim" }, 4 | cmd = { "typescript-language-server", "--stdio" }, 5 | filetypes = { 6 | "javascript", 7 | "javascriptreact", 8 | "javascript.jsx", 9 | "typescript", 10 | "typescriptreact", 11 | "typescript.tsx", 12 | }, 13 | root_markers = { "tsconfig.json", "jsconfig.json", "package.json"}, 14 | single_file_support = true, 15 | } 16 | -------------------------------------------------------------------------------- /config/nvim/lsp/v_analyzer.lua: -------------------------------------------------------------------------------- 1 | return { 2 | cmd = { 'v-analyzer' }, 3 | root_markers = { 'v.mod' }, 4 | filetypes = { 'v' }, 5 | } 6 | -------------------------------------------------------------------------------- /config/nvim/lua/dap/c.lua: -------------------------------------------------------------------------------- 1 | local M = {} 2 | local dap_utils = require('utils.dap') 3 | 4 | ---@type dapcache_t 5 | local cache = dap_utils.new_cache() 6 | 7 | M.adapter = { 8 | type = 'server', 9 | port = '${port}', 10 | executable = { 11 | command = vim.fn.exepath('codelldb'), -- must be full path 12 | args = { '--port', '${port}' }, 13 | }, 14 | } 15 | 16 | M.config = { 17 | { 18 | type = 'codelldb', 19 | name = 'Launch file', 20 | request = 'launch', 21 | cwd = '${workspaceFolder}', 22 | stopOnEntry = false, 23 | program = dap_utils.get_prog(cache), 24 | args = dap_utils.get_args(cache), 25 | }, 26 | } 27 | 28 | return M 29 | -------------------------------------------------------------------------------- /config/nvim/lua/dap/cpp.lua: -------------------------------------------------------------------------------- 1 | c.lua -------------------------------------------------------------------------------- /config/nvim/lua/dap/lua.lua: -------------------------------------------------------------------------------- 1 | local M = {} 2 | 3 | M.adapter = function(callback, config) 4 | callback({ 5 | type = 'server', 6 | host = config.host or '127.0.0.1', 7 | port = config.port or 8086, 8 | }) 9 | end 10 | 11 | M.config = { 12 | { 13 | type = 'nlua', 14 | request = 'attach', 15 | name = 'Attach to running Neovim instance', 16 | }, 17 | } 18 | 19 | return M 20 | -------------------------------------------------------------------------------- /config/nvim/lua/dap/sh.lua: -------------------------------------------------------------------------------- 1 | bash.lua -------------------------------------------------------------------------------- /config/nvim/lua/plugins/dev/lang/json.lua: -------------------------------------------------------------------------------- 1 | return { 2 | 3 | -- add json to treesitter 4 | { 5 | "nvim-treesitter/nvim-treesitter", 6 | opts = function(_, opts) 7 | if type(opts.ensure_installed) == "table" then 8 | vim.list_extend(opts.ensure_installed, { "json", "json5", "jsonc" }) 9 | end 10 | end, 11 | }, 12 | } 13 | -------------------------------------------------------------------------------- /config/nvim/lua/plugins/dev/lang/latex.lua: -------------------------------------------------------------------------------- 1 | return { 2 | { 3 | "nvim-treesitter/nvim-treesitter", 4 | opts = function(_, opts) 5 | if type(opts.ensure_installed) == "table" then 6 | vim.list_extend(opts.ensure_installed, { "bibtex", "latex" }) 7 | end 8 | end, 9 | }, 10 | { 11 | "williamboman/mason.nvim", 12 | opts = function(_, opts) 13 | opts.ensure_installed = opts.ensure_installed or {} 14 | vim.list_extend(opts.ensure_installed, { 15 | -- "latexindent", 16 | -- "texlab", 17 | "tex-fmt", 18 | "digestif", 19 | "ltex-ls-plus", 20 | "bibtex-tidy" 21 | }) 22 | end, 23 | }, 24 | } 25 | -------------------------------------------------------------------------------- /config/nvim/lua/plugins/dev/lang/nim.lua: -------------------------------------------------------------------------------- 1 | return { 2 | { 3 | "nvim-treesitter/nvim-treesitter", 4 | opts = function(_, opts) 5 | if type(opts.ensure_installed) == "table" then 6 | vim.list_extend(opts.ensure_installed, { "nim", "nim_format_string" }) 7 | end 8 | end, 9 | }, 10 | -- { 11 | -- "williamboman/mason.nvim", 12 | -- opts = function(_, opts) 13 | -- opts.ensure_installed = opts.ensure_installed or {} 14 | -- table.insert(opts.ensure_installed, "nimlangserver") 15 | -- end, 16 | -- }, 17 | } 18 | -------------------------------------------------------------------------------- /config/nvim/lua/plugins/dev/lang/sh.lua: -------------------------------------------------------------------------------- 1 | return { 2 | { 3 | "williamboman/mason.nvim", 4 | opts = function(_, opts) 5 | opts.ensure_installed = opts.ensure_installed or {} 6 | table.insert(opts.ensure_installed, "bash-language-server") 7 | table.insert(opts.ensure_installed, "shfmt") 8 | table.insert(opts.ensure_installed, "shellcheck") 9 | end, 10 | }, 11 | } 12 | -------------------------------------------------------------------------------- /config/nvim/lua/plugins/dev/lang/v.lua: -------------------------------------------------------------------------------- 1 | return { 2 | { 3 | "nvim-treesitter/nvim-treesitter", 4 | opts = function(_, opts) 5 | if type(opts.ensure_installed) == "table" then 6 | vim.list_extend(opts.ensure_installed, { "v" }) 7 | end 8 | end, 9 | }, 10 | { 11 | "williamboman/mason.nvim", 12 | opts = function(_, opts) 13 | opts.ensure_installed = opts.ensure_installed or {} 14 | table.insert(opts.ensure_installed, "v-analyzer") 15 | end, 16 | }, 17 | } 18 | -------------------------------------------------------------------------------- /config/nvim/lua/plugins/dev/refactoring.lua: -------------------------------------------------------------------------------- 1 | return { 2 | { 3 | "ThePrimeagen/refactoring.nvim", 4 | config = function() 5 | require("refactoring").setup { 6 | prompt_func_return_type = { 7 | go = true, 8 | cpp = true, 9 | c = true, 10 | java = true, 11 | }, 12 | prompt_func_param_type = { 13 | go = true, 14 | cpp = true, 15 | c = true, 16 | java = true, 17 | }, 18 | } 19 | end, 20 | }, 21 | } 22 | -------------------------------------------------------------------------------- /config/nvim/lua/plugins/dev/rest.lua: -------------------------------------------------------------------------------- 1 | return { 2 | { 3 | "lima1909/resty.nvim", 4 | dependencies = { "nvim-lua/plenary.nvim" }, 5 | }, 6 | } 7 | -------------------------------------------------------------------------------- /config/nvim/lua/plugins/dev/template.lua: -------------------------------------------------------------------------------- 1 | -- with lazy.nvim 2 | 3 | return { 4 | "nvimdev/template.nvim", 5 | cmd = { "Template", "TemProject" }, 6 | config = function() 7 | require("template").setup { 8 | temp_dir = "~/.config/nvim/template", 9 | author = "Diego Crag", 10 | email = "dcrag@pm.me", 11 | } 12 | end, 13 | } 14 | -------------------------------------------------------------------------------- /config/nvim/lua/plugins/general/harpoon.lua: -------------------------------------------------------------------------------- 1 | return { 2 | "cbochs/grapple.nvim", 3 | keys = { 4 | { "m", "Grapple toggle", desc = "[m]ark file" }, 5 | { "'", "Grapple toggle_tags", desc = "Marked Files" }, 6 | { "`", "Grapple toggle_scopes", desc = "Grapple toggle scopes" }, 7 | { "j", "Grapple cycle forward", desc = "Grapple cycle forward" }, 8 | { "k", "Grapple cycle backward", desc = "Grapple cycle backward" }, 9 | }, 10 | } 11 | -------------------------------------------------------------------------------- /config/nvim/lua/plugins/modes/git.lua: -------------------------------------------------------------------------------- 1 | return { 2 | { 3 | 'SuperBo/fugit2.nvim', 4 | build = false, 5 | opts = { 6 | width = 100, 7 | }, 8 | dependencies = { 9 | 'MunifTanjim/nui.nvim', 10 | 'nvim-lua/plenary.nvim', 11 | { 12 | 'chrisgrieser/nvim-tinygit', -- optional: for Github PR view 13 | dependencies = { 'stevearc/dressing.nvim' } 14 | }, 15 | }, 16 | cmd = { 'Fugit2', 'Fugit2Diff', 'Fugit2Graph' }, 17 | keys = { 18 | { 'gm', mode = 'n', 'Fugit2', desc = 'Git Mode' }, 19 | { 'gg', mode = 'n', 'Fugit2Graph', desc = 'Git Graph' }, 20 | } 21 | }, 22 | } 23 | -------------------------------------------------------------------------------- /config/nvim/lua/plugins/modes/init.lua: -------------------------------------------------------------------------------- 1 | return { 2 | { 3 | "nvzone/typr", 4 | dependencies = "nvzone/volt", 5 | opts = {}, 6 | cmd = { "Typr", "TyprStats" }, 7 | }, 8 | { 9 | "m4xshen/hardtime.nvim", 10 | lazy = false, 11 | dependencies = { "MunifTanjim/nui.nvim" }, 12 | opts = {}, 13 | }, 14 | } 15 | -------------------------------------------------------------------------------- /config/nvim/lua/plugins/ui/icons.lua: -------------------------------------------------------------------------------- 1 | return { 2 | { 3 | 'DaikyXendo/nvim-material-icon', 4 | } 5 | -- { "nvim-tree/nvim-web-devicons", opts = {} }, 6 | } 7 | -------------------------------------------------------------------------------- /config/nvim/lua/snippets/all.lua: -------------------------------------------------------------------------------- 1 | local M = {} 2 | local us = require('utils.snippets.snips') 3 | local conds = require('utils.snippets.conds') 4 | local ls = require('luasnip') 5 | local i = ls.insert_node 6 | local c = ls.choice_node 7 | 8 | M.snippets = { 9 | us.s( 10 | { 11 | trig = 'date', 12 | desc = 'Current date and time', 13 | condition = conds.in_tsnode({ 'comment', 'string', 'curly_group' }), 14 | show_condition = conds.in_tsnode({ 'comment', 'string', 'curly_group' }), 15 | }, 16 | c(1, { 17 | i(nil, os.date()), 18 | i(nil, os.date('%m.%d.%Y')), 19 | }) 20 | ), 21 | } 22 | 23 | return M 24 | -------------------------------------------------------------------------------- /config/nvim/lua/ui/winbar/sources/init.lua: -------------------------------------------------------------------------------- 1 | ---@class winbar_source_t 2 | ---@field get_symbols fun(buf: integer, win: integer, cursor: integer[]): winbar_symbol_t[] 3 | 4 | ---@type table 5 | return setmetatable({}, { 6 | __index = function(_, key) 7 | return require('ui.winbar.sources.' .. key) 8 | end, 9 | }) 10 | -------------------------------------------------------------------------------- /config/nvim/lua/ui/winbar/utils/init.lua: -------------------------------------------------------------------------------- 1 | return setmetatable({}, { 2 | __index = function(_, key) 3 | return vim.F.npcall(require, 'ui.winbar.utils.' .. key) 4 | or require('utils.' .. key) 5 | end, 6 | }) 7 | -------------------------------------------------------------------------------- /config/nvim/lua/ui/winbar/utils/source.lua: -------------------------------------------------------------------------------- 1 | local M = {} 2 | 3 | ---@param sources winbar_source_t[] 4 | ---@return winbar_source_t 5 | function M.fallback(sources) 6 | return { 7 | get_symbols = function(buf, win, cursor) 8 | for _, source in ipairs(sources) do 9 | local symbols = source.get_symbols(buf, win, cursor) 10 | if not vim.tbl_isempty(symbols) then 11 | return symbols 12 | end 13 | end 14 | return {} 15 | end, 16 | } 17 | end 18 | 19 | return M 20 | -------------------------------------------------------------------------------- /config/nvim/lua/utils/buf.lua: -------------------------------------------------------------------------------- 1 | local M = {} 2 | 3 | ---Check if a buffer is empty 4 | ---@param buf integer? default to current buffer 5 | ---@return boolean 6 | function M.is_empty(buf) 7 | buf = buf or vim.api.nvim_get_current_buf() 8 | if not vim.api.nvim_buf_is_valid(buf) then 9 | return true 10 | end 11 | 12 | local line_count = vim.api.nvim_buf_line_count(buf) 13 | return line_count == 0 14 | or line_count == 1 15 | and vim.api.nvim_buf_get_lines(buf, 0, 1, false)[1] == '' 16 | end 17 | 18 | return M 19 | -------------------------------------------------------------------------------- /config/nvim/lua/utils/init.lua: -------------------------------------------------------------------------------- 1 | return setmetatable({}, { 2 | __index = function(_, key) 3 | return require('utils.' .. key) 4 | end, 5 | }) 6 | -------------------------------------------------------------------------------- /config/nvim/lua/utils/notify.lua: -------------------------------------------------------------------------------- 1 | local M = {} 2 | 3 | function M.warn(msg, name) 4 | vim.notify(msg, vim.log.levels.WARN, { title = name }) 5 | end 6 | 7 | function M.error(msg, name) 8 | vim.notify(msg, vim.log.levels.ERROR, { title = name }) 9 | end 10 | 11 | function M.info(msg, name) 12 | vim.notify(msg, vim.log.levels.INFO, { title = name }) 13 | end 14 | 15 | return M 16 | -------------------------------------------------------------------------------- /config/nvim/lua/utils/snippets/init.lua: -------------------------------------------------------------------------------- 1 | return setmetatable({}, { 2 | __index = function(_, key) 3 | return require('utils.snippets.' .. key) 4 | end, 5 | }) 6 | -------------------------------------------------------------------------------- /config/nvim/lua/utils/static/borders/init.lua: -------------------------------------------------------------------------------- 1 | return vim.g.has_nf and require('utils.static.borders._borders_nf') 2 | or require('utils.static.borders._borders') 3 | -------------------------------------------------------------------------------- /config/nvim/lua/utils/static/boxes/init.lua: -------------------------------------------------------------------------------- 1 | return vim.g.has_nf and require('utils.static.boxes._boxes_nf') 2 | or require('utils.static.boxes._boxes') 3 | -------------------------------------------------------------------------------- /config/nvim/lua/utils/static/init.lua: -------------------------------------------------------------------------------- 1 | return setmetatable({}, { 2 | __index = function(_, key) 3 | return require('utils.static.' .. key) 4 | end, 5 | }) 6 | -------------------------------------------------------------------------------- /config/nvim/lua/utils/str.lua: -------------------------------------------------------------------------------- 1 | local M = {} 2 | 3 | ---Convert a snake_case string to camelCase 4 | ---@param str string? 5 | ---@return string? 6 | function M.snake_to_camel(str) 7 | if not str then 8 | return nil 9 | end 10 | return ( 11 | str:gsub('^%l', string.upper):gsub('_%l', string.upper):gsub('_', '') 12 | ) 13 | end 14 | 15 | ---Convert a camelCase string to snake_case 16 | ---@param str string 17 | ---@return string|nil 18 | function M.camel_to_snake(str) 19 | if not str then 20 | return nil 21 | end 22 | return (str:gsub('%u', '_%1'):gsub('^_', ''):lower()) 23 | end 24 | 25 | return M 26 | -------------------------------------------------------------------------------- /config/nvim/lua/utils/tab.lua: -------------------------------------------------------------------------------- 1 | local M = {} 2 | 3 | ---Check if a tab page is empty 4 | ---A tab page is considered 'empty' if it has a single empty window 5 | ---@param tab integer? default to current tab page 6 | ---@return boolean 7 | function M.is_empty(tab) 8 | tab = tab or vim.api.nvim_get_current_tabpage() 9 | if not vim.api.nvim_tabpage_is_valid(tab) then 10 | return true 11 | end 12 | 13 | local wins = vim.api.nvim_tabpage_list_wins(tab) 14 | if #wins > 1 then 15 | return false 16 | end 17 | return require('utils.win').is_empty(wins[1]) 18 | end 19 | 20 | return M 21 | -------------------------------------------------------------------------------- /config/nvim/lua/utils/ui.lua: -------------------------------------------------------------------------------- 1 | local M = {} 2 | function M.foldexpr() 3 | local buf = vim.api.nvim_get_current_buf() 4 | if vim.b[buf].ts_folds == nil then 5 | -- as long as we don't have a filetype, don't bother 6 | -- checking if treesitter is available (it won't) 7 | if vim.bo[buf].filetype == '' then 8 | return '0' 9 | end 10 | if vim.bo[buf].filetype:find('dashboard') then 11 | vim.b[buf].ts_folds = false 12 | else 13 | vim.b[buf].ts_folds = pcall(vim.treesitter.get_parser, buf) 14 | end 15 | end 16 | return vim.b[buf].ts_folds and vim.treesitter.foldexpr() or '0' 17 | end 18 | 19 | return M 20 | -------------------------------------------------------------------------------- /config/nvim/nvim.version: -------------------------------------------------------------------------------- 1 | v0.10.0 -------------------------------------------------------------------------------- /config/nvim/plugin/clean.vim: -------------------------------------------------------------------------------- 1 | function! ClearRegisters() 2 | let regs='abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789/-="*+' 3 | let i=0 4 | while (i 6 | 7 | int main() { 8 | printf("Hola Mundo"); 9 | { 10 | { _cursor_ } 11 | } 12 | return 0; 13 | } 14 | -------------------------------------------------------------------------------- /config/nvim/template/cpp/basic.cpp: -------------------------------------------------------------------------------- 1 | // Date: {{_date_}} 2 | // Autor: {{_author_}} 3 | // Email: {{_email_}} 4 | 5 | #include 6 | using namespace std; 7 | 8 | int main() { 9 | cout << "Hola Mundo" << endl; 10 | {{_cursor_}} 11 | return 0; 12 | } 13 | 14 | -------------------------------------------------------------------------------- /config/nvim/template/cpp/basic_class.cpp: -------------------------------------------------------------------------------- 1 | // Date: {{_date_}} 2 | // Autor: {{_author_}} 3 | // Email: {{_email_}} 4 | 5 | #include 6 | using namespace std; 7 | 8 | class HelloWorld { 9 | public: 10 | void sayHello() { 11 | cout << "Hola Mundo" << endl; 12 | {{_cursor_}} 13 | } 14 | }; 15 | 16 | int main() { 17 | HelloWorld hello; 18 | hello.sayHello(); 19 | return 0; 20 | } 21 | -------------------------------------------------------------------------------- /config/nvim/template/cpp/class.cpp: -------------------------------------------------------------------------------- 1 | // File: {{_file_name_}} 2 | // Author: {{_author_}} 3 | // Email: {{_email_}} 4 | // Date: {{_date_}} 5 | 6 | class {{_cursor_}} { 7 | public: 8 | {{_cursor_}}() { 9 | // Constructor 10 | } 11 | 12 | ~{{_cursor_}}() { 13 | // Destructor 14 | } 15 | 16 | // Métodos y miembros de la clase aquí 17 | 18 | private: 19 | // Variables miembro privadas aquí 20 | }; 21 | -------------------------------------------------------------------------------- /config/nvim/template/cpp/punteros_multipicar.cpp: -------------------------------------------------------------------------------- 1 | // Date: {{_date_}} 2 | // Autor: {{_author_}} 3 | // Email: {{_email_}} 4 | 5 | #include 6 | using namespace std; 7 | 8 | void duplicate(int *num) { *num *= 2; } 9 | 10 | int main() { 11 | int x = 5; 12 | 13 | duplicate(&x); 14 | 15 | // Ahora x = 10 16 | return 0; 17 | } 18 | -------------------------------------------------------------------------------- /config/nvim/template/cpp/punteros_swap.cpp: -------------------------------------------------------------------------------- 1 | // Date: {{_date_}} 2 | // Autor: {{_author_}} 3 | // Email: {{_email_}} 4 | 5 | #include 6 | using namespace std; 7 | 8 | void swap(int *a, int *b) { 9 | int temp = *a; 10 | *a = *b; 11 | *b = temp; 12 | } 13 | 14 | int main() { 15 | int x = 5; 16 | int y = 10; 17 | 18 | swap(&x, &y); 19 | 20 | // Ahora x = 10, y = 5 21 | return 0; 22 | } 23 | -------------------------------------------------------------------------------- /config/nvim/template/norg/sa.norg: -------------------------------------------------------------------------------- 1 | @document.meta 2 | title: {{_file_name_}} 3 | description: Revision del estado del arte de {{_date_}} 4 | authors: think-crag 5 | categories: Estado del arte 6 | created: {{_date_}} 7 | updated: 2024-09-20T21:10:11-0600 8 | version: 1.1.1 9 | @end 10 | 11 | * {{_cursor_}} 12 | *Fuente*: IEEE 13 | *Link*: 14 | *Full bibTex*: [Bib]{/ ~/Documentos/Proyectos/Writings/Maestria/Tesis/references.bib} 15 | @code bib 16 | {{_cursor_}} 17 | @end 18 | ** Resumen 19 | 20 | ** Metodología 21 | 22 | ** Contribuciones Clave 23 | 24 | ** Limitaciones 25 | 26 | ** Relación con mi Trabajo 27 | 28 | ** Ideas para la Tesis 29 | -------------------------------------------------------------------------------- /config/nvim/template/norg/schedule.norg: -------------------------------------------------------------------------------- 1 | @document.meta 2 | title: schedule 3 | description: Horario del dia con actividades 4 | authors: think-crag 5 | categories: Schedule 6 | created: {{_date_}} 7 | updated: 2024-09-20T21:12:35-0600 8 | version: 1.1.1 9 | @end 10 | 11 | * Lunes 12 | ** 12:00 - 14:30 13 | - {{_cursor_}} 14 | 15 | * Martes 16 | ** 11:00 - 13:30 17 | - 18 | 19 | * Miércoles 20 | ** 12:00 - 14:30 21 | - 22 | 23 | * Jueves 24 | ** 11:00 - 13:30 25 | - 26 | 27 | * Viernes 28 | ** 11:00 - 13:30 29 | - 30 | -------------------------------------------------------------------------------- /config/nvim/typrstats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CRAG666/dotfiles/7ea1f8adb41002217b1cdd88c11846bd505cba32/config/nvim/typrstats -------------------------------------------------------------------------------- /config/rofi/applets/shared/colors.rasi: -------------------------------------------------------------------------------- 1 | /** 2 | * 3 | * Author : Aditya Shakya (adi1090x) 4 | * Github : @adi1090x 5 | * 6 | * Colors 7 | * 8 | * Available Colors Schemes 9 | * 10 | * adapta catppuccin everforest navy paper 11 | * arc cyberpunk gruvbox nord solarized 12 | * black dracula lovelace onedark yousai 13 | * 14 | **/ 15 | 16 | /* Import color-scheme from `colors` directory */ 17 | 18 | @import "~/.config/rofi/colors/catppuccin.rasi" 19 | -------------------------------------------------------------------------------- /config/rofi/applets/shared/fonts.rasi: -------------------------------------------------------------------------------- 1 | /** 2 | * 3 | * Author : Aditya Shakya (adi1090x) 4 | * Github : @adi1090x 5 | * 6 | * Fonts 7 | * 8 | **/ 9 | 10 | * { 11 | font: "Symbols Nerd Font 12"; 12 | } 13 | -------------------------------------------------------------------------------- /config/rofi/applets/shared/theme.bash: -------------------------------------------------------------------------------- 1 | ## Current Theme 2 | 3 | type="$HOME/.config/rofi/applets/type-3" 4 | style='style-2.rasi' 5 | -------------------------------------------------------------------------------- /config/rofi/assets/notification.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CRAG666/dotfiles/7ea1f8adb41002217b1cdd88c11846bd505cba32/config/rofi/assets/notification.png -------------------------------------------------------------------------------- /config/rofi/colors/catppuccin.rasi: -------------------------------------------------------------------------------- 1 | /** 2 | * 3 | * Author : Aditya Shakya (adi1090x) 4 | * Github : @adi1090x 5 | * 6 | * Colors 7 | **/ 8 | 9 | * { 10 | background: #1E1D2FFF; 11 | background-alt: #282839FF; 12 | foreground: #D9E0EEFF; 13 | selected: #74C7ECFF; 14 | active: #ABE9B3FF; 15 | urgent: #F28FADFF; 16 | } 17 | -------------------------------------------------------------------------------- /config/rofi/colors/colors.txt: -------------------------------------------------------------------------------- 1 | #F5E0DCFF 2 | #F2CDCDFF 3 | #F5C2E7FF 4 | #CBA6F7FF 5 | #EBA0ACFF 6 | #F38BA8FF 7 | #FAB387FF 8 | #F9E2AFFF 9 | #94E2D5FF 10 | #89DCEBFF 11 | #74C7ECFF 12 | #89B4FAFF 13 | #B4BEFEFF 14 | #7287FDFF 15 | #DC8A78FF 16 | -------------------------------------------------------------------------------- /config/rofi/colors/ramdom_color.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | theme="$HOME/.config/rofi/colors/catppuccin.rasi" 4 | get_random_color() { 5 | current_color=$(awk '/selected:/ {print $2}' $theme) 6 | while true; do 7 | random_color=${colors[$RANDOM % ${#colors[@]}]} 8 | if [ "$random_color" != "$current_color" ]; then 9 | break 10 | fi 11 | done 12 | echo "$random_color" 13 | } 14 | 15 | mapfile -t colors <"$HOME/.config/rofi/colors/colors.txt" 16 | 17 | random_color=$(get_random_color) 18 | 19 | sed -i "s/selected:.*$/selected: $random_color;/" $theme 20 | -------------------------------------------------------------------------------- /config/rofi/launcher/launcher.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | 3 | ## Author : Aditya Shakya (adi1090x) 4 | ## Github : @adi1090x 5 | # 6 | ## Rofi : Launcher (Modi Drun, Run, File Browser, Window) 7 | # 8 | ## Available Styles 9 | # 10 | ## style-1 style-2 style-3 style-4 style-5 11 | ## style-6 style-7 style-8 style-9 style-10 12 | 13 | dir="$HOME/.config/rofi/launcher" 14 | theme='style-2' 15 | 16 | ## Run 17 | rofi \ 18 | -show drun \ 19 | -theme ${dir}/${theme}.rasi 20 | -------------------------------------------------------------------------------- /config/rofi/launcher/shared/colors.rasi: -------------------------------------------------------------------------------- 1 | /** 2 | * 3 | * Author : Aditya Shakya (adi1090x) 4 | * Github : @adi1090x 5 | * 6 | * Colors 7 | * 8 | * Available Colors Schemes 9 | * 10 | * adapta catppuccin everforest navy paper 11 | * arc cyberpunk gruvbox nord solarized 12 | * black dracula lovelace onedark yousai 13 | * 14 | **/ 15 | 16 | /* Import color-scheme from `colors` directory */ 17 | 18 | @import "~/.config/rofi/colors/catppuccin.rasi" 19 | -------------------------------------------------------------------------------- /config/rofi/launcher/shared/fonts.rasi: -------------------------------------------------------------------------------- 1 | /** 2 | * 3 | * Author : Aditya Shakya (adi1090x) 4 | * Github : @adi1090x 5 | * 6 | * Fonts 7 | * 8 | **/ 9 | 10 | * { 11 | font: "SF Pro Display 14"; 12 | } 13 | -------------------------------------------------------------------------------- /config/rofi/menu/menu.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | 3 | dir="$HOME/.config/rofi/menu" 4 | theme='style-2' 5 | 6 | ## Run 7 | rofi \ 8 | -show $1 \ 9 | -theme ${dir}/${theme}.rasi 10 | -------------------------------------------------------------------------------- /config/rofi/run.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | ROFI=~/.config/rofi/ 4 | $ROFI/colors/ramdom_color.sh 5 | $ROFI/scripts/$1 $2 6 | -------------------------------------------------------------------------------- /config/rofi/scripts/apps: -------------------------------------------------------------------------------- 1 | /home/think-crag/.config/rofi/applets/bin/apps.sh -------------------------------------------------------------------------------- /config/rofi/scripts/battery: -------------------------------------------------------------------------------- 1 | /home/think-crag/.config/rofi/applets/bin/battery.sh -------------------------------------------------------------------------------- /config/rofi/scripts/bookmarks: -------------------------------------------------------------------------------- 1 | /home/think-crag/.config/rofi/text/bookmarks.sh -------------------------------------------------------------------------------- /config/rofi/scripts/clipboard: -------------------------------------------------------------------------------- 1 | /home/think-crag/.config/rofi/text/clipboard.sh -------------------------------------------------------------------------------- /config/rofi/scripts/launcher: -------------------------------------------------------------------------------- 1 | /home/think-crag/.config/rofi/launcher/launcher.sh -------------------------------------------------------------------------------- /config/rofi/scripts/menu: -------------------------------------------------------------------------------- 1 | /home/think-crag/.config/rofi/menu/menu.sh -------------------------------------------------------------------------------- /config/rofi/scripts/monitor: -------------------------------------------------------------------------------- 1 | /home/think-crag/.config/rofi/applets/bin/monitor.sh -------------------------------------------------------------------------------- /config/rofi/scripts/passman: -------------------------------------------------------------------------------- 1 | /home/think-crag/.config/rofi/text/passman.sh -------------------------------------------------------------------------------- /config/rofi/scripts/powermenu: -------------------------------------------------------------------------------- 1 | /home/think-crag/.config/rofi/applets/bin/powermenu.sh -------------------------------------------------------------------------------- /config/rofi/scripts/quicklinks: -------------------------------------------------------------------------------- 1 | /home/think-crag/.config/rofi/applets/bin/quicklinks.sh -------------------------------------------------------------------------------- /config/rofi/text/bookmarks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CRAG666/dotfiles/7ea1f8adb41002217b1cdd88c11846bd505cba32/config/rofi/text/bookmarks -------------------------------------------------------------------------------- /config/rofi/text/clipboard.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | 3 | theme="style_2" 4 | dir="$HOME/.config/rofi/text" 5 | 6 | rofi -modi clipboard:~/.config/rofi/text/img -show clipboard -show-icons -theme "$dir/$theme" 7 | -------------------------------------------------------------------------------- /config/rofi/text/confirm.rasi: -------------------------------------------------------------------------------- 1 | @import "~/.config/rofi/colors/catppuccin.rasi" 2 | 3 | * { 4 | background-color: @background; 5 | text-color: @foreground; 6 | font: "SF Pro 16"; 7 | } 8 | 9 | window { 10 | width: 1300px; 11 | padding: 25px; 12 | border: 0px; 13 | border-radius: 0px; 14 | border-color: @active; 15 | location: center; 16 | y-offset: -20px; 17 | } 18 | 19 | entry { 20 | expand: true; 21 | text-color: @active; 22 | } 23 | -------------------------------------------------------------------------------- /config/rofi/text/img: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | 3 | tmp_dir="/tmp/cliphist" 4 | rm -rf "$tmp_dir" 5 | 6 | if [[ -n "$1" ]]; then 7 | cliphist decode <<<"$1" | wl-copy 8 | exit 9 | fi 10 | 11 | mkdir -p "$tmp_dir" 12 | 13 | read -r -d '' prog <$tmp_dir/"grp[1]"."grp[3]) 17 | print \$0"\0icon\x1f$tmp_dir/"grp[1]"."grp[3] 18 | next 19 | } 20 | 1 21 | EOF 22 | cliphist list | gawk "$prog" 23 | -------------------------------------------------------------------------------- /config/rofi/theme.rasi: -------------------------------------------------------------------------------- 1 | * { 2 | main-bg: #11111be6; 3 | main-fg: #cdd6f4ff; 4 | main-br: #cba6f7ff; 5 | main-ex: #f5e0dcff; 6 | select-bg: #b4befeff; 7 | select-fg: #11111bff; 8 | separatorcolor: transparent; 9 | border-color: transparent; 10 | } 11 | -------------------------------------------------------------------------------- /config/swww/wall.blur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CRAG666/dotfiles/7ea1f8adb41002217b1cdd88c11846bd505cba32/config/swww/wall.blur -------------------------------------------------------------------------------- /config/swww/wall.ctl: -------------------------------------------------------------------------------- 1 | 1|Catppuccin-Mocha|/home/think-crag/Imágenes/wallpaperCicle/wuaifu-uni.jpg 2 | -------------------------------------------------------------------------------- /config/swww/wall.set: -------------------------------------------------------------------------------- 1 | /home/think-crag/Imágenes/wallpaperCicle/wuaifu-uni.jpg -------------------------------------------------------------------------------- /config/termusic/data.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CRAG666/dotfiles/7ea1f8adb41002217b1cdd88c11846bd505cba32/config/termusic/data.db -------------------------------------------------------------------------------- /config/termusic/server.toml: -------------------------------------------------------------------------------- 1 | version = "2" 2 | 3 | [com] 4 | port = 50101 5 | address = "::" 6 | 7 | [player] 8 | music_dirs = ["/home/think-crag/Música"] 9 | library_scan_depth = 10 10 | loop_mode = "random" 11 | volume = 100 12 | speed = 10 13 | gapless = false 14 | use_mediacontrols = true 15 | set_discord_status = false 16 | random_track_quantity = 20 17 | random_album_min_quantity = 1 18 | 19 | [player.remember_position] 20 | music = "no" 21 | podcast = "yes" 22 | 23 | [player.seek_step] 24 | short_tracks = 5 25 | long_tracks = 30 26 | 27 | [podcast] 28 | concurrent_downloads_max = 3 29 | max_download_retries = 3 30 | download_dir = "/home/think-crag/Música/podcast" 31 | -------------------------------------------------------------------------------- /config/termusic/themes/3024.dark.yml: -------------------------------------------------------------------------------- 1 | colors: 2 | name: 3024 (dark) 3 | author: Chris Kempson 4 | primary: 5 | background: "#090300" 6 | foreground: "#a5a2a2" 7 | cursor: 8 | text: "#090300" 9 | cursor: "#a5a2a2" 10 | normal: 11 | black: "#090300" 12 | red: "#db2d20" 13 | green: "#01a252" 14 | yellow: "#fded02" 15 | blue: "#01a0e4" 16 | magenta: "#a16a94" 17 | cyan: "#b5e4f4" 18 | white: "#a5a2a2" 19 | bright: 20 | black: "#5c5855" 21 | red: "#db2d20" 22 | green: "#01a252" 23 | yellow: "#fded02" 24 | blue: "#01a0e4" 25 | magenta: "#a16a94" 26 | cyan: "#b5e4f4" 27 | white: "#f7f7f7" 28 | -------------------------------------------------------------------------------- /config/termusic/themes/3024.light.yml: -------------------------------------------------------------------------------- 1 | colors: 2 | name: 3024 (light) 3 | author: Chris Kempson 4 | primary: 5 | background: "#f7f7f7" 6 | foreground: "#4a4543" 7 | cursor: 8 | text: "#f7f7f7" 9 | cursor: "#4a4543" 10 | normal: 11 | black: "#090300" 12 | red: "#db2d20" 13 | green: "#01a252" 14 | yellow: "#fded02" 15 | blue: "#01a0e4" 16 | magenta: "#a16a94" 17 | cyan: "#b5e4f4" 18 | white: "#a5a2a2" 19 | bright: 20 | black: "#5c5855" 21 | red: "#db2d20" 22 | green: "#01a252" 23 | yellow: "#fded02" 24 | blue: "#01a0e4" 25 | magenta: "#a16a94" 26 | cyan: "#b5e4f4" 27 | white: "#f7f7f7" 28 | -------------------------------------------------------------------------------- /config/termusic/themes/Ashes.dark.yml: -------------------------------------------------------------------------------- 1 | colors: 2 | name: Ashes (dark) 3 | author: Chris Kempson 4 | primary: 5 | background: "#1c2023" 6 | foreground: "#c7ccd1" 7 | cursor: 8 | text: "#1c2023" 9 | cursor: "#c7ccd1" 10 | normal: 11 | black: "#1c2023" 12 | red: "#c7ae95" 13 | green: "#95c7ae" 14 | yellow: "#aec795" 15 | blue: "#ae95c7" 16 | magenta: "#c795ae" 17 | cyan: "#95aec7" 18 | white: "#c7ccd1" 19 | bright: 20 | black: "#747c84" 21 | red: "#c7ae95" 22 | green: "#95c7ae" 23 | yellow: "#aec795" 24 | blue: "#ae95c7" 25 | magenta: "#c795ae" 26 | cyan: "#95aec7" 27 | white: "#f3f4f5" 28 | -------------------------------------------------------------------------------- /config/termusic/themes/Ashes.light.yml: -------------------------------------------------------------------------------- 1 | colors: 2 | name: Ashes (light) 3 | author: Chris Kempson 4 | primary: 5 | background: "#f3f4f5" 6 | foreground: "#565e65" 7 | cursor: 8 | text: "#f3f4f5" 9 | cursor: "#565e65" 10 | normal: 11 | black: "#1c2023" 12 | red: "#c7ae95" 13 | green: "#95c7ae" 14 | yellow: "#aec795" 15 | blue: "#ae95c7" 16 | magenta: "#c795ae" 17 | cyan: "#95aec7" 18 | white: "#c7ccd1" 19 | bright: 20 | black: "#747c84" 21 | red: "#c7ae95" 22 | green: "#95c7ae" 23 | yellow: "#aec795" 24 | blue: "#ae95c7" 25 | magenta: "#c795ae" 26 | cyan: "#95aec7" 27 | white: "#f3f4f5" 28 | -------------------------------------------------------------------------------- /config/termusic/themes/Astromouse.yml: -------------------------------------------------------------------------------- 1 | colors: 2 | name: astromouse 3 | author: "" 4 | primary: 5 | background: "#000000" 6 | foreground: "#ffffff" 7 | cursor: 8 | text: "#000000" 9 | cursor: "#ffffff" 10 | normal: 11 | black: "#1c1c1c" 12 | red: "#d770af" 13 | green: "#9acc79" 14 | yellow: "#d0d26b" 15 | blue: "#77b6c5" 16 | magenta: "#a488d9" 17 | cyan: "#7fcab3" 18 | white: "#8d8d8d" 19 | bright: 20 | black: "#3d3a3a" 21 | red: "#d28abf" 22 | green: "#8fb676" 23 | yellow: "#c8bc45" 24 | blue: "#8fa7b9" 25 | magenta: "#bd89de" 26 | cyan: "#6ec2a8" 27 | white: "#dad3d3" 28 | -------------------------------------------------------------------------------- /config/termusic/themes/Atelierdune.dark.yml: -------------------------------------------------------------------------------- 1 | colors: 2 | name: Atelierdune (dark) 3 | author: Chris Kempson 4 | primary: 5 | background: "#20201d" 6 | foreground: "#a6a28c" 7 | cursor: 8 | text: "#20201d" 9 | cursor: "#a6a28c" 10 | normal: 11 | black: "#20201d" 12 | red: "#d73737" 13 | green: "#60ac39" 14 | yellow: "#cfb017" 15 | blue: "#6684e1" 16 | magenta: "#b854d4" 17 | cyan: "#1fad83" 18 | white: "#a6a28c" 19 | bright: 20 | black: "#7d7a68" 21 | red: "#d73737" 22 | green: "#60ac39" 23 | yellow: "#cfb017" 24 | blue: "#6684e1" 25 | magenta: "#b854d4" 26 | cyan: "#1fad83" 27 | white: "#fefbec" 28 | -------------------------------------------------------------------------------- /config/termusic/themes/Atelierdune.light.yml: -------------------------------------------------------------------------------- 1 | colors: 2 | name: Atelierdune (light) 3 | author: Chris Kempson 4 | primary: 5 | background: "#fefbec" 6 | foreground: "#6e6b5e" 7 | cursor: 8 | text: "#fefbec" 9 | cursor: "#6e6b5e" 10 | normal: 11 | black: "#20201d" 12 | red: "#d73737" 13 | green: "#60ac39" 14 | yellow: "#cfb017" 15 | blue: "#6684e1" 16 | magenta: "#b854d4" 17 | cyan: "#1fad83" 18 | white: "#a6a28c" 19 | bright: 20 | black: "#7d7a68" 21 | red: "#d73737" 22 | green: "#60ac39" 23 | yellow: "#cfb017" 24 | blue: "#6684e1" 25 | magenta: "#b854d4" 26 | cyan: "#1fad83" 27 | white: "#fefbec" 28 | -------------------------------------------------------------------------------- /config/termusic/themes/Atelierforest.dark.yml: -------------------------------------------------------------------------------- 1 | colors: 2 | name: Atelierforest (dark) 3 | author: Chris Kempson 4 | primary: 5 | background: "#1b1918" 6 | foreground: "#a8a19f" 7 | cursor: 8 | text: "#1b1918" 9 | cursor: "#a8a19f" 10 | normal: 11 | black: "#1b1918" 12 | red: "#f22c40" 13 | green: "#5ab738" 14 | yellow: "#d5911a" 15 | blue: "#407ee7" 16 | magenta: "#6666ea" 17 | cyan: "#00ad9c" 18 | white: "#a8a19f" 19 | bright: 20 | black: "#766e6b" 21 | red: "#f22c40" 22 | green: "#5ab738" 23 | yellow: "#d5911a" 24 | blue: "#407ee7" 25 | magenta: "#6666ea" 26 | cyan: "#00ad9c" 27 | white: "#f1efee" 28 | -------------------------------------------------------------------------------- /config/termusic/themes/Atelierforest.light.yml: -------------------------------------------------------------------------------- 1 | colors: 2 | name: Atelierforest (light) 3 | author: Chris Kempson 4 | primary: 5 | background: "#f1efee" 6 | foreground: "#68615e" 7 | cursor: 8 | text: "#f1efee" 9 | cursor: "#68615e" 10 | normal: 11 | black: "#1b1918" 12 | red: "#f22c40" 13 | green: "#5ab738" 14 | yellow: "#d5911a" 15 | blue: "#407ee7" 16 | magenta: "#6666ea" 17 | cyan: "#00ad9c" 18 | white: "#a8a19f" 19 | bright: 20 | black: "#766e6b" 21 | red: "#f22c40" 22 | green: "#5ab738" 23 | yellow: "#d5911a" 24 | blue: "#407ee7" 25 | magenta: "#6666ea" 26 | cyan: "#00ad9c" 27 | white: "#f1efee" 28 | -------------------------------------------------------------------------------- /config/termusic/themes/Atelierheath.dark.yml: -------------------------------------------------------------------------------- 1 | colors: 2 | name: Atelierheath (dark) 3 | author: Chris Kempson 4 | primary: 5 | background: "#1b181b" 6 | foreground: "#ab9bab" 7 | cursor: 8 | text: "#1b181b" 9 | cursor: "#ab9bab" 10 | normal: 11 | black: "#1b181b" 12 | red: "#ca402b" 13 | green: "#379a37" 14 | yellow: "#bb8a35" 15 | blue: "#516aec" 16 | magenta: "#7b59c0" 17 | cyan: "#159393" 18 | white: "#ab9bab" 19 | bright: 20 | black: "#776977" 21 | red: "#ca402b" 22 | green: "#379a37" 23 | yellow: "#bb8a35" 24 | blue: "#516aec" 25 | magenta: "#7b59c0" 26 | cyan: "#159393" 27 | white: "#f7f3f7" 28 | -------------------------------------------------------------------------------- /config/termusic/themes/Atelierheath.light.yml: -------------------------------------------------------------------------------- 1 | colors: 2 | name: Atelierheath (light) 3 | author: Chris Kempson 4 | primary: 5 | background: "#f7f3f7" 6 | foreground: "#695d69" 7 | cursor: 8 | text: "#f7f3f7" 9 | cursor: "#695d69" 10 | normal: 11 | black: "#1b181b" 12 | red: "#ca402b" 13 | green: "#379a37" 14 | yellow: "#bb8a35" 15 | blue: "#516aec" 16 | magenta: "#7b59c0" 17 | cyan: "#159393" 18 | white: "#ab9bab" 19 | bright: 20 | black: "#776977" 21 | red: "#ca402b" 22 | green: "#379a37" 23 | yellow: "#bb8a35" 24 | blue: "#516aec" 25 | magenta: "#7b59c0" 26 | cyan: "#159393" 27 | white: "#f7f3f7" 28 | -------------------------------------------------------------------------------- /config/termusic/themes/Atelierseaside.dark.yml: -------------------------------------------------------------------------------- 1 | colors: 2 | name: Atelierseaside (dark) 3 | author: Chris Kempson 4 | primary: 5 | background: "#131513" 6 | foreground: "#8ca68c" 7 | cursor: 8 | text: "#131513" 9 | cursor: "#8ca68c" 10 | normal: 11 | black: "#131513" 12 | red: "#e6193c" 13 | green: "#29a329" 14 | yellow: "#c3c322" 15 | blue: "#3d62f5" 16 | magenta: "#ad2bee" 17 | cyan: "#1999b3" 18 | white: "#8ca68c" 19 | bright: 20 | black: "#687d68" 21 | red: "#e6193c" 22 | green: "#29a329" 23 | yellow: "#c3c322" 24 | blue: "#3d62f5" 25 | magenta: "#ad2bee" 26 | cyan: "#1999b3" 27 | white: "#f0fff0" 28 | -------------------------------------------------------------------------------- /config/termusic/themes/Ayu-Dark.yml: -------------------------------------------------------------------------------- 1 | # Colors (Ayu Dark) 2 | colors: 3 | # Default colors 4 | primary: 5 | background: '#0A0E14' 6 | foreground: '#B3B1AD' 7 | 8 | # Normal colors 9 | normal: 10 | black: '#01060E' 11 | red: '#EA6C73' 12 | green: '#91B362' 13 | yellow: '#F9AF4F' 14 | blue: '#53BDFA' 15 | magenta: '#FAE994' 16 | cyan: '#90E1C6' 17 | white: '#C7C7C7' 18 | 19 | # Bright colors 20 | bright: 21 | black: '#686868' 22 | red: '#F07178' 23 | green: '#C2D94C' 24 | yellow: '#FFB454' 25 | blue: '#59C2FF' 26 | magenta: '#FFEE99' 27 | cyan: '#95E6CB' 28 | white: '#FFFFFF' 29 | -------------------------------------------------------------------------------- /config/termusic/themes/Ayu-Mirage.yml: -------------------------------------------------------------------------------- 1 | # Colors (Ayu Mirage) 2 | colors: 3 | # Default colors 4 | primary: 5 | background: '#202734' 6 | foreground: '#CBCCC6' 7 | 8 | # Normal colors 9 | normal: 10 | black: '#191E2A' 11 | red: '#FF3333' 12 | green: '#BAE67E' 13 | yellow: '#FFA759' 14 | blue: '#73D0FF' 15 | magenta: '#FFD580' 16 | cyan: '#95E6CB' 17 | white: '#C7C7C7' 18 | 19 | # Bright colors 20 | bright: 21 | black: '#686868' 22 | red: '#F27983' 23 | green: '#A6CC70' 24 | yellow: '#FFCC66' 25 | blue: '#5CCFE6' 26 | magenta: '#FFEE99' 27 | cyan: '#95E6CB' 28 | white: '#FFFFFF' 29 | -------------------------------------------------------------------------------- /config/termusic/themes/Baskerville - Eldorado dark.yml: -------------------------------------------------------------------------------- 1 | colors: 2 | name: Eldorado dark 3 | author: Baskerville 4 | primary: 5 | background: "#292929" 6 | foreground: "#a2a2a2" 7 | cursor: 8 | text: "#292929" 9 | cursor: "#a2a2a2" 10 | normal: 11 | black: "#4e4e4e" 12 | red: "#a9635d" 13 | green: "#468459" 14 | yellow: "#84763d" 15 | blue: "#5879af" 16 | magenta: "#9c6594" 17 | cyan: "#008592" 18 | white: "#cfcfcf" 19 | bright: 20 | black: "#777777" 21 | red: "#ffbbb2" 22 | green: "#9ddeaf" 23 | yellow: "#e0ce91" 24 | blue: "#b3d1ff" 25 | magenta: "#fabdf0" 26 | cyan: "#79e0ed" 27 | white: "#ffffff" 28 | -------------------------------------------------------------------------------- /config/termusic/themes/Baskerville - FarSide.yml: -------------------------------------------------------------------------------- 1 | colors: 2 | name: FarSide 3 | author: Baskerville 4 | primary: 5 | background: "#000000" 6 | foreground: "#919191" 7 | cursor: 8 | text: "#000000" 9 | cursor: "#919191" 10 | normal: 11 | black: "#303030" 12 | red: "#a43261" 13 | green: "#006ca5" 14 | yellow: "#007086" 15 | blue: "#6751a6" 16 | magenta: "#913e88" 17 | cyan: "#0061b1" 18 | white: "#c6c6c6" 19 | bright: 20 | black: "#5e5e5e" 21 | red: "#ff9fc9" 22 | green: "#3bd6ff" 23 | yellow: "#00ddf4" 24 | blue: "#d5b8ff" 25 | magenta: "#ffa7f6" 26 | cyan: "#93c9ff" 27 | white: "#ffffff" 28 | -------------------------------------------------------------------------------- /config/termusic/themes/Baskerville - ivory dark.yml: -------------------------------------------------------------------------------- 1 | colors: 2 | name: Ivory Dark 3 | author: Baskerville 4 | primary: 5 | background: "#2d2c28" 6 | foreground: "#a4a6ab" 7 | cursor: 8 | text: "#2d2c28" 9 | cursor: "#a4a6ab" 10 | normal: 11 | black: "#5b5955" 12 | red: "#c4756e" 13 | green: "#559a6a" 14 | yellow: "#9b8a4b" 15 | blue: "#6a8dca" 16 | magenta: "#b577ac" 17 | cyan: "#019baa" 18 | white: "#dbdde2" 19 | bright: 20 | black: "#707277" 21 | red: "#f6a299" 22 | green: "#82c896" 23 | yellow: "#cab775" 24 | blue: "#98bbfb" 25 | magenta: "#e5a4db" 26 | cyan: "#53cad9" 27 | white: "#f7f9ff" 28 | -------------------------------------------------------------------------------- /config/termusic/themes/Baskerville - lost woods.yml: -------------------------------------------------------------------------------- 1 | colors: 2 | name: Lost Woods 3 | author: Baskerville 4 | primary: 5 | background: "#000000" 6 | foreground: "#919191" 7 | cursor: 8 | text: "#000000" 9 | cursor: "#919191" 10 | normal: 11 | black: "#303030" 12 | red: "#a13a38" 13 | green: "#00715d" 14 | yellow: "#006f32" 15 | blue: "#a43261" 16 | magenta: "#913e88" 17 | cyan: "#007086" 18 | white: "#c6c6c6" 19 | bright: 20 | black: "#5e5e5e" 21 | red: "#ffa59a" 22 | green: "#24dfc4" 23 | yellow: "#73db95" 24 | blue: "#ff9fc9" 25 | magenta: "#ffa7f6" 26 | cyan: "#00ddf4" 27 | white: "#ffffff" 28 | -------------------------------------------------------------------------------- /config/termusic/themes/Baskerville-ivorylight.yml: -------------------------------------------------------------------------------- 1 | colors: 2 | name: Ivory Light 3 | author: Baskerville 4 | primary: 5 | background: "#fef9ec" 6 | foreground: "#6d727e" 7 | cursor: 8 | text: "#fef9ec" 9 | cursor: "#6d727e" 10 | normal: 11 | black: "#c5c1b4" 12 | red: "#e75c58" 13 | green: "#00a250" 14 | yellow: "#a08a00" 15 | blue: "#208ffb" 16 | magenta: "#d160c4" 17 | cyan: "#00a4c1" 18 | white: "#3e424d" 19 | bright: 20 | black: "#a1a6b2" 21 | red: "#b22b31" 22 | green: "#007427" 23 | yellow: "#715f00" 24 | blue: "#0065ca" 25 | magenta: "#a03196" 26 | cyan: "#007693" 27 | white: "#282c36" 28 | -------------------------------------------------------------------------------- /config/termusic/themes/Belge.yml: -------------------------------------------------------------------------------- 1 | colors: 2 | name: Belge 3 | author: "" 4 | primary: 5 | background: "#000000" 6 | foreground: "#ffffff" 7 | cursor: 8 | text: "#000000" 9 | cursor: "#ffffff" 10 | normal: 11 | black: "#252525" 12 | red: "#ef6769" 13 | green: "#a6e22e" 14 | yellow: "#fd971f" 15 | blue: "#6495ed" 16 | magenta: "#deb887" 17 | cyan: "#b0c4de" 18 | white: "#dbdcdc" 19 | bright: 20 | black: "#454545" 21 | red: "#fc7ca5" 22 | green: "#b6e354" 23 | yellow: "#fd971f" 24 | blue: "#87ceeb" 25 | magenta: "#996600" 26 | cyan: "#87ceeb" 27 | white: "#fdfdfd" 28 | -------------------------------------------------------------------------------- /config/termusic/themes/Bespin.dark.yml: -------------------------------------------------------------------------------- 1 | colors: 2 | name: Bespin (dark) 3 | author: Chris Kempson 4 | primary: 5 | background: "#28211c" 6 | foreground: "#8a8986" 7 | cursor: 8 | text: "#28211c" 9 | cursor: "#8a8986" 10 | normal: 11 | black: "#28211c" 12 | red: "#cf6a4c" 13 | green: "#54be0d" 14 | yellow: "#f9ee98" 15 | blue: "#5ea6ea" 16 | magenta: "#9b859d" 17 | cyan: "#afc4db" 18 | white: "#8a8986" 19 | bright: 20 | black: "#666666" 21 | red: "#cf6a4c" 22 | green: "#54be0d" 23 | yellow: "#f9ee98" 24 | blue: "#5ea6ea" 25 | magenta: "#9b859d" 26 | cyan: "#afc4db" 27 | white: "#baae9e" 28 | -------------------------------------------------------------------------------- /config/termusic/themes/Bespin.light.yml: -------------------------------------------------------------------------------- 1 | colors: 2 | name: Bespin (light) 3 | author: Chris Kempson 4 | primary: 5 | background: "#baae9e" 6 | foreground: "#5e5d5c" 7 | cursor: 8 | text: "#baae9e" 9 | cursor: "#5e5d5c" 10 | normal: 11 | black: "#28211c" 12 | red: "#cf6a4c" 13 | green: "#54be0d" 14 | yellow: "#f9ee98" 15 | blue: "#5ea6ea" 16 | magenta: "#9b859d" 17 | cyan: "#afc4db" 18 | white: "#8a8986" 19 | bright: 20 | black: "#666666" 21 | red: "#cf6a4c" 22 | green: "#54be0d" 23 | yellow: "#f9ee98" 24 | blue: "#5ea6ea" 25 | magenta: "#9b859d" 26 | cyan: "#afc4db" 27 | white: "#baae9e" 28 | -------------------------------------------------------------------------------- /config/termusic/themes/Bitmute.yml: -------------------------------------------------------------------------------- 1 | colors: 2 | name: Bitmute 3 | author: "" 4 | primary: 5 | background: "#000000" 6 | foreground: "#ffffff" 7 | cursor: 8 | text: "#000000" 9 | cursor: "#ffffff" 10 | normal: 11 | black: "#282828" 12 | red: "#b76969" 13 | green: "#719d72" 14 | yellow: "#909858" 15 | blue: "#68668f" 16 | magenta: "#966894" 17 | cyan: "#688891" 18 | white: "#8e8e8e" 19 | bright: 20 | black: "#494949" 21 | red: "#b87e7e" 22 | green: "#839d84" 23 | yellow: "#919864" 24 | blue: "#73718f" 25 | magenta: "#987397" 26 | cyan: "#758c93" 27 | white: "#aeaeae" 28 | -------------------------------------------------------------------------------- /config/termusic/themes/Bleh-1.yml: -------------------------------------------------------------------------------- 1 | colors: 2 | name: Bleh-1 3 | author: "" 4 | primary: 5 | background: "#000000" 6 | foreground: "#ffffff" 7 | cursor: 8 | text: "#000000" 9 | cursor: "#ffffff" 10 | normal: 11 | black: "#666666" 12 | red: "#996578" 13 | green: "#889965" 14 | yellow: "#998565" 15 | blue: "#657a99" 16 | magenta: "#8b6599" 17 | cyan: "#65998d" 18 | white: "#a5a5a4" 19 | bright: 20 | black: "#8c847f" 21 | red: "#bd4b76" 22 | green: "#95b548" 23 | yellow: "#bd814b" 24 | blue: "#4c83bf" 25 | magenta: "#a04bbd" 26 | cyan: "#4dbda8" 27 | white: "#848484" 28 | -------------------------------------------------------------------------------- /config/termusic/themes/Brewer.dark.yml: -------------------------------------------------------------------------------- 1 | colors: 2 | name: Brewer (dark) 3 | author: Chris Kempson 4 | primary: 5 | background: "#0c0d0e" 6 | foreground: "#b7b8b9" 7 | cursor: 8 | text: "#0c0d0e" 9 | cursor: "#b7b8b9" 10 | normal: 11 | black: "#0c0d0e" 12 | red: "#e31a1c" 13 | green: "#31a354" 14 | yellow: "#dca060" 15 | blue: "#3182bd" 16 | magenta: "#756bb1" 17 | cyan: "#80b1d3" 18 | white: "#b7b8b9" 19 | bright: 20 | black: "#737475" 21 | red: "#e31a1c" 22 | green: "#31a354" 23 | yellow: "#dca060" 24 | blue: "#3182bd" 25 | magenta: "#756bb1" 26 | cyan: "#80b1d3" 27 | white: "#fcfdfe" 28 | -------------------------------------------------------------------------------- /config/termusic/themes/Brewer.light.yml: -------------------------------------------------------------------------------- 1 | colors: 2 | name: Brewer (light) 3 | author: Chris Kempson 4 | primary: 5 | background: "#fcfdfe" 6 | foreground: "#515253" 7 | cursor: 8 | text: "#fcfdfe" 9 | cursor: "#515253" 10 | normal: 11 | black: "#0c0d0e" 12 | red: "#e31a1c" 13 | green: "#31a354" 14 | yellow: "#dca060" 15 | blue: "#3182bd" 16 | magenta: "#756bb1" 17 | cyan: "#80b1d3" 18 | white: "#b7b8b9" 19 | bright: 20 | black: "#737475" 21 | red: "#e31a1c" 22 | green: "#31a354" 23 | yellow: "#dca060" 24 | blue: "#3182bd" 25 | magenta: "#756bb1" 26 | cyan: "#80b1d3" 27 | white: "#fcfdfe" 28 | -------------------------------------------------------------------------------- /config/termusic/themes/Chalk.dark.yml: -------------------------------------------------------------------------------- 1 | colors: 2 | name: Chalk (dark) 3 | author: Chris Kempson 4 | primary: 5 | background: "#151515" 6 | foreground: "#d0d0d0" 7 | cursor: 8 | text: "#151515" 9 | cursor: "#d0d0d0" 10 | normal: 11 | black: "#151515" 12 | red: "#fb9fb1" 13 | green: "#acc267" 14 | yellow: "#ddb26f" 15 | blue: "#6fc2ef" 16 | magenta: "#e1a3ee" 17 | cyan: "#12cfc0" 18 | white: "#d0d0d0" 19 | bright: 20 | black: "#505050" 21 | red: "#fb9fb1" 22 | green: "#acc267" 23 | yellow: "#ddb26f" 24 | blue: "#6fc2ef" 25 | magenta: "#e1a3ee" 26 | cyan: "#12cfc0" 27 | white: "#f5f5f5" 28 | -------------------------------------------------------------------------------- /config/termusic/themes/Chalk.light.yml: -------------------------------------------------------------------------------- 1 | colors: 2 | name: Chalk (light) 3 | author: Chris Kempson 4 | primary: 5 | background: "#f5f5f5" 6 | foreground: "#303030" 7 | cursor: 8 | text: "#f5f5f5" 9 | cursor: "#303030" 10 | normal: 11 | black: "#151515" 12 | red: "#fb9fb1" 13 | green: "#acc267" 14 | yellow: "#ddb26f" 15 | blue: "#6fc2ef" 16 | magenta: "#e1a3ee" 17 | cyan: "#12cfc0" 18 | white: "#d0d0d0" 19 | bright: 20 | black: "#505050" 21 | red: "#fb9fb1" 22 | green: "#acc267" 23 | yellow: "#ddb26f" 24 | blue: "#6fc2ef" 25 | magenta: "#e1a3ee" 26 | cyan: "#12cfc0" 27 | white: "#f5f5f5" 28 | -------------------------------------------------------------------------------- /config/termusic/themes/Challenger-Deep.yml: -------------------------------------------------------------------------------- 1 | colors: 2 | # Default colors 3 | primary: 4 | background: '0x1b182c' 5 | foreground: '0xcbe3e7' 6 | 7 | # Normal colors 8 | normal: 9 | black: '0x100e23' 10 | red: '0xff8080' 11 | green: '0x95ffa4' 12 | yellow: '0xffe9aa' 13 | blue: '0x91ddff' 14 | magenta: '0xc991e1' 15 | cyan: '0xaaffe4' 16 | white: '0xcbe3e7' 17 | 18 | # Bright colors 19 | bright: 20 | black: '0x565575' 21 | red: '0xff5458' 22 | green: '0x62d196' 23 | yellow: '0xffb378' 24 | blue: '0x65b2ff' 25 | magenta: '0x906cff' 26 | cyan: '0x63f2f1' 27 | white: '0xa6b3cc' 28 | -------------------------------------------------------------------------------- /config/termusic/themes/Cloud.yml: -------------------------------------------------------------------------------- 1 | colors: 2 | name: Cloud 3 | author: "" 4 | primary: 5 | background: "#000000" 6 | foreground: "#ffffff" 7 | cursor: 8 | text: "#000000" 9 | cursor: "#ffffff" 10 | normal: 11 | black: "#222827" 12 | red: "#d5a8e3" 13 | green: "#9c75dd" 14 | yellow: "#9898ae" 15 | blue: "#654a96" 16 | magenta: "#625566" 17 | cyan: "#a9d1df" 18 | white: "#e6ebe5" 19 | bright: 20 | black: "#5d6f74" 21 | red: "#cd749c" 22 | green: "#63b0b0" 23 | yellow: "#c0c0dd" 24 | blue: "#5786bc" 25 | magenta: "#3f3442" 26 | cyan: "#849da2" 27 | white: "#d9d6cf" 28 | -------------------------------------------------------------------------------- /config/termusic/themes/Codeschool.dark.yml: -------------------------------------------------------------------------------- 1 | colors: 2 | name: Codeschool (dark) 3 | author: Chris Kempson 4 | primary: 5 | background: "#232c31" 6 | foreground: "#9ea7a6" 7 | cursor: 8 | text: "#232c31" 9 | cursor: "#9ea7a6" 10 | normal: 11 | black: "#232c31" 12 | red: "#2a5491" 13 | green: "#237986" 14 | yellow: "#a03b1e" 15 | blue: "#484d79" 16 | magenta: "#c59820" 17 | cyan: "#b02f30" 18 | white: "#9ea7a6" 19 | bright: 20 | black: "#3f4944" 21 | red: "#2a5491" 22 | green: "#237986" 23 | yellow: "#a03b1e" 24 | blue: "#484d79" 25 | magenta: "#c59820" 26 | cyan: "#b02f30" 27 | white: "#b5d8f6" 28 | -------------------------------------------------------------------------------- /config/termusic/themes/Codeschool.light.yml: -------------------------------------------------------------------------------- 1 | colors: 2 | name: Codeschool (light) 3 | author: Chris Kempson 4 | primary: 5 | background: "#b5d8f6" 6 | foreground: "#2a343a" 7 | cursor: 8 | text: "#b5d8f6" 9 | cursor: "#2a343a" 10 | normal: 11 | black: "#232c31" 12 | red: "#2a5491" 13 | green: "#237986" 14 | yellow: "#a03b1e" 15 | blue: "#484d79" 16 | magenta: "#c59820" 17 | cyan: "#b02f30" 18 | white: "#9ea7a6" 19 | bright: 20 | black: "#3f4944" 21 | red: "#2a5491" 22 | green: "#237986" 23 | yellow: "#a03b1e" 24 | blue: "#484d79" 25 | magenta: "#c59820" 26 | cyan: "#b02f30" 27 | white: "#b5d8f6" 28 | -------------------------------------------------------------------------------- /config/termusic/themes/Colorfulcolors.yml: -------------------------------------------------------------------------------- 1 | colors: 2 | name: Colorful Colors 3 | author: "" 4 | primary: 5 | background: "#000000" 6 | foreground: "#ffffff" 7 | cursor: 8 | text: "#000000" 9 | cursor: "#ffffff" 10 | normal: 11 | black: "#151515" 12 | red: "#ff8eaf" 13 | green: "#a6e25f" 14 | yellow: "#f8e578" 15 | blue: "#a6e2f0" 16 | magenta: "#e85b92" 17 | cyan: "#5f868f" 18 | white: "#d5f1f2" 19 | bright: 20 | black: "#696969" 21 | red: "#ed4c7a" 22 | green: "#a6e179" 23 | yellow: "#ffdf6b" 24 | blue: "#79d2ff" 25 | magenta: "#bb5d79" 26 | cyan: "#87a8af" 27 | white: "#e2f1f6" 28 | -------------------------------------------------------------------------------- /config/termusic/themes/DOOMICIDE darkocean.yml: -------------------------------------------------------------------------------- 1 | colors: 2 | name: Dark Ocean 3 | author: DOOMICIDE 4 | primary: 5 | background: "#000000" 6 | foreground: "#ffffff" 7 | cursor: 8 | text: "#000000" 9 | cursor: "#ffffff" 10 | normal: 11 | black: "#000000" 12 | red: "#571dc2" 13 | green: "#14db49" 14 | yellow: "#403d70" 15 | blue: "#385a70" 16 | magenta: "#384894" 17 | cyan: "#4f3a5e" 18 | white: "#999999" 19 | bright: 20 | black: "#38372c" 21 | red: "#7c54b0" 22 | green: "#a2e655" 23 | yellow: "#9c6f59" 24 | blue: "#323f5c" 25 | magenta: "#5e6c99" 26 | cyan: "#667d77" 27 | white: "#ffffff" 28 | -------------------------------------------------------------------------------- /config/termusic/themes/Darkside.yml: -------------------------------------------------------------------------------- 1 | # Colors (Darkside) 2 | colors: 3 | primary: 4 | background: '#222324' 5 | foreground: '#BABABA' 6 | 7 | # Normal colors 8 | normal: 9 | black: '#000000' 10 | red: '#E8341C' 11 | green: '#68C256' 12 | yellow: '#F2D42C' 13 | blue: '#1C98E8' 14 | magenta: '#8E69C9' 15 | cyan: '#1C98E8' 16 | white: '#BABABA' 17 | 18 | # Bright colors 19 | bright: 20 | black: '#666666' 21 | red: '#E05A4F' 22 | green: '#77B869' 23 | yellow: '#EFD64B' 24 | blue: '#387CD3' 25 | magenta: '#957BBE' 26 | cyan: '#3D97E2' 27 | white: '#BABABA' 28 | -------------------------------------------------------------------------------- /config/termusic/themes/Dawn.yml: -------------------------------------------------------------------------------- 1 | colors: 2 | name: Dawn 3 | author: Escapist 4 | primary: 5 | background: "#181B20" 6 | foreground: "#9B9081" 7 | cursor: 8 | text: "#181B20" 9 | cursor: "#9B9081" 10 | normal: 11 | black: "#353535" 12 | red: "#744B40" 13 | green: "#6D6137" 14 | yellow: "#765636" 15 | blue: "#61564B" 16 | magenta: "#6B4A49" 17 | cyan: "#435861" 18 | white: "#B3B3B3" 19 | bright: 20 | black: "#5F5F5F" 21 | red: "#785850" 22 | green: "#6F6749" 23 | yellow: "#776049" 24 | blue: "#696057" 25 | magenta: "#6F5A59" 26 | cyan: "#525F66" 27 | white: "#CDCDCD" 28 | -------------------------------------------------------------------------------- /config/termusic/themes/Deafened.yml: -------------------------------------------------------------------------------- 1 | colors: 2 | name: Deafened 3 | author: "" 4 | primary: 5 | background: "#000000" 6 | foreground: "#ffffff" 7 | cursor: 8 | text: "#000000" 9 | cursor: "#ffffff" 10 | normal: 11 | black: "#3d3e3d" 12 | red: "#755a5b" 13 | green: "#68755a" 14 | yellow: "#756e5a" 15 | blue: "#5b6976" 16 | magenta: "#755b76" 17 | cyan: "#465457" 18 | white: "#ccccc6" 19 | bright: 20 | black: "#5a5b5c" 21 | red: "#a37679" 22 | green: "#87a376" 23 | yellow: "#a39b76" 24 | blue: "#758ba3" 25 | magenta: "#9f76a3" 26 | cyan: "#899ca1" 27 | white: "#f8f8f2" 28 | -------------------------------------------------------------------------------- /config/termusic/themes/Default.dark.yml: -------------------------------------------------------------------------------- 1 | colors: 2 | name: Default (dark) 3 | author: Chris Kempson 4 | primary: 5 | background: "#151515" 6 | foreground: "#d0d0d0" 7 | cursor: 8 | text: "#151515" 9 | cursor: "#d0d0d0" 10 | normal: 11 | black: "#151515" 12 | red: "#ac4142" 13 | green: "#90a959" 14 | yellow: "#f4bf75" 15 | blue: "#6a9fb5" 16 | magenta: "#aa759f" 17 | cyan: "#75b5aa" 18 | white: "#d0d0d0" 19 | bright: 20 | black: "#505050" 21 | red: "#ac4142" 22 | green: "#90a959" 23 | yellow: "#f4bf75" 24 | blue: "#6a9fb5" 25 | magenta: "#aa759f" 26 | cyan: "#75b5aa" 27 | white: "#f5f5f5" 28 | -------------------------------------------------------------------------------- /config/termusic/themes/Default.light.yml: -------------------------------------------------------------------------------- 1 | colors: 2 | name: Default (light) 3 | author: Chris Kempson 4 | primary: 5 | background: "#f5f5f5" 6 | foreground: "#303030" 7 | cursor: 8 | text: "#f5f5f5" 9 | cursor: "#303030" 10 | normal: 11 | black: "#151515" 12 | red: "#ac4142" 13 | green: "#90a959" 14 | yellow: "#f4bf75" 15 | blue: "#6a9fb5" 16 | magenta: "#aa759f" 17 | cyan: "#75b5aa" 18 | white: "#d0d0d0" 19 | bright: 20 | black: "#505050" 21 | red: "#ac4142" 22 | green: "#90a959" 23 | yellow: "#f4bf75" 24 | blue: "#6a9fb5" 25 | magenta: "#aa759f" 26 | cyan: "#75b5aa" 27 | white: "#f5f5f5" 28 | -------------------------------------------------------------------------------- /config/termusic/themes/Derp.yml: -------------------------------------------------------------------------------- 1 | colors: 2 | name: Derp 3 | author: "" 4 | primary: 5 | background: "#000000" 6 | foreground: "#ffffff" 7 | cursor: 8 | text: "#000000" 9 | cursor: "#ffffff" 10 | normal: 11 | black: "#111111" 12 | red: "#d36265" 13 | green: "#aece91" 14 | yellow: "#e7e18c" 15 | blue: "#5297cf" 16 | magenta: "#963c59" 17 | cyan: "#5e7175" 18 | white: "#bebebe" 19 | bright: 20 | black: "#666666" 21 | red: "#ef8171" 22 | green: "#cfefb3" 23 | yellow: "#fff796" 24 | blue: "#74b8ef" 25 | magenta: "#b85e7b" 26 | cyan: "#a3babf" 27 | white: "#ffffff" 28 | -------------------------------------------------------------------------------- /config/termusic/themes/Digerati.yml: -------------------------------------------------------------------------------- 1 | colors: 2 | name: Digerati 3 | author: "" 4 | primary: 5 | background: "#000000" 6 | foreground: "#ffffff" 7 | cursor: 8 | text: "#000000" 9 | cursor: "#ffffff" 10 | normal: 11 | black: "#303030" 12 | red: "#c03000" 13 | green: "#b1d631" 14 | yellow: "#fecf35" 15 | blue: "#426870" 16 | magenta: "#6d506d" 17 | cyan: "#4bb5c1" 18 | white: "#e2e2e5" 19 | bright: 20 | black: "#5f5f5f" 21 | red: "#ff3a78" 22 | green: "#a6cd07" 23 | yellow: "#b5c865" 24 | blue: "#4a7781" 25 | magenta: "#ff3b77" 26 | cyan: "#4bb5c1" 27 | white: "#e2e2e5" 28 | -------------------------------------------------------------------------------- /config/termusic/themes/Dkeg - canvasedpastel.yml: -------------------------------------------------------------------------------- 1 | colors: 2 | name: Canvased Pastel 3 | author: dkeg 4 | primary: 5 | background: "#170f0d" 6 | foreground: "#746c48" 7 | cursor: 8 | text: "#170f0d" 9 | cursor: "#746c48" 10 | normal: 11 | black: "#26251c" 12 | red: "#323027" 13 | green: "#3d4339" 14 | yellow: "#443b2c" 15 | blue: "#534d35" 16 | magenta: "#646756" 17 | cyan: "#7b8574" 18 | white: "#837b61" 19 | bright: 20 | black: "#999f91" 21 | red: "#9b9773" 22 | green: "#b2b08c" 23 | yellow: "#c4bb8c" 24 | blue: "#c4b67a" 25 | magenta: "#cfc995" 26 | cyan: "#d3d4b6" 27 | white: "#d6d3ac" 28 | -------------------------------------------------------------------------------- /config/termusic/themes/Dkeg - catchmeifyoucan.yml: -------------------------------------------------------------------------------- 1 | colors: 2 | name: Catch Me If You Can 3 | author: dkeg 4 | primary: 5 | background: "#170f0d" 6 | foreground: "#f9f9f9" 7 | cursor: 8 | text: "#170f0d" 9 | cursor: "#f9f9f9" 10 | normal: 11 | black: "#130f0c" 12 | red: "#604c38" 13 | green: "#8d7f85" 14 | yellow: "#907256" 15 | blue: "#aa8d70" 16 | magenta: "#b9a38d" 17 | cyan: "#c4bfbf" 18 | white: "#c4ae99" 19 | bright: 20 | black: "#c69f77" 21 | red: "#cab9a8" 22 | green: "#d5c6b8" 23 | yellow: "#dcd1c7" 24 | blue: "#e0e0e2" 25 | magenta: "#e4dad2" 26 | cyan: "#eae3dc" 27 | white: "#f6f2f0" 28 | -------------------------------------------------------------------------------- /config/termusic/themes/Dkeg - citystreets.yml: -------------------------------------------------------------------------------- 1 | colors: 2 | name: City Streets 3 | author: dkeg 4 | primary: 5 | background: "#000000" 6 | foreground: "#d3d3d3" 7 | cursor: 8 | text: "#000000" 9 | cursor: "#d3d3d3" 10 | normal: 11 | black: "#201e24" 12 | red: "#2d2b30" 13 | green: "#3f3d40" 14 | yellow: "#413c3e" 15 | blue: "#423e41" 16 | magenta: "#4e4a4b" 17 | cyan: "#6e6765" 18 | white: "#837e81" 19 | bright: 20 | black: "#837c78" 21 | red: "#89827d" 22 | green: "#a7a099" 23 | yellow: "#c2bec1" 24 | blue: "#c3bcb2" 25 | magenta: "#cbc5ba" 26 | cyan: "#e3ddd2" 27 | white: "#efe8dc" 28 | -------------------------------------------------------------------------------- /config/termusic/themes/Dkeg - colorstar.yml: -------------------------------------------------------------------------------- 1 | colors: 2 | name: Color Star 3 | author: dkeg 4 | primary: 5 | background: "#000000" 6 | foreground: "#d3d3d3" 7 | cursor: 8 | text: "#000000" 9 | cursor: "#d3d3d3" 10 | normal: 11 | black: "#03010f" 12 | red: "#503b43" 13 | green: "#353b64" 14 | yellow: "#8c2424" 15 | blue: "#6067ac" 16 | magenta: "#624d19" 17 | cyan: "#7c83c0" 18 | white: "#9a600f" 19 | bright: 20 | black: "#ab9e9e" 21 | red: "#b28930" 22 | green: "#bbada9" 23 | yellow: "#c37305" 24 | blue: "#d0ae58" 25 | magenta: "#d7b559" 26 | cyan: "#f4e199" 27 | white: "#f6f4df" 28 | -------------------------------------------------------------------------------- /config/termusic/themes/Dkeg - panels.yml: -------------------------------------------------------------------------------- 1 | colors: 2 | name: Panels 3 | author: dkeg 4 | primary: 5 | background: "#000000" 6 | foreground: "#d3d3d3" 7 | cursor: 8 | text: "#000000" 9 | cursor: "#d3d3d3" 10 | normal: 11 | black: "#191927" 12 | red: "#282f5e" 13 | green: "#2b4593" 14 | yellow: "#344276" 15 | blue: "#4e3a4f" 16 | magenta: "#61372f" 17 | cyan: "#6b484c" 18 | white: "#744537" 19 | bright: 20 | black: "#905749" 21 | red: "#94431c" 22 | green: "#9f582a" 23 | yellow: "#a38687" 24 | blue: "#e1750f" 25 | magenta: "#eaaf25" 26 | cyan: "#fa8e08" 27 | white: "#fca806" 28 | -------------------------------------------------------------------------------- /config/termusic/themes/Dkeg - redphoenix.yml: -------------------------------------------------------------------------------- 1 | colors: 2 | name: Red Phoenix 3 | author: dkeg 4 | primary: 5 | background: "#111111" 6 | foreground: "#ffffff" 7 | cursor: 8 | text: "#111111" 9 | cursor: "#ffffff" 10 | normal: 11 | black: "#131313" 12 | red: "#2d2d2d" 13 | green: "#4c3a3d" 14 | yellow: "#4e4e4e" 15 | blue: "#6f6f6f" 16 | magenta: "#909090" 17 | cyan: "#aaa998" 18 | white: "#b1b1b1" 19 | bright: 20 | black: "#d1d1d1" 21 | red: "#d2c3ad" 22 | green: "#df9767" 23 | yellow: "#e1e1e1" 24 | blue: "#ededed" 25 | magenta: "#ed4b19" 26 | cyan: "#f2361e" 27 | white: "#fa390f" 28 | -------------------------------------------------------------------------------- /config/termusic/themes/Dkeg - teva.yml: -------------------------------------------------------------------------------- 1 | colors: 2 | name: Teva 3 | author: dkeg 4 | primary: 5 | background: "#170f0d" 6 | foreground: "#746c48" 7 | cursor: 8 | text: "#170f0d" 9 | cursor: "#746c48" 10 | normal: 11 | black: "#191f31" 12 | red: "#282e39" 13 | green: "#303844" 14 | yellow: "#3b444a" 15 | blue: "#3c4435" 16 | magenta: "#4e534f" 17 | cyan: "#5d5d35" 18 | white: "#66695d" 19 | bright: 20 | black: "#706d56" 21 | red: "#8b7852" 22 | green: "#909581" 23 | yellow: "#91703a" 24 | blue: "#948658" 25 | magenta: "#a19662" 26 | cyan: "#ad9152" 27 | white: "#c6a13f" 28 | -------------------------------------------------------------------------------- /config/termusic/themes/Dkeg - unsiftedwheat.yml: -------------------------------------------------------------------------------- 1 | colors: 2 | name: Unsifted Wheat 3 | author: dkeg 4 | primary: 5 | background: "#111111" 6 | foreground: "#d3d3d3" 7 | cursor: 8 | text: "#111111" 9 | cursor: "#d3d3d3" 10 | normal: 11 | black: "#382c2f" 12 | red: "#48393a" 13 | green: "#65534d" 14 | yellow: "#79665a" 15 | blue: "#836e5e" 16 | magenta: "#8e7766" 17 | cyan: "#917781" 18 | white: "#9a846d" 19 | bright: 20 | black: "#ac9377" 21 | red: "#baa17e" 22 | green: "#bca282" 23 | yellow: "#c1a67e" 24 | blue: "#cfb48e" 25 | magenta: "#d1baa3" 26 | cyan: "#dfc39b" 27 | white: "#eed8c4" 28 | -------------------------------------------------------------------------------- /config/termusic/themes/Dkeg - vwbug.yml: -------------------------------------------------------------------------------- 1 | colors: 2 | name: VWbug 3 | author: dkeg 4 | primary: 5 | background: "#170f0d" 6 | foreground: "#746c48" 7 | cursor: 8 | text: "#170f0d" 9 | cursor: "#746c48" 10 | normal: 11 | black: "#261e26" 12 | red: "#312c38" 13 | green: "#4d353b" 14 | yellow: "#503b43" 15 | blue: "#57403e" 16 | magenta: "#665453" 17 | cyan: "#6e5450" 18 | white: "#8e7266" 19 | bright: 20 | black: "#906756" 21 | red: "#927e7e" 22 | green: "#ad6042" 23 | yellow: "#b48b6f" 24 | blue: "#c4ab98" 25 | magenta: "#d9c9b6" 26 | cyan: "#e7ddd1" 27 | white: "#faf7f2" 28 | -------------------------------------------------------------------------------- /config/termusic/themes/Dotshare.yml: -------------------------------------------------------------------------------- 1 | colors: 2 | name: Dotshare 3 | author: "" 4 | primary: 5 | background: "#000000" 6 | foreground: "#ffffff" 7 | cursor: 8 | text: "#000000" 9 | cursor: "#ffffff" 10 | normal: 11 | black: "#101010" 12 | red: "#e84f4f" 13 | green: "#b8d68c" 14 | yellow: "#e1aa5d" 15 | blue: "#7dc1cf" 16 | magenta: "#9b64fb" 17 | cyan: "#6d878d" 18 | white: "#dddddd" 19 | bright: 20 | black: "#404040" 21 | red: "#d23d3d" 22 | green: "#a0cf5d" 23 | yellow: "#f39d21" 24 | blue: "#4e9fb1" 25 | magenta: "#8542ff" 26 | cyan: "#42717b" 27 | white: "#dddddd" 28 | -------------------------------------------------------------------------------- /config/termusic/themes/Dracula.yml: -------------------------------------------------------------------------------- 1 | # Colors (Dracula) 2 | colors: 3 | # Default colors 4 | primary: 5 | background: '#282a36' 6 | foreground: '#f8f8f2' 7 | 8 | # Normal colors 9 | normal: 10 | black: '#000000' 11 | red: '#ff5555' 12 | green: '#50fa7b' 13 | yellow: '#f1fa8c' 14 | blue: '#caa9fa' 15 | magenta: '#ff79c6' 16 | cyan: '#8be9fd' 17 | white: '#bfbfbf' 18 | 19 | # Bright colors 20 | bright: 21 | black: '#575b70' 22 | red: '#ff6e67' 23 | green: '#5af78e' 24 | yellow: '#f4f99d' 25 | blue: '#caa9fa' 26 | magenta: '#ff92d0' 27 | cyan: '#9aedfe' 28 | white: '#e6e6e6' 29 | -------------------------------------------------------------------------------- /config/termusic/themes/Dwmrob.yml: -------------------------------------------------------------------------------- 1 | colors: 2 | name: DWM rob 3 | author: "" 4 | primary: 5 | background: "#000000" 6 | foreground: "#ffffff" 7 | cursor: 8 | text: "#000000" 9 | cursor: "#ffffff" 10 | normal: 11 | black: "#151515" 12 | red: "#bf7979" 13 | green: "#97b26b" 14 | yellow: "#cdcda1" 15 | blue: "#4a5463" 16 | magenta: "#9c3885" 17 | cyan: "#88aadd" 18 | white: "#ffffff" 19 | bright: 20 | black: "#505450" 21 | red: "#f4a45f" 22 | green: "#c5f779" 23 | yellow: "#ffffaf" 24 | blue: "#7d8794" 25 | magenta: "#e628ba" 26 | cyan: "#99ccff" 27 | white: "#dedede" 28 | -------------------------------------------------------------------------------- /config/termusic/themes/Eighties.dark.yml: -------------------------------------------------------------------------------- 1 | colors: 2 | name: Eighties (dark) 3 | author: Chris Kempson 4 | primary: 5 | background: "#2d2d2d" 6 | foreground: "#d3d0c8" 7 | cursor: 8 | text: "#2d2d2d" 9 | cursor: "#d3d0c8" 10 | normal: 11 | black: "#2d2d2d" 12 | red: "#f2777a" 13 | green: "#99cc99" 14 | yellow: "#ffcc66" 15 | blue: "#6699cc" 16 | magenta: "#cc99cc" 17 | cyan: "#66cccc" 18 | white: "#d3d0c8" 19 | bright: 20 | black: "#747369" 21 | red: "#f2777a" 22 | green: "#99cc99" 23 | yellow: "#ffcc66" 24 | blue: "#6699cc" 25 | magenta: "#cc99cc" 26 | cyan: "#66cccc" 27 | white: "#f2f0ec" 28 | -------------------------------------------------------------------------------- /config/termusic/themes/Eighties.light.yml: -------------------------------------------------------------------------------- 1 | colors: 2 | name: Eighties (light) 3 | author: Chris Kempson 4 | primary: 5 | background: "#f2f0ec" 6 | foreground: "#515151" 7 | cursor: 8 | text: "#f2f0ec" 9 | cursor: "#515151" 10 | normal: 11 | black: "#2d2d2d" 12 | red: "#f2777a" 13 | green: "#99cc99" 14 | yellow: "#ffcc66" 15 | blue: "#6699cc" 16 | magenta: "#cc99cc" 17 | cyan: "#66cccc" 18 | white: "#d3d0c8" 19 | bright: 20 | black: "#747369" 21 | red: "#f2777a" 22 | green: "#99cc99" 23 | yellow: "#ffcc66" 24 | blue: "#6699cc" 25 | magenta: "#cc99cc" 26 | cyan: "#66cccc" 27 | white: "#f2f0ec" 28 | -------------------------------------------------------------------------------- /config/termusic/themes/Embers.dark.yml: -------------------------------------------------------------------------------- 1 | colors: 2 | name: Embers (dark) 3 | author: Chris Kempson 4 | primary: 5 | background: "#16130f" 6 | foreground: "#a39a90" 7 | cursor: 8 | text: "#16130f" 9 | cursor: "#a39a90" 10 | normal: 11 | black: "#16130f" 12 | red: "#826d57" 13 | green: "#57826d" 14 | yellow: "#6d8257" 15 | blue: "#6d5782" 16 | magenta: "#82576d" 17 | cyan: "#576d82" 18 | white: "#a39a90" 19 | bright: 20 | black: "#5a5047" 21 | red: "#826d57" 22 | green: "#57826d" 23 | yellow: "#6d8257" 24 | blue: "#6d5782" 25 | magenta: "#82576d" 26 | cyan: "#576d82" 27 | white: "#dbd6d1" 28 | -------------------------------------------------------------------------------- /config/termusic/themes/Embers.light.yml: -------------------------------------------------------------------------------- 1 | colors: 2 | name: Embers (light) 3 | author: Chris Kempson 4 | primary: 5 | background: "#dbd6d1" 6 | foreground: "#433b32" 7 | cursor: 8 | text: "#dbd6d1" 9 | cursor: "#433b32" 10 | normal: 11 | black: "#16130f" 12 | red: "#826d57" 13 | green: "#57826d" 14 | yellow: "#6d8257" 15 | blue: "#6d5782" 16 | magenta: "#82576d" 17 | cyan: "#576d82" 18 | white: "#a39a90" 19 | bright: 20 | black: "#5a5047" 21 | red: "#826d57" 22 | green: "#57826d" 23 | yellow: "#6d8257" 24 | blue: "#6d5782" 25 | magenta: "#82576d" 26 | cyan: "#576d82" 27 | white: "#dbd6d1" 28 | -------------------------------------------------------------------------------- /config/termusic/themes/Epiphany.yml: -------------------------------------------------------------------------------- 1 | colors: 2 | name: Epiphany 3 | author: "" 4 | primary: 5 | background: "#000000" 6 | foreground: "#ffffff" 7 | cursor: 8 | text: "#000000" 9 | cursor: "#ffffff" 10 | normal: 11 | black: "#565656" 12 | red: "#ac4f4f" 13 | green: "#88ab77" 14 | yellow: "#d0d9ad" 15 | blue: "#677088" 16 | magenta: "#cdcdb4" 17 | cyan: "#445362" 18 | white: "#ffffff" 19 | bright: 20 | black: "#656565" 21 | red: "#e85555" 22 | green: "#8ccd6c" 23 | yellow: "#c5d67d" 24 | blue: "#647396" 25 | magenta: "#cdb4c9" 26 | cyan: "#505b6c" 27 | white: "#c0c0c0" 28 | -------------------------------------------------------------------------------- /config/termusic/themes/Eqie6.yml: -------------------------------------------------------------------------------- 1 | colors: 2 | name: Eqie6 3 | author: "" 4 | primary: 5 | background: "#111111" 6 | foreground: "#cccccc" 7 | cursor: 8 | text: "#111111" 9 | cursor: "#cccccc" 10 | normal: 11 | black: "#222222" 12 | red: "#e84f4f" 13 | green: "#b7ce42" 14 | yellow: "#fea63c" 15 | blue: "#66a9b9" 16 | magenta: "#b7416e" 17 | cyan: "#6d878d" 18 | white: "#cccccc" 19 | bright: 20 | black: "#666666" 21 | red: "#d23d3d" 22 | green: "#bde077" 23 | yellow: "#ffe863" 24 | blue: "#aaccbb" 25 | magenta: "#e16a98" 26 | cyan: "#42717b" 27 | white: "#ffffff" 28 | -------------------------------------------------------------------------------- /config/termusic/themes/Erebus.yml: -------------------------------------------------------------------------------- 1 | colors: 2 | name: Erebus 3 | author: "" 4 | primary: 5 | background: "#000000" 6 | foreground: "#ffffff" 7 | cursor: 8 | text: "#000000" 9 | cursor: "#ffffff" 10 | normal: 11 | black: "#757575" 12 | red: "#ff5f5f" 13 | green: "#de8a36" 14 | yellow: "#d78787" 15 | blue: "#af5fd7" 16 | magenta: "#ff87d7" 17 | cyan: "#dea3e5" 18 | white: "#b8b8b8" 19 | bright: 20 | black: "#b8b8b8" 21 | red: "#d78787" 22 | green: "#ff9f6f" 23 | yellow: "#ff5f5f" 24 | blue: "#dea3e5" 25 | magenta: "#d7afaf" 26 | cyan: "#af5fd7" 27 | white: "#757575" 28 | -------------------------------------------------------------------------------- /config/termusic/themes/Euphrasia.yml: -------------------------------------------------------------------------------- 1 | colors: 2 | name: Euphrasia 3 | author: "" 4 | primary: 5 | background: "#cfcfd9" 6 | foreground: "#1c2027" 7 | cursor: 8 | text: "#cfcfd9" 9 | cursor: "#1c2027" 10 | normal: 11 | black: "#192033" 12 | red: "#a62a3e" 13 | green: "#38912b" 14 | yellow: "#b27d12" 15 | blue: "#355c9a" 16 | magenta: "#7c4f9f" 17 | cyan: "#258f8f" 18 | white: "#77858c" 19 | bright: 20 | black: "#666666" 21 | red: "#f04758" 22 | green: "#93c724" 23 | yellow: "#ddb62b" 24 | blue: "#45a3e6" 25 | magenta: "#c953ef" 26 | cyan: "#60c6c8" 27 | white: "#c0c0c0" 28 | -------------------------------------------------------------------------------- /config/termusic/themes/Fishbone.yml: -------------------------------------------------------------------------------- 1 | colors: 2 | name: Fishbone 3 | author: "" 4 | primary: 5 | background: "#000000" 6 | foreground: "#ffffff" 7 | cursor: 8 | text: "#000000" 9 | cursor: "#ffffff" 10 | normal: 11 | black: "#293b3b" 12 | red: "#bf5357" 13 | green: "#41a551" 14 | yellow: "#aea64f" 15 | blue: "#416ea5" 16 | magenta: "#bf6053" 17 | cyan: "#714da5" 18 | white: "#876868" 19 | bright: 20 | black: "#344040" 21 | red: "#bf6367" 22 | green: "#51a55f" 23 | yellow: "#aea75d" 24 | blue: "#5177a5" 25 | magenta: "#bf6e63" 26 | cyan: "#7859a5" 27 | white: "#876f6f" 28 | -------------------------------------------------------------------------------- /config/termusic/themes/Gjm.yml: -------------------------------------------------------------------------------- 1 | colors: 2 | name: GJM 3 | author: "" 4 | primary: 5 | background: "#1c1c1c" 6 | foreground: "#c5c5c5" 7 | cursor: 8 | text: "#1c1c1c" 9 | cursor: "#c5c5c5" 10 | normal: 11 | black: "#1c1c1c" 12 | red: "#ff005b" 13 | green: "#cee318" 14 | yellow: "#ffe755" 15 | blue: "#048ac7" 16 | magenta: "#833c9f" 17 | cyan: "#0ac1cd" 18 | white: "#e5e5e5" 19 | bright: 20 | black: "#666666" 21 | red: "#ff00a0" 22 | green: "#ccff00" 23 | yellow: "#ff9f00" 24 | blue: "#48c6ff" 25 | magenta: "#be67e1" 26 | cyan: "#63e7f0" 27 | white: "#f3f3f3" 28 | -------------------------------------------------------------------------------- /config/termusic/themes/Gnometerm.yml: -------------------------------------------------------------------------------- 1 | colors: 2 | name: Gnometerm 3 | author: "" 4 | primary: 5 | background: "#000000" 6 | foreground: "#ffffff" 7 | cursor: 8 | text: "#000000" 9 | cursor: "#ffffff" 10 | normal: 11 | black: "#000000" 12 | red: "#cc0000" 13 | green: "#4e9a06" 14 | yellow: "#c4a000" 15 | blue: "#3465a4" 16 | magenta: "#75507b" 17 | cyan: "#06989a" 18 | white: "#d3d7cf" 19 | bright: 20 | black: "#555753" 21 | red: "#ef2929" 22 | green: "#8ae234" 23 | yellow: "#fce94f" 24 | blue: "#729fcf" 25 | magenta: "#ad7fa8" 26 | cyan: "#34e2e2" 27 | white: "#eeeeec" 28 | -------------------------------------------------------------------------------- /config/termusic/themes/Google.dark.yml: -------------------------------------------------------------------------------- 1 | colors: 2 | name: Google (dark) 3 | author: Chris Kempson 4 | primary: 5 | background: "#1d1f21" 6 | foreground: "#c5c8c6" 7 | cursor: 8 | text: "#1d1f21" 9 | cursor: "#c5c8c6" 10 | normal: 11 | black: "#1d1f21" 12 | red: "#cc342b" 13 | green: "#198844" 14 | yellow: "#fba922" 15 | blue: "#3971ed" 16 | magenta: "#a36ac7" 17 | cyan: "#3971ed" 18 | white: "#c5c8c6" 19 | bright: 20 | black: "#969896" 21 | red: "#cc342b" 22 | green: "#198844" 23 | yellow: "#fba922" 24 | blue: "#3971ed" 25 | magenta: "#a36ac7" 26 | cyan: "#3971ed" 27 | white: "#ffffff" 28 | -------------------------------------------------------------------------------- /config/termusic/themes/Google.light.yml: -------------------------------------------------------------------------------- 1 | colors: 2 | name: Google (light) 3 | author: Chris Kempson 4 | primary: 5 | background: "#ffffff" 6 | foreground: "#373b41" 7 | cursor: 8 | text: "#ffffff" 9 | cursor: "#373b41" 10 | normal: 11 | black: "#1d1f21" 12 | red: "#cc342b" 13 | green: "#198844" 14 | yellow: "#fba922" 15 | blue: "#3971ed" 16 | magenta: "#a36ac7" 17 | cyan: "#3971ed" 18 | white: "#c5c8c6" 19 | bright: 20 | black: "#969896" 21 | red: "#cc342b" 22 | green: "#198844" 23 | yellow: "#fba922" 24 | blue: "#3971ed" 25 | magenta: "#a36ac7" 26 | cyan: "#3971ed" 27 | white: "#ffffff" 28 | -------------------------------------------------------------------------------- /config/termusic/themes/Gotham.yml: -------------------------------------------------------------------------------- 1 | colors: 2 | name: Gotham 3 | author: whatyouhide 4 | primary: 5 | background: "#0a0f14" 6 | foreground: "#98d1ce" 7 | cursor: 8 | text: "#0a0f14" 9 | cursor: "#98d1ce" 10 | normal: 11 | black: "#0a0f14" 12 | red: "#c33027" 13 | green: "#26a98b" 14 | yellow: "#edb54b" 15 | blue: "#195465" 16 | magenta: "#4e5165" 17 | cyan: "#33859d" 18 | white: "#98d1ce" 19 | bright: 20 | black: "#10151b" 21 | red: "#d26939" 22 | green: "#081f2d" 23 | yellow: "#245361" 24 | blue: "#093748" 25 | magenta: "#888ba5" 26 | cyan: "#599caa" 27 | white: "#d3ebe9" 28 | -------------------------------------------------------------------------------- /config/termusic/themes/Grandshell.yml: -------------------------------------------------------------------------------- 1 | colors: 2 | name: Grandshell 3 | author: "" 4 | primary: 5 | background: "#000000" 6 | foreground: "#bebebe" 7 | cursor: 8 | text: "#000000" 9 | cursor: "#bebebe" 10 | normal: 11 | black: "#000000" 12 | red: "#f25a5a" 13 | green: "#77bb33" 14 | yellow: "#efc334" 15 | blue: "#5555dd" 16 | magenta: "#c350ff" 17 | cyan: "#5af2ee" 18 | white: "#bebebe" 19 | bright: 20 | black: "#222222" 21 | red: "#ffbbbb" 22 | green: "#dcf692" 23 | yellow: "#f6df92" 24 | blue: "#b2baf6" 25 | magenta: "#f09fff" 26 | cyan: "#5af2ee" 27 | white: "#eeeeee" 28 | -------------------------------------------------------------------------------- /config/termusic/themes/Grayscale.dark.yml: -------------------------------------------------------------------------------- 1 | colors: 2 | name: Grayscale (dark) 3 | author: Chris Kempson 4 | primary: 5 | background: "#101010" 6 | foreground: "#b9b9b9" 7 | cursor: 8 | text: "#101010" 9 | cursor: "#b9b9b9" 10 | normal: 11 | black: "#101010" 12 | red: "#7c7c7c" 13 | green: "#8e8e8e" 14 | yellow: "#a0a0a0" 15 | blue: "#686868" 16 | magenta: "#747474" 17 | cyan: "#868686" 18 | white: "#b9b9b9" 19 | bright: 20 | black: "#525252" 21 | red: "#7c7c7c" 22 | green: "#8e8e8e" 23 | yellow: "#a0a0a0" 24 | blue: "#686868" 25 | magenta: "#747474" 26 | cyan: "#868686" 27 | white: "#f7f7f7" 28 | -------------------------------------------------------------------------------- /config/termusic/themes/Grayscale.light.yml: -------------------------------------------------------------------------------- 1 | colors: 2 | name: Grayscale (light) 3 | author: Chris Kempson 4 | primary: 5 | background: "#f7f7f7" 6 | foreground: "#464646" 7 | cursor: 8 | text: "#f7f7f7" 9 | cursor: "#464646" 10 | normal: 11 | black: "#101010" 12 | red: "#7c7c7c" 13 | green: "#8e8e8e" 14 | yellow: "#a0a0a0" 15 | blue: "#686868" 16 | magenta: "#747474" 17 | cyan: "#868686" 18 | white: "#b9b9b9" 19 | bright: 20 | black: "#525252" 21 | red: "#7c7c7c" 22 | green: "#8e8e8e" 23 | yellow: "#a0a0a0" 24 | blue: "#686868" 25 | magenta: "#747474" 26 | cyan: "#868686" 27 | white: "#f7f7f7" 28 | -------------------------------------------------------------------------------- /config/termusic/themes/Greenscreen.dark.yml: -------------------------------------------------------------------------------- 1 | colors: 2 | name: Greenscreen (dark) 3 | author: Chris Kempson 4 | primary: 5 | background: "#001100" 6 | foreground: "#00bb00" 7 | cursor: 8 | text: "#001100" 9 | cursor: "#00bb00" 10 | normal: 11 | black: "#001100" 12 | red: "#007700" 13 | green: "#00bb00" 14 | yellow: "#007700" 15 | blue: "#009900" 16 | magenta: "#00bb00" 17 | cyan: "#005500" 18 | white: "#00bb00" 19 | bright: 20 | black: "#007700" 21 | red: "#007700" 22 | green: "#00bb00" 23 | yellow: "#007700" 24 | blue: "#009900" 25 | magenta: "#00bb00" 26 | cyan: "#005500" 27 | white: "#00ff00" 28 | -------------------------------------------------------------------------------- /config/termusic/themes/Greenscreen.light.yml: -------------------------------------------------------------------------------- 1 | colors: 2 | name: Greenscreen (light) 3 | author: Chris Kempson 4 | primary: 5 | background: "#00ff00" 6 | foreground: "#005500" 7 | cursor: 8 | text: "#00ff00" 9 | cursor: "#005500" 10 | normal: 11 | black: "#001100" 12 | red: "#007700" 13 | green: "#00bb00" 14 | yellow: "#007700" 15 | blue: "#009900" 16 | magenta: "#00bb00" 17 | cyan: "#005500" 18 | white: "#00bb00" 19 | bright: 20 | black: "#007700" 21 | red: "#007700" 22 | green: "#00bb00" 23 | yellow: "#007700" 24 | blue: "#009900" 25 | magenta: "#00bb00" 26 | cyan: "#005500" 27 | white: "#00ff00" 28 | -------------------------------------------------------------------------------- /config/termusic/themes/Gslob nature-suede.yml: -------------------------------------------------------------------------------- 1 | colors: 2 | name: Nature Suede 3 | author: Gslob 4 | primary: 5 | background: "#170f0d" 6 | foreground: "#746c48" 7 | cursor: 8 | text: "#170f0d" 9 | cursor: "#746c48" 10 | normal: 11 | black: "#392925" 12 | red: "#98724c" 13 | green: "#908f32" 14 | yellow: "#aa964c" 15 | blue: "#7b854e" 16 | magenta: "#6b5644" 17 | cyan: "#5c5142" 18 | white: "#c8b55b" 19 | bright: 20 | black: "#544b2e" 21 | red: "#af652f" 22 | green: "#c3c13d" 23 | yellow: "#c8b55b" 24 | blue: "#70a16c" 25 | magenta: "#98724c" 26 | cyan: "#778725" 27 | white: "#e4dc8c" 28 | -------------------------------------------------------------------------------- /config/termusic/themes/Gutterslob - aikofog.yml: -------------------------------------------------------------------------------- 1 | colors: 2 | name: aikofog 3 | author: Gutterslob 4 | primary: 5 | background: "#f1eee9" 6 | foreground: "#b2b3b8" 7 | cursor: 8 | text: "#f1eee9" 9 | cursor: "#b2b3b8" 10 | normal: 11 | black: "#757475" 12 | red: "#936a6f" 13 | green: "#668462" 14 | yellow: "#7f7b62" 15 | blue: "#6e7291" 16 | magenta: "#846887" 17 | cyan: "#637e7b" 18 | white: "#9a9a9a" 19 | bright: 20 | black: "#4a4a4a" 21 | red: "#d76572" 22 | green: "#4fae42" 23 | yellow: "#a8981f" 24 | blue: "#7782cf" 25 | magenta: "#b754c4" 26 | cyan: "#2ea89a" 27 | white: "#c4c4c4" 28 | -------------------------------------------------------------------------------- /config/termusic/themes/Gutterslob - lumifoo.yml: -------------------------------------------------------------------------------- 1 | colors: 2 | name: Lumifoo 3 | author: Gutterslob 4 | primary: 5 | background: "#1e2021" 6 | foreground: "#888a8c" 7 | cursor: 8 | text: "#1e2021" 9 | cursor: "#888a8c" 10 | normal: 11 | black: "#515151" 12 | red: "#bf6382" 13 | green: "#65a446" 14 | yellow: "#ad8a43" 15 | blue: "#6b85c2" 16 | magenta: "#9e6bb8" 17 | cyan: "#5c9d88" 18 | white: "#919191" 19 | bright: 20 | black: "#707172" 21 | red: "#eaaec2" 22 | green: "#aed49b" 23 | yellow: "#d4c3a0" 24 | blue: "#afc4e9" 25 | magenta: "#d2b1e2" 26 | cyan: "#a4d0c1" 27 | white: "#d0d0d0" 28 | -------------------------------------------------------------------------------- /config/termusic/themes/Gutterslob lightwhite.yml: -------------------------------------------------------------------------------- 1 | colors: 2 | name: Light White 3 | author: Gutterslob 4 | primary: 5 | background: "#000000" 6 | foreground: "#ffffff" 7 | cursor: 8 | text: "#000000" 9 | cursor: "#ffffff" 10 | normal: 11 | black: "#808080" 12 | red: "#c48980" 13 | green: "#8da862" 14 | yellow: "#b29b7a" 15 | blue: "#809bc4" 16 | magenta: "#aa88b2" 17 | cyan: "#82adad" 18 | white: "#bfbfbf" 19 | bright: 20 | black: "#9c9c9c" 21 | red: "#a15048" 22 | green: "#4b7508" 23 | yellow: "#916f27" 24 | blue: "#567cb0" 25 | magenta: "#964e8f" 26 | cyan: "#4e848a" 27 | white: "#9c9c9c" 28 | -------------------------------------------------------------------------------- /config/termusic/themes/Hund.yml: -------------------------------------------------------------------------------- 1 | colors: 2 | name: hund 3 | author: hund 4 | primary: 5 | background: "#161616" 6 | foreground: "#FFFFFF" 7 | cursor: 8 | text: "#161616" 9 | cursor: "#FFFFFF" 10 | normal: 11 | black: "#222222" 12 | red: "#E84F4F" 13 | green: "#B7CE42" 14 | yellow: "#FEA63C" 15 | blue: "#66AABB" 16 | magenta: "#B7416E" 17 | cyan: "#6D878D" 18 | white: "#DDDDDD" 19 | bright: 20 | black: "#666666" 21 | red: "#D23D3D" 22 | green: "#BDE077" 23 | yellow: "#FFE863" 24 | blue: "#AACCBB" 25 | magenta: "#E16A98" 26 | cyan: "#42717B" 27 | white: "#CCCCCC" 28 | -------------------------------------------------------------------------------- /config/termusic/themes/Hybrid.yml: -------------------------------------------------------------------------------- 1 | # Colors (Hybrid) 2 | colors: 3 | # Default colors 4 | primary: 5 | background: '#27292c' 6 | foreground: '#d0d2d1' 7 | 8 | # Normal colors 9 | normal: 10 | black: '#35383b' 11 | red: '#b05655' 12 | green: '#769972' 13 | yellow: '#e1a574' 14 | blue: '#7693ac' 15 | magenta: '#977ba0' 16 | cyan: '#749e99' 17 | white: '#848b92' 18 | 19 | # Bright colors 20 | bright: 21 | black: '#484c52' 22 | red: '#d27c7b' 23 | green: '#dffebe' 24 | yellow: '#f0d189' 25 | blue: '#96b1c9' 26 | magenta: '#bfa5c7' 27 | cyan: '#9fc9c3' 28 | white: '#fcf7e2' 29 | -------------------------------------------------------------------------------- /config/termusic/themes/Iiamblack.yml: -------------------------------------------------------------------------------- 1 | colors: 2 | name: Iiamblack 3 | author: iiamblack 4 | primary: 5 | background: "#000000" 6 | foreground: "#ffffff" 7 | cursor: 8 | text: "#000000" 9 | cursor: "#ffffff" 10 | normal: 11 | black: "#393939" 12 | red: "#da4939" 13 | green: "#519f50" 14 | yellow: "#cc7833" 15 | blue: "#6d9cbe" 16 | magenta: "#9f5079" 17 | cyan: "#435d75" 18 | white: "#dddddd" 19 | bright: 20 | black: "#474747" 21 | red: "#ff6c5c" 22 | green: "#a5c261" 23 | yellow: "#bc9458" 24 | blue: "#d0d0ff" 25 | magenta: "#a761c2" 26 | cyan: "#6e98a4" 27 | white: "#dddddd" 28 | -------------------------------------------------------------------------------- /config/termusic/themes/Insignificato.yml: -------------------------------------------------------------------------------- 1 | colors: 2 | name: Insignificato 3 | author: "" 4 | primary: 5 | background: "#000000" 6 | foreground: "#ffffff" 7 | cursor: 8 | text: "#000000" 9 | cursor: "#ffffff" 10 | normal: 11 | black: "#3d3e3d" 12 | red: "#755a5b" 13 | green: "#68755a" 14 | yellow: "#756e5a" 15 | blue: "#5b6976" 16 | magenta: "#755b76" 17 | cyan: "#5b7674" 18 | white: "#808080" 19 | bright: 20 | black: "#5a5b5c" 21 | red: "#a37679" 22 | green: "#87a376" 23 | yellow: "#a39b76" 24 | blue: "#758ba3" 25 | magenta: "#9f76a3" 26 | cyan: "#75a3a1" 27 | white: "#aeafb0" 28 | -------------------------------------------------------------------------------- /config/termusic/themes/Invisibone.yml: -------------------------------------------------------------------------------- 1 | colors: 2 | name: Invisibone 3 | author: Baskerville 4 | primary: 5 | background: "#232323" 6 | foreground: "#A0A0A0" 7 | cursor: 8 | text: "#232323" 9 | cursor: "#A0A0A0" 10 | normal: 11 | black: "#303030" 12 | red: "#D370A3" 13 | green: "#6D9E3F" 14 | yellow: "#B58858" 15 | blue: "#6095C5" 16 | magenta: "#AC7BDE" 17 | cyan: "#3BA275" 18 | white: "#CFCFCF" 19 | bright: 20 | black: "#686868" 21 | red: "#FFA7DA" 22 | green: "#A3D572" 23 | yellow: "#EFBD8B" 24 | blue: "#98CBFE" 25 | magenta: "#E5B0FF" 26 | cyan: "#75DAA9" 27 | white: "#FFFFFF" 28 | -------------------------------------------------------------------------------- /config/termusic/themes/Isotope.dark.yml: -------------------------------------------------------------------------------- 1 | colors: 2 | name: Isotope (dark) 3 | author: Chris Kempson 4 | primary: 5 | background: "#000000" 6 | foreground: "#d0d0d0" 7 | cursor: 8 | text: "#000000" 9 | cursor: "#d0d0d0" 10 | normal: 11 | black: "#000000" 12 | red: "#ff0000" 13 | green: "#33ff00" 14 | yellow: "#ff0099" 15 | blue: "#0066ff" 16 | magenta: "#cc00ff" 17 | cyan: "#00ffff" 18 | white: "#d0d0d0" 19 | bright: 20 | black: "#808080" 21 | red: "#ff0000" 22 | green: "#33ff00" 23 | yellow: "#ff0099" 24 | blue: "#0066ff" 25 | magenta: "#cc00ff" 26 | cyan: "#00ffff" 27 | white: "#ffffff" 28 | -------------------------------------------------------------------------------- /config/termusic/themes/Isotope.light.yml: -------------------------------------------------------------------------------- 1 | colors: 2 | name: Isotope (light) 3 | author: Chris Kempson 4 | primary: 5 | background: "#ffffff" 6 | foreground: "#606060" 7 | cursor: 8 | text: "#ffffff" 9 | cursor: "#606060" 10 | normal: 11 | black: "#000000" 12 | red: "#ff0000" 13 | green: "#33ff00" 14 | yellow: "#ff0099" 15 | blue: "#0066ff" 16 | magenta: "#cc00ff" 17 | cyan: "#00ffff" 18 | white: "#d0d0d0" 19 | bright: 20 | black: "#808080" 21 | red: "#ff0000" 22 | green: "#33ff00" 23 | yellow: "#ff0099" 24 | blue: "#0066ff" 25 | magenta: "#cc00ff" 26 | cyan: "#00ffff" 27 | white: "#ffffff" 28 | -------------------------------------------------------------------------------- /config/termusic/themes/Jasonwryan.yml: -------------------------------------------------------------------------------- 1 | colors: 2 | name: Jason Wryan 3 | author: "" 4 | primary: 5 | background: "#000000" 6 | foreground: "#ffffff" 7 | cursor: 8 | text: "#000000" 9 | cursor: "#ffffff" 10 | normal: 11 | black: "#222222" 12 | red: "#9e5641" 13 | green: "#6c7e55" 14 | yellow: "#caaf2b" 15 | blue: "#4c8ea1" 16 | magenta: "#956d9d" 17 | cyan: "#7c9aa6" 18 | white: "#909090" 19 | bright: 20 | black: "#454545" 21 | red: "#cc896d" 22 | green: "#7db37d" 23 | yellow: "#bfb556" 24 | blue: "#6bc1d0" 25 | magenta: "#c18fcb" 26 | cyan: "#8fadbf" 27 | white: "#ffffff" 28 | -------------------------------------------------------------------------------- /config/termusic/themes/Jmbi.yml: -------------------------------------------------------------------------------- 1 | colors: 2 | name: jmbi 3 | author: jmbi 4 | primary: 5 | background: "#1e1e1e" 6 | foreground: "#ffffff" 7 | cursor: 8 | text: "#1e1e1e" 9 | cursor: "#ffffff" 10 | normal: 11 | black: "#5A7260" 12 | red: "#8F423C" 13 | green: "#BBBB88" 14 | yellow: "#F9D25B" 15 | blue: "#E0BA69" 16 | magenta: "#709289" 17 | cyan: "#D13516" 18 | white: "#EFE2E0" 19 | bright: 20 | black: "#8DA691" 21 | red: "#EEAA88" 22 | green: "#CCC68D" 23 | yellow: "#EEDD99" 24 | blue: "#C9B957" 25 | magenta: "#FFCBAB" 26 | cyan: "#C25431" 27 | white: "#F9F1ED" 28 | -------------------------------------------------------------------------------- /config/termusic/themes/Jwr-dark.yml: -------------------------------------------------------------------------------- 1 | colors: 2 | name: JWR dark 3 | author: "" 4 | primary: 5 | background: "#000000" 6 | foreground: "#ffffff" 7 | cursor: 8 | text: "#000000" 9 | cursor: "#ffffff" 10 | normal: 11 | black: "#333333" 12 | red: "#8c4665" 13 | green: "#287373" 14 | yellow: "#7c7c99" 15 | blue: "#395573" 16 | magenta: "#5e468c" 17 | cyan: "#31658c" 18 | white: "#899ca1" 19 | bright: 20 | black: "#3d3d3d" 21 | red: "#bf4d80" 22 | green: "#53a6a6" 23 | yellow: "#9e9ecb" 24 | blue: "#477ab3" 25 | magenta: "#7e62b3" 26 | cyan: "#6096bf" 27 | white: "#c0c0c0" 28 | -------------------------------------------------------------------------------- /config/termusic/themes/Kasugano.yml: -------------------------------------------------------------------------------- 1 | colors: 2 | name: Kasugano 3 | author: Kori Ayakashi 4 | primary: 5 | background: "#1b1b1b" 6 | foreground: "#ffffff" 7 | cursor: 8 | text: "#1b1b1b" 9 | cursor: "#ffffff" 10 | normal: 11 | black: "#3D3D3D" 12 | red: "#6673BF" 13 | green: "#3EA290" 14 | yellow: "#B0EAD9" 15 | blue: "#31658C" 16 | magenta: "#596196" 17 | cyan: "#8292B2" 18 | white: "#C8CACC" 19 | bright: 20 | black: "#4D4D4D" 21 | red: "#899AFF" 22 | green: "#52AD91" 23 | yellow: "#98C9BB" 24 | blue: "#477AB3" 25 | magenta: "#7882BF" 26 | cyan: "#95A7CC" 27 | white: "#EDEFF2" 28 | -------------------------------------------------------------------------------- /config/termusic/themes/Kitty.yml: -------------------------------------------------------------------------------- 1 | colors: 2 | # Default colors 3 | primary: 4 | background: '#000000' 5 | foreground: '#dddddd' 6 | 7 | # Normal colors 8 | normal: 9 | black: '#000000' 10 | red: '#cc0403' 11 | green: '#19cb00' 12 | yellow: '#cecb00' 13 | blue: '#0d73cc' 14 | magenta: '#cb1ed1' 15 | cyan: '#0dcdcd' 16 | white: '#dddddd' 17 | 18 | # Bright colors 19 | bright: 20 | black: '#767676' 21 | red: '#f2201f' 22 | green: '#23fd00' 23 | yellow: '#fffd00' 24 | blue: '#1a8fff' 25 | magenta: '#fd28ff' 26 | cyan: '#14ffff' 27 | white: '#ffffff' 28 | -------------------------------------------------------------------------------- /config/termusic/themes/Londontube.dark.yml: -------------------------------------------------------------------------------- 1 | colors: 2 | name: Londontube (dark) 3 | author: Chris Kempson 4 | primary: 5 | background: "#231f20" 6 | foreground: "#d9d8d8" 7 | cursor: 8 | text: "#231f20" 9 | cursor: "#d9d8d8" 10 | normal: 11 | black: "#231f20" 12 | red: "#ee2e24" 13 | green: "#00853e" 14 | yellow: "#ffd204" 15 | blue: "#009ddc" 16 | magenta: "#98005d" 17 | cyan: "#85cebc" 18 | white: "#d9d8d8" 19 | bright: 20 | black: "#737171" 21 | red: "#ee2e24" 22 | green: "#00853e" 23 | yellow: "#ffd204" 24 | blue: "#009ddc" 25 | magenta: "#98005d" 26 | cyan: "#85cebc" 27 | white: "#ffffff" 28 | -------------------------------------------------------------------------------- /config/termusic/themes/Londontube.light.yml: -------------------------------------------------------------------------------- 1 | colors: 2 | name: Londontube (light) 3 | author: Chris Kempson 4 | primary: 5 | background: "#ffffff" 6 | foreground: "#5a5758" 7 | cursor: 8 | text: "#ffffff" 9 | cursor: "#5a5758" 10 | normal: 11 | black: "#231f20" 12 | red: "#ee2e24" 13 | green: "#00853e" 14 | yellow: "#ffd204" 15 | blue: "#009ddc" 16 | magenta: "#98005d" 17 | cyan: "#85cebc" 18 | white: "#d9d8d8" 19 | bright: 20 | black: "#737171" 21 | red: "#ee2e24" 22 | green: "#00853e" 23 | yellow: "#ffd204" 24 | blue: "#009ddc" 25 | magenta: "#98005d" 26 | cyan: "#85cebc" 27 | white: "#ffffff" 28 | -------------------------------------------------------------------------------- /config/termusic/themes/Marrakesh.dark.yml: -------------------------------------------------------------------------------- 1 | colors: 2 | name: Marrakesh (dark) 3 | author: Chris Kempson 4 | primary: 5 | background: "#201602" 6 | foreground: "#948e48" 7 | cursor: 8 | text: "#201602" 9 | cursor: "#948e48" 10 | normal: 11 | black: "#201602" 12 | red: "#c35359" 13 | green: "#18974e" 14 | yellow: "#a88339" 15 | blue: "#477ca1" 16 | magenta: "#8868b3" 17 | cyan: "#75a738" 18 | white: "#948e48" 19 | bright: 20 | black: "#6c6823" 21 | red: "#c35359" 22 | green: "#18974e" 23 | yellow: "#a88339" 24 | blue: "#477ca1" 25 | magenta: "#8868b3" 26 | cyan: "#75a738" 27 | white: "#faf0a5" 28 | -------------------------------------------------------------------------------- /config/termusic/themes/Marrakesh.light.yml: -------------------------------------------------------------------------------- 1 | colors: 2 | name: Marrakesh (light) 3 | author: Chris Kempson 4 | primary: 5 | background: "#faf0a5" 6 | foreground: "#5f5b17" 7 | cursor: 8 | text: "#faf0a5" 9 | cursor: "#5f5b17" 10 | normal: 11 | black: "#201602" 12 | red: "#c35359" 13 | green: "#18974e" 14 | yellow: "#a88339" 15 | blue: "#477ca1" 16 | magenta: "#8868b3" 17 | cyan: "#75a738" 18 | white: "#948e48" 19 | bright: 20 | black: "#6c6823" 21 | red: "#c35359" 22 | green: "#18974e" 23 | yellow: "#a88339" 24 | blue: "#477ca1" 25 | magenta: "#8868b3" 26 | cyan: "#75a738" 27 | white: "#faf0a5" 28 | -------------------------------------------------------------------------------- /config/termusic/themes/Material.yml: -------------------------------------------------------------------------------- 1 | colors: 2 | name: Material 3 | author: "" 4 | primary: 5 | background: "#263238" 6 | foreground: "#eceff1" 7 | cursor: 8 | text: "#263238" 9 | cursor: "#eceff1" 10 | normal: 11 | black: "#263238" 12 | red: "#ff9800" 13 | green: "#8bc34a" 14 | yellow: "#ffc107" 15 | blue: "#03a9f4" 16 | magenta: "#e91e63" 17 | cyan: "#009688" 18 | white: "#cfd8dc" 19 | bright: 20 | black: "#37474f" 21 | red: "#ffa74d" 22 | green: "#9ccc65" 23 | yellow: "#ffa000" 24 | blue: "#81d4fa" 25 | magenta: "#ad1457" 26 | cyan: "#26a69a" 27 | white: "#eceff1" 28 | -------------------------------------------------------------------------------- /config/termusic/themes/Mikado.yml: -------------------------------------------------------------------------------- 1 | colors: 2 | name: Mikado 3 | author: "" 4 | primary: 5 | background: "#000000" 6 | foreground: "#ffffff" 7 | cursor: 8 | text: "#000000" 9 | cursor: "#ffffff" 10 | normal: 11 | black: "#322a2c" 12 | red: "#a04363" 13 | green: "#9b9329" 14 | yellow: "#bf7a29" 15 | blue: "#6a8c8c" 16 | magenta: "#856774" 17 | cyan: "#757978" 18 | white: "#bcbcaf" 19 | bright: 20 | black: "#46423b" 21 | red: "#ae837a" 22 | green: "#b4aa30" 23 | yellow: "#c7a551" 24 | blue: "#74999e" 25 | magenta: "#9c818e" 26 | cyan: "#9fa590" 27 | white: "#c1c4bc" 28 | -------------------------------------------------------------------------------- /config/termusic/themes/Mikazuki.yml: -------------------------------------------------------------------------------- 1 | colors: 2 | name: Mikazuki 3 | author: "" 4 | primary: 5 | background: "#000000" 6 | foreground: "#ffffff" 7 | cursor: 8 | text: "#000000" 9 | cursor: "#ffffff" 10 | normal: 11 | black: "#2a1d17" 12 | red: "#da1657" 13 | green: "#3ea250" 14 | yellow: "#e3d33d" 15 | blue: "#3ea290" 16 | magenta: "#ff850d" 17 | cyan: "#8c16da" 18 | white: "#e9e9e9" 19 | bright: 20 | black: "#4f362b" 21 | red: "#da4375" 22 | green: "#6cb87a" 23 | yellow: "#e3da84" 24 | blue: "#8ca8a3" 25 | magenta: "#ffa64f" 26 | cyan: "#a167c7" 27 | white: "#fdfdfd" 28 | -------------------------------------------------------------------------------- /config/termusic/themes/Mocha.dark.yml: -------------------------------------------------------------------------------- 1 | colors: 2 | name: Mocha (dark) 3 | author: Chris Kempson 4 | primary: 5 | background: "#3b3228" 6 | foreground: "#d0c8c6" 7 | cursor: 8 | text: "#3b3228" 9 | cursor: "#d0c8c6" 10 | normal: 11 | black: "#3b3228" 12 | red: "#cb6077" 13 | green: "#beb55b" 14 | yellow: "#f4bc87" 15 | blue: "#8ab3b5" 16 | magenta: "#a89bb9" 17 | cyan: "#7bbda4" 18 | white: "#d0c8c6" 19 | bright: 20 | black: "#7e705a" 21 | red: "#cb6077" 22 | green: "#beb55b" 23 | yellow: "#f4bc87" 24 | blue: "#8ab3b5" 25 | magenta: "#a89bb9" 26 | cyan: "#7bbda4" 27 | white: "#f5eeeb" 28 | -------------------------------------------------------------------------------- /config/termusic/themes/Mocha.light.yml: -------------------------------------------------------------------------------- 1 | colors: 2 | name: Mocha (light) 3 | author: Chris Kempson 4 | primary: 5 | background: "#f5eeeb" 6 | foreground: "#645240" 7 | cursor: 8 | text: "#f5eeeb" 9 | cursor: "#645240" 10 | normal: 11 | black: "#3b3228" 12 | red: "#cb6077" 13 | green: "#beb55b" 14 | yellow: "#f4bc87" 15 | blue: "#8ab3b5" 16 | magenta: "#a89bb9" 17 | cyan: "#7bbda4" 18 | white: "#d0c8c6" 19 | bright: 20 | black: "#7e705a" 21 | red: "#cb6077" 22 | green: "#beb55b" 23 | yellow: "#f4bc87" 24 | blue: "#8ab3b5" 25 | magenta: "#a89bb9" 26 | cyan: "#7bbda4" 27 | white: "#f5eeeb" 28 | -------------------------------------------------------------------------------- /config/termusic/themes/Molokai.yml: -------------------------------------------------------------------------------- 1 | # Colors (Molokai Dark) 2 | colors: 3 | # Default colors 4 | primary: 5 | background: '#1B1D1E' 6 | foreground: '#F8F8F2' 7 | # Normal colors 8 | normal: 9 | black: '#333333' 10 | red: '#C4265E' 11 | green: '#86B42B' 12 | yellow: '#B3B42B' 13 | blue: '#6A7EC8' 14 | magenta: '#8C6BC8' 15 | cyan: '#56ADBC' 16 | white: '#E3E3DD' 17 | # Bright colors 18 | bright: 19 | black: '#666666' 20 | red: '#F92672' 21 | green: '#A6E22E' 22 | yellow: '#E2E22E' 23 | blue: '#819AFF' 24 | magenta: '#AE81FF' 25 | cyan: '#66D9EF' 26 | white: '#F8F8F2' 27 | -------------------------------------------------------------------------------- /config/termusic/themes/Monokai.dark.yml: -------------------------------------------------------------------------------- 1 | colors: 2 | name: Monokai (dark) 3 | author: Chris Kempson 4 | primary: 5 | background: "#272822" 6 | foreground: "#f8f8f2" 7 | cursor: 8 | text: "#272822" 9 | cursor: "#f8f8f2" 10 | normal: 11 | black: "#272822" 12 | red: "#f92672" 13 | green: "#a6e22e" 14 | yellow: "#f4bf75" 15 | blue: "#66d9ef" 16 | magenta: "#ae81ff" 17 | cyan: "#a1efe4" 18 | white: "#f8f8f2" 19 | bright: 20 | black: "#75715e" 21 | red: "#f92672" 22 | green: "#a6e22e" 23 | yellow: "#f4bf75" 24 | blue: "#66d9ef" 25 | magenta: "#ae81ff" 26 | cyan: "#a1efe4" 27 | white: "#f9f8f5" 28 | -------------------------------------------------------------------------------- /config/termusic/themes/Monokai.light.yml: -------------------------------------------------------------------------------- 1 | colors: 2 | name: Monokai (light) 3 | author: Chris Kempson 4 | primary: 5 | background: "#f9f8f5" 6 | foreground: "#49483e" 7 | cursor: 8 | text: "#f9f8f5" 9 | cursor: "#49483e" 10 | normal: 11 | black: "#272822" 12 | red: "#f92672" 13 | green: "#a6e22e" 14 | yellow: "#f4bf75" 15 | blue: "#66d9ef" 16 | magenta: "#ae81ff" 17 | cyan: "#a1efe4" 18 | white: "#f8f8f2" 19 | bright: 20 | black: "#75715e" 21 | red: "#f92672" 22 | green: "#a6e22e" 23 | yellow: "#f4bf75" 24 | blue: "#66d9ef" 25 | magenta: "#ae81ff" 26 | cyan: "#a1efe4" 27 | white: "#f9f8f5" 28 | -------------------------------------------------------------------------------- /config/termusic/themes/Monotheme.yml: -------------------------------------------------------------------------------- 1 | colors: 2 | name: Mono Theme 3 | author: "" 4 | primary: 5 | background: "#000000" 6 | foreground: "#ffffff" 7 | cursor: 8 | text: "#000000" 9 | cursor: "#ffffff" 10 | normal: 11 | black: "#000000" 12 | red: "#6b6b6b" 13 | green: "#c4c4c4" 14 | yellow: "#b3b3b3" 15 | blue: "#999999" 16 | magenta: "#717171" 17 | cyan: "#8a8a8a" 18 | white: "#b5cabb" 19 | bright: 20 | black: "#202020" 21 | red: "#464646" 22 | green: "#f8f8f8" 23 | yellow: "#eeeeee" 24 | blue: "#7c7c7c" 25 | magenta: "#adadad" 26 | cyan: "#c0c0c0" 27 | white: "#99ac9e" 28 | -------------------------------------------------------------------------------- /config/termusic/themes/Mostly-bright.yml: -------------------------------------------------------------------------------- 1 | colors: 2 | name: Mostly Bright 3 | author: m83 4 | primary: 5 | background: "#F3F3F3" 6 | foreground: "#707070" 7 | cursor: 8 | text: "#F3F3F3" 9 | cursor: "#707070" 10 | normal: 11 | black: "#D3D3D3" 12 | red: "#EF6B7B" 13 | green: "#A1D569" 14 | yellow: "#F59335" 15 | blue: "#4EC2E8" 16 | magenta: "#FEC7CD" 17 | cyan: "#95C1C0" 18 | white: "#707070" 19 | bright: 20 | black: "#B3B3B3" 21 | red: "#ED5466" 22 | green: "#AFDB80" 23 | yellow: "#F59335" 24 | blue: "#5DC7EA" 25 | magenta: "#D2A4B4" 26 | cyan: "#75A1A0" 27 | white: "#909090" 28 | -------------------------------------------------------------------------------- /config/termusic/themes/Muse.yml: -------------------------------------------------------------------------------- 1 | colors: 2 | name: Muse 3 | author: "" 4 | primary: 5 | background: "#000000" 6 | foreground: "#ffffff" 7 | cursor: 8 | text: "#000000" 9 | cursor: "#ffffff" 10 | normal: 11 | black: "#2e3436" 12 | red: "#a31604" 13 | green: "#447241" 14 | yellow: "#c1951a" 15 | blue: "#425387" 16 | magenta: "#965d98" 17 | cyan: "#06989a" 18 | white: "#d3d7cf" 19 | bright: 20 | black: "#555753" 21 | red: "#c60001" 22 | green: "#27a343" 23 | yellow: "#d5a30e" 24 | blue: "#4a5a8d" 25 | magenta: "#893c8c" 26 | cyan: "#12bccb" 27 | white: "#eeeeec" 28 | -------------------------------------------------------------------------------- /config/termusic/themes/Muzieca lowcontrast.yml: -------------------------------------------------------------------------------- 1 | colors: 2 | name: Low Contrast 3 | author: Muzieca 4 | primary: 5 | background: "#3c3b37" 6 | foreground: "#93a1a1" 7 | cursor: 8 | text: "#3c3b37" 9 | cursor: "#93a1a1" 10 | normal: 11 | black: "#5f5f5f" 12 | red: "#d96468" 13 | green: "#a2d964" 14 | yellow: "#d9c964" 15 | blue: "#64a2d9" 16 | magenta: "#9a64d9" 17 | cyan: "#64d9d5" 18 | white: "#989898" 19 | bright: 20 | black: "#828282" 21 | red: "#d98f93" 22 | green: "#b8d98f" 23 | yellow: "#d9cf8f" 24 | blue: "#8f99d9" 25 | magenta: "#b08fd9" 26 | cyan: "#8fd9d5" 27 | white: "#c5c5c5" 28 | -------------------------------------------------------------------------------- /config/termusic/themes/Muzieca mono.yml: -------------------------------------------------------------------------------- 1 | colors: 2 | name: Mono 3 | author: Muzieca 4 | primary: 5 | background: "#000000" 6 | foreground: "#ffffff" 7 | cursor: 8 | text: "#000000" 9 | cursor: "#ffffff" 10 | normal: 11 | black: "#000000" 12 | red: "#111111" 13 | green: "#222222" 14 | yellow: "#333333" 15 | blue: "#444444" 16 | magenta: "#555555" 17 | cyan: "#666666" 18 | white: "#777777" 19 | bright: 20 | black: "#090909" 21 | red: "#181818" 22 | green: "#272727" 23 | yellow: "#393939" 24 | blue: "#484848" 25 | magenta: "#595959" 26 | cyan: "#707070" 27 | white: "#818181" 28 | -------------------------------------------------------------------------------- /config/termusic/themes/Muzieca pastel white.yml: -------------------------------------------------------------------------------- 1 | colors: 2 | name: Pastel White 3 | author: Muzieca 4 | primary: 5 | background: "#000000" 6 | foreground: "#ffffff" 7 | cursor: 8 | text: "#000000" 9 | cursor: "#ffffff" 10 | normal: 11 | black: "#646e5b" 12 | red: "#db7464" 13 | green: "#a7e160" 14 | yellow: "#dbd560" 15 | blue: "#69b2d6" 16 | magenta: "#a073d6" 17 | cyan: "#69e1d3" 18 | white: "#9ea894" 19 | bright: 20 | black: "#88927e" 21 | red: "#dba08f" 22 | green: "#bde18b" 23 | yellow: "#dbda8b" 24 | blue: "#95a9d6" 25 | magenta: "#b59fd6" 26 | cyan: "#95e1d2" 27 | white: "#c9d0c2" 28 | -------------------------------------------------------------------------------- /config/termusic/themes/Nancy.yml: -------------------------------------------------------------------------------- 1 | colors: 2 | name: Nancy 3 | author: "" 4 | primary: 5 | background: "#010101" 6 | foreground: "#ffffff" 7 | cursor: 8 | text: "#010101" 9 | cursor: "#ffffff" 10 | normal: 11 | black: "#1b1d1e" 12 | red: "#f92672" 13 | green: "#82b414" 14 | yellow: "#fd971f" 15 | blue: "#4e82aa" 16 | magenta: "#8c54fe" 17 | cyan: "#465457" 18 | white: "#ccccc6" 19 | bright: 20 | black: "#505354" 21 | red: "#ff5995" 22 | green: "#b6e354" 23 | yellow: "#feed6c" 24 | blue: "#0c73c2" 25 | magenta: "#9e6ffe" 26 | cyan: "#899ca1" 27 | white: "#f8f8f2" 28 | -------------------------------------------------------------------------------- /config/termusic/themes/Navy-and-ivory.yml: -------------------------------------------------------------------------------- 1 | colors: 2 | name: Navy and Ivory 3 | author: hal 4 | primary: 5 | background: "#021b21" 6 | foreground: "#e8dfd6" 7 | cursor: 8 | text: "#021b21" 9 | cursor: "#e8dfd6" 10 | normal: 11 | black: "#032c36" 12 | red: "#c2454e" 13 | green: "#7cbf9e" 14 | yellow: "#8a7a63" 15 | blue: "#2e3340" 16 | magenta: "#ff5879" 17 | cyan: "#44b5b1" 18 | white: "#f2f1b9" 19 | bright: 20 | black: "#065f73" 21 | red: "#ef5847" 22 | green: "#a2d9b1" 23 | yellow: "#beb090" 24 | blue: "#61778d" 25 | magenta: "#ff99a1" 26 | cyan: "#9ed9d8" 27 | white: "#f6f6c9" 28 | -------------------------------------------------------------------------------- /config/termusic/themes/Neon.yml: -------------------------------------------------------------------------------- 1 | colors: 2 | name: Neon 3 | author: "" 4 | primary: 5 | background: "#171717" 6 | foreground: "#f8f8f8" 7 | cursor: 8 | text: "#171717" 9 | cursor: "#f8f8f8" 10 | normal: 11 | black: "#171717" 12 | red: "#d81765" 13 | green: "#97d01a" 14 | yellow: "#ffa800" 15 | blue: "#16b1fb" 16 | magenta: "#ff2491" 17 | cyan: "#0fdcb6" 18 | white: "#ebebeb" 19 | bright: 20 | black: "#38252c" 21 | red: "#ff0000" 22 | green: "#76b639" 23 | yellow: "#e1a126" 24 | blue: "#289cd5" 25 | magenta: "#ff2491" 26 | cyan: "#0a9b81" 27 | white: "#f8f8f8" 28 | -------------------------------------------------------------------------------- /config/termusic/themes/New-Moon.yml: -------------------------------------------------------------------------------- 1 | # Colors (New Moon) 2 | colors: 3 | # Default colors 4 | primary: 5 | background: '#2D2D2D' 6 | foreground: '#B3B9C5' 7 | # Normal colors 8 | normal: 9 | black: '#2D2D2D' 10 | red: '#F2777A' 11 | green: '#92D192' 12 | yellow: '#FFD479' 13 | blue: '#6AB0F3' 14 | magenta: '#E1A6F2' 15 | cyan: '#76D4D6' 16 | white: '#B3B9C5' 17 | # Bright colors 18 | bright: 19 | black: '#777C85' 20 | red: '#F2777A' 21 | green: '#76D4D6' 22 | yellow: '#FFEEA6' 23 | blue: '#6AB0F3' 24 | magenta: '#E1A6F2' 25 | cyan: '#76D4D6' 26 | white: '#FFFFFF' 27 | -------------------------------------------------------------------------------- /config/termusic/themes/Nucolors.yml: -------------------------------------------------------------------------------- 1 | colors: 2 | name: Nucolors 3 | author: "" 4 | primary: 5 | background: "#000000" 6 | foreground: "#ffffff" 7 | cursor: 8 | text: "#000000" 9 | cursor: "#ffffff" 10 | normal: 11 | black: "#393939" 12 | red: "#ff9f95" 13 | green: "#e2ffc7" 14 | yellow: "#ffffb9" 15 | blue: "#a8ceea" 16 | magenta: "#e2b5cc" 17 | cyan: "#c2efff" 18 | white: "#dddddd" 19 | bright: 20 | black: "#474747" 21 | red: "#ff8d80" 22 | green: "#dbffb3" 23 | yellow: "#ffbe64" 24 | blue: "#7eb6ff" 25 | magenta: "#e296ff" 26 | cyan: "#9ce9ff" 27 | white: "#dddddd" 28 | -------------------------------------------------------------------------------- /config/termusic/themes/Nudge.yml: -------------------------------------------------------------------------------- 1 | colors: 2 | name: Nudge 3 | author: "" 4 | primary: 5 | background: "#000000" 6 | foreground: "#ffffff" 7 | cursor: 8 | text: "#000000" 9 | cursor: "#ffffff" 10 | normal: 11 | black: "#658280" 12 | red: "#822f5d" 13 | green: "#184a31" 14 | yellow: "#9d4500" 15 | blue: "#304465" 16 | magenta: "#330801" 17 | cyan: "#175552" 18 | white: "#110005" 19 | bright: 20 | black: "#8ca8a6" 21 | red: "#a24b76" 22 | green: "#28634d" 23 | yellow: "#9d5823" 24 | blue: "#415c77" 25 | magenta: "#532706" 26 | cyan: "#3a6868" 27 | white: "#330801" 28 | -------------------------------------------------------------------------------- /config/termusic/themes/NumixDarkest.yml: -------------------------------------------------------------------------------- 1 | colors: 2 | name: Numix Darkest 3 | author: "" 4 | primary: 5 | background: "#282828" 6 | foreground: "#a2a2a2" 7 | cursor: 8 | text: "#282828" 9 | cursor: "#a2a2a2" 10 | normal: 11 | black: "#555555" 12 | red: "#9c3528" 13 | green: "#61bc3b" 14 | yellow: "#f3b43a" 15 | blue: "#0d68a8" 16 | magenta: "#744560" 17 | cyan: "#288e9c" 18 | white: "#a2a2a2" 19 | bright: 20 | black: "#888888" 21 | red: "#d64937" 22 | green: "#86df5d" 23 | yellow: "#fdd75a" 24 | blue: "#0f75bd" 25 | magenta: "#9e5e83" 26 | cyan: "#37c3d6" 27 | white: "#f9f9f9" 28 | -------------------------------------------------------------------------------- /config/termusic/themes/OK100 - Matrix.yml: -------------------------------------------------------------------------------- 1 | colors: 2 | name: Matrix 3 | author: OK100 4 | primary: 5 | background: "#000000" 6 | foreground: "#00cc00" 7 | cursor: 8 | text: "#000000" 9 | cursor: "#00cc00" 10 | normal: 11 | black: "#000000" 12 | red: "#55ff55" 13 | green: "#00cc00" 14 | yellow: "#00cc00" 15 | blue: "#005500" 16 | magenta: "#55ff55" 17 | cyan: "#00cc00" 18 | white: "#00cc00" 19 | bright: 20 | black: "#000000" 21 | red: "#55ff55" 22 | green: "#55ff55" 23 | yellow: "#55ff55" 24 | blue: "#005500" 25 | magenta: "#55ff55" 26 | cyan: "#55ff55" 27 | white: "#00cc00" 28 | -------------------------------------------------------------------------------- /config/termusic/themes/Ocean.dark.yml: -------------------------------------------------------------------------------- 1 | colors: 2 | name: Ocean (dark) 3 | author: Chris Kempson 4 | primary: 5 | background: "#2b303b" 6 | foreground: "#c0c5ce" 7 | cursor: 8 | text: "#2b303b" 9 | cursor: "#c0c5ce" 10 | normal: 11 | black: "#2b303b" 12 | red: "#bf616a" 13 | green: "#a3be8c" 14 | yellow: "#ebcb8b" 15 | blue: "#8fa1b3" 16 | magenta: "#b48ead" 17 | cyan: "#96b5b4" 18 | white: "#c0c5ce" 19 | bright: 20 | black: "#65737e" 21 | red: "#bf616a" 22 | green: "#a3be8c" 23 | yellow: "#ebcb8b" 24 | blue: "#8fa1b3" 25 | magenta: "#b48ead" 26 | cyan: "#96b5b4" 27 | white: "#eff1f5" 28 | -------------------------------------------------------------------------------- /config/termusic/themes/Ocean.light.yml: -------------------------------------------------------------------------------- 1 | colors: 2 | name: Ocean (light) 3 | author: Chris Kempson 4 | primary: 5 | background: "#eff1f5" 6 | foreground: "#4f5b66" 7 | cursor: 8 | text: "#eff1f5" 9 | cursor: "#4f5b66" 10 | normal: 11 | black: "#2b303b" 12 | red: "#bf616a" 13 | green: "#a3be8c" 14 | yellow: "#ebcb8b" 15 | blue: "#8fa1b3" 16 | magenta: "#b48ead" 17 | cyan: "#96b5b4" 18 | white: "#c0c5ce" 19 | bright: 20 | black: "#65737e" 21 | red: "#bf616a" 22 | green: "#a3be8c" 23 | yellow: "#ebcb8b" 24 | blue: "#8fa1b3" 25 | magenta: "#b48ead" 26 | cyan: "#96b5b4" 27 | white: "#eff1f5" 28 | -------------------------------------------------------------------------------- /config/termusic/themes/Orangish.yml: -------------------------------------------------------------------------------- 1 | colors: 2 | name: Orangish 3 | author: "" 4 | primary: 5 | background: "#000000" 6 | foreground: "#ffffff" 7 | cursor: 8 | text: "#000000" 9 | cursor: "#ffffff" 10 | normal: 11 | black: "#251f1f" 12 | red: "#eb4509" 13 | green: "#94e76b" 14 | yellow: "#ffac18" 15 | blue: "#46aede" 16 | magenta: "#e32c57" 17 | cyan: "#d6dbac" 18 | white: "#efefef" 19 | bright: 20 | black: "#5e5e5e" 21 | red: "#eb4509" 22 | green: "#95e76b" 23 | yellow: "#ffac18" 24 | blue: "#46aede" 25 | magenta: "#e32c57" 26 | cyan: "#d6dbac" 27 | white: "#efefef" 28 | -------------------------------------------------------------------------------- /config/termusic/themes/Paraiso.dark.yml: -------------------------------------------------------------------------------- 1 | colors: 2 | name: Paraiso (dark) 3 | author: Chris Kempson 4 | primary: 5 | background: "#2f1e2e" 6 | foreground: "#a39e9b" 7 | cursor: 8 | text: "#2f1e2e" 9 | cursor: "#a39e9b" 10 | normal: 11 | black: "#2f1e2e" 12 | red: "#ef6155" 13 | green: "#48b685" 14 | yellow: "#fec418" 15 | blue: "#06b6ef" 16 | magenta: "#815ba4" 17 | cyan: "#5bc4bf" 18 | white: "#a39e9b" 19 | bright: 20 | black: "#776e71" 21 | red: "#ef6155" 22 | green: "#48b685" 23 | yellow: "#fec418" 24 | blue: "#06b6ef" 25 | magenta: "#815ba4" 26 | cyan: "#5bc4bf" 27 | white: "#e7e9db" 28 | -------------------------------------------------------------------------------- /config/termusic/themes/Paraiso.light.yml: -------------------------------------------------------------------------------- 1 | colors: 2 | name: Paraiso (light) 3 | author: Chris Kempson 4 | primary: 5 | background: "#e7e9db" 6 | foreground: "#4f424c" 7 | cursor: 8 | text: "#e7e9db" 9 | cursor: "#4f424c" 10 | normal: 11 | black: "#2f1e2e" 12 | red: "#ef6155" 13 | green: "#48b685" 14 | yellow: "#fec418" 15 | blue: "#06b6ef" 16 | magenta: "#815ba4" 17 | cyan: "#5bc4bf" 18 | white: "#a39e9b" 19 | bright: 20 | black: "#776e71" 21 | red: "#ef6155" 22 | green: "#48b685" 23 | yellow: "#fec418" 24 | blue: "#06b6ef" 25 | magenta: "#815ba4" 26 | cyan: "#5bc4bf" 27 | white: "#e7e9db" 28 | -------------------------------------------------------------------------------- /config/termusic/themes/Parker_brothers.yml: -------------------------------------------------------------------------------- 1 | colors: 2 | name: Parker Brothers 3 | author: "" 4 | primary: 5 | background: "#000000" 6 | foreground: "#ffffff" 7 | cursor: 8 | text: "#000000" 9 | cursor: "#ffffff" 10 | normal: 11 | black: "#322a2c" 12 | red: "#79220e" 13 | green: "#344b1b" 14 | yellow: "#b45b00" 15 | blue: "#434045" 16 | magenta: "#5c1e25" 17 | cyan: "#394745" 18 | white: "#ae8842" 19 | bright: 20 | black: "#46423b" 21 | red: "#aa261f" 22 | green: "#76550f" 23 | yellow: "#b57f02" 24 | blue: "#908862" 25 | magenta: "#624a35" 26 | cyan: "#393e38" 27 | white: "#a59058" 28 | -------------------------------------------------------------------------------- /config/termusic/themes/Pencil-Dark.yml: -------------------------------------------------------------------------------- 1 | # Colors (Pencil Dark) 2 | colors: 3 | # Default Colors 4 | primary: 5 | background: '#212121' 6 | foreground: '#f1f1f1' 7 | # Normal colors 8 | normal: 9 | black: '#212121' 10 | red: '#c30771' 11 | green: '#10a778' 12 | yellow: '#a89c14' 13 | blue: '#008ec4' 14 | magenta: '#523c79' 15 | cyan: '#20a5ba' 16 | white: '#e0e0e0' 17 | # Bright colors 18 | bright: 19 | black: '#212121' 20 | red: '#fb007a' 21 | green: '#5fd7af' 22 | yellow: '#f3e430' 23 | blue: '#20bbfc' 24 | magenta: '#6855de' 25 | cyan: '#4fb8cc' 26 | white: '#f1f1f1' 27 | -------------------------------------------------------------------------------- /config/termusic/themes/Pencil-Light.yml: -------------------------------------------------------------------------------- 1 | # Colors (Pencil Light) 2 | colors: 3 | # Default Colors 4 | primary: 5 | background: '#f1f1f1' 6 | foreground: '#424242' 7 | # Normal colors 8 | normal: 9 | black: '#212121' 10 | red: '#c30771' 11 | green: '#10a778' 12 | yellow: '#a89c14' 13 | blue: '#008ec4' 14 | magenta: '#523c79' 15 | cyan: '#20a5ba' 16 | white: '#e0e0e0' 17 | # Bright colors 18 | bright: 19 | black: '#212121' 20 | red: '#fb007a' 21 | green: '#5fd7af' 22 | yellow: '#f3e430' 23 | blue: '#20bbfc' 24 | magenta: '#6855de' 25 | cyan: '#4fb8cc' 26 | white: '#f1f1f1' 27 | -------------------------------------------------------------------------------- /config/termusic/themes/Phrak1.yml: -------------------------------------------------------------------------------- 1 | colors: 2 | name: Phrak1 3 | author: "" 4 | primary: 5 | background: "#000000" 6 | foreground: "#a8a8a8" 7 | cursor: 8 | text: "#000000" 9 | cursor: "#a8a8a8" 10 | normal: 11 | black: "#000000" 12 | red: "#a80000" 13 | green: "#00a800" 14 | yellow: "#a85400" 15 | blue: "#0000a8" 16 | magenta: "#a800a8" 17 | cyan: "#00a8a8" 18 | white: "#a8a8a8" 19 | bright: 20 | black: "#545054" 21 | red: "#f85450" 22 | green: "#50fc50" 23 | yellow: "#f8fc50" 24 | blue: "#5054f8" 25 | magenta: "#f854f8" 26 | cyan: "#50fcf8" 27 | white: "#f8fcf8" 28 | -------------------------------------------------------------------------------- /config/termusic/themes/Pop!-OS.yml: -------------------------------------------------------------------------------- 1 | colors: 2 | # Default colors 3 | primary: 4 | background: '#333333' 5 | foreground: '#F2F2F2' 6 | 7 | # Normal colors 8 | normal: 9 | black: '#333333' 10 | red: '#CC0000' 11 | green: '#4E9A06' 12 | yellow: '#C4A000' 13 | blue: '#3465A4' 14 | magenta: '#75507B' 15 | cyan: '#06989A' 16 | white: '#D3D7CF' 17 | 18 | # Bright colors 19 | bright: 20 | black: '#88807C' 21 | red: '#F15D22' 22 | green: '#73C48F' 23 | yellow: '#FFCE51' 24 | blue: '#48B9C7' 25 | magenta: '#AD7FA8' 26 | cyan: '#34E2E2' 27 | white: '#EEEEEC' 28 | -------------------------------------------------------------------------------- /config/termusic/themes/Pretty-and-pastel.yml: -------------------------------------------------------------------------------- 1 | colors: 2 | name: Pretty and Pastel 3 | author: IWAFU 4 | primary: 5 | background: "#151515" 6 | foreground: "#888888" 7 | cursor: 8 | text: "#151515" 9 | cursor: "#888888" 10 | normal: 11 | black: "#292929" 12 | red: "#CF6A4C" 13 | green: "#19CB00" 14 | yellow: "#FAD07A" 15 | blue: "#8197BF" 16 | magenta: "#8787AF" 17 | cyan: "#668799" 18 | white: "#888888" 19 | bright: 20 | black: "#525252" 21 | red: "#FF9D80" 22 | green: "#23FD00" 23 | yellow: "#FFEFBF" 24 | blue: "#ACCAFF" 25 | magenta: "#C4C4FF" 26 | cyan: "#80BFAF" 27 | white: "#E8E8D3" 28 | -------------------------------------------------------------------------------- /config/termusic/themes/Pulp.yml: -------------------------------------------------------------------------------- 1 | colors: 2 | name: Pulp 3 | author: "" 4 | primary: 5 | background: "#000000" 6 | foreground: "#ffffff" 7 | cursor: 8 | text: "#000000" 9 | cursor: "#ffffff" 10 | normal: 11 | black: "#86817e" 12 | red: "#d75756" 13 | green: "#688c7d" 14 | yellow: "#ffb365" 15 | blue: "#68778c" 16 | magenta: "#fdb3b2" 17 | cyan: "#86abd9" 18 | white: "#f7f8f2" 19 | bright: 20 | black: "#86817e" 21 | red: "#a63a3a" 22 | green: "#688c7d" 23 | yellow: "#ffb365" 24 | blue: "#68778c" 25 | magenta: "#8c686a" 26 | cyan: "#86abd9" 27 | white: "#f7f8f2" 28 | -------------------------------------------------------------------------------- /config/termusic/themes/Railscasts.dark.yml: -------------------------------------------------------------------------------- 1 | colors: 2 | name: Railscasts (dark) 3 | author: Chris Kempson 4 | primary: 5 | background: "#2b2b2b" 6 | foreground: "#e6e1dc" 7 | cursor: 8 | text: "#2b2b2b" 9 | cursor: "#e6e1dc" 10 | normal: 11 | black: "#2b2b2b" 12 | red: "#da4939" 13 | green: "#a5c261" 14 | yellow: "#ffc66d" 15 | blue: "#6d9cbe" 16 | magenta: "#b6b3eb" 17 | cyan: "#519f50" 18 | white: "#e6e1dc" 19 | bright: 20 | black: "#5a647e" 21 | red: "#da4939" 22 | green: "#a5c261" 23 | yellow: "#ffc66d" 24 | blue: "#6d9cbe" 25 | magenta: "#b6b3eb" 26 | cyan: "#519f50" 27 | white: "#f9f7f3" 28 | -------------------------------------------------------------------------------- /config/termusic/themes/Railscasts.light.yml: -------------------------------------------------------------------------------- 1 | colors: 2 | name: Railscasts (light) 3 | author: Chris Kempson 4 | primary: 5 | background: "#f9f7f3" 6 | foreground: "#3a4055" 7 | cursor: 8 | text: "#f9f7f3" 9 | cursor: "#3a4055" 10 | normal: 11 | black: "#2b2b2b" 12 | red: "#da4939" 13 | green: "#a5c261" 14 | yellow: "#ffc66d" 15 | blue: "#6d9cbe" 16 | magenta: "#b6b3eb" 17 | cyan: "#519f50" 18 | white: "#e6e1dc" 19 | bright: 20 | black: "#5a647e" 21 | red: "#da4939" 22 | green: "#a5c261" 23 | yellow: "#ffc66d" 24 | blue: "#6d9cbe" 25 | magenta: "#b6b3eb" 26 | cyan: "#519f50" 27 | white: "#f9f7f3" 28 | -------------------------------------------------------------------------------- /config/termusic/themes/Rasi.yml: -------------------------------------------------------------------------------- 1 | colors: 2 | name: Rasi 3 | author: "" 4 | primary: 5 | background: "#000000" 6 | foreground: "#ffffff" 7 | cursor: 8 | text: "#000000" 9 | cursor: "#ffffff" 10 | normal: 11 | black: "#1b1d1e" 12 | red: "#f92672" 13 | green: "#82b414" 14 | yellow: "#fd971f" 15 | blue: "#4e82aa" 16 | magenta: "#8c54fe" 17 | cyan: "#465457" 18 | white: "#ccccc6" 19 | bright: 20 | black: "#505354" 21 | red: "#ff5995" 22 | green: "#b6e354" 23 | yellow: "#feed6c" 24 | blue: "#0c73c2" 25 | magenta: "#9e6ffe" 26 | cyan: "#899ca1" 27 | white: "#f8f8f2" 28 | -------------------------------------------------------------------------------- /config/termusic/themes/Rezza.yml: -------------------------------------------------------------------------------- 1 | colors: 2 | name: Rezza 3 | author: "" 4 | primary: 5 | background: "#222222" 6 | foreground: "#dddddd" 7 | cursor: 8 | text: "#222222" 9 | cursor: "#dddddd" 10 | normal: 11 | black: "#191919" 12 | red: "#803232" 13 | green: "#5b762f" 14 | yellow: "#aa9943" 15 | blue: "#324c80" 16 | magenta: "#706c9a" 17 | cyan: "#92b19e" 18 | white: "#ffffff" 19 | bright: 20 | black: "#252525" 21 | red: "#982b2b" 22 | green: "#89b83f" 23 | yellow: "#efef60" 24 | blue: "#2b4f98" 25 | magenta: "#826ab1" 26 | cyan: "#a1cdcd" 27 | white: "#dddddd" 28 | -------------------------------------------------------------------------------- /config/termusic/themes/Rooster - SOS.yml: -------------------------------------------------------------------------------- 1 | colors: 2 | name: SOS 3 | author: Rooster 4 | primary: 5 | background: "#373b43" 6 | foreground: "#78796f" 7 | cursor: 8 | text: "#373b43" 9 | cursor: "#78796f" 10 | normal: 11 | black: "#373b43" 12 | red: "#fdcd39" 13 | green: "#fbfd59" 14 | yellow: "#deac40" 15 | blue: "#afb171" 16 | magenta: "#b387e7" 17 | cyan: "#63e860" 18 | white: "#efdecb" 19 | bright: 20 | black: "#373b43" 21 | red: "#fdcd39" 22 | green: "#fbfd59" 23 | yellow: "#deac40" 24 | blue: "#afb171" 25 | magenta: "#b387e7" 26 | cyan: "#63e860" 27 | white: "#efdecb" 28 | -------------------------------------------------------------------------------- /config/termusic/themes/Rydgel.yml: -------------------------------------------------------------------------------- 1 | colors: 2 | name: Rydgel 3 | author: "" 4 | primary: 5 | background: "#000000" 6 | foreground: "#ffffff" 7 | cursor: 8 | text: "#000000" 9 | cursor: "#ffffff" 10 | normal: 11 | black: "#303430" 12 | red: "#bf7979" 13 | green: "#97b26b" 14 | yellow: "#cdcdc1" 15 | blue: "#86a2be" 16 | magenta: "#d9b798" 17 | cyan: "#a1b5cd" 18 | white: "#ffffff" 19 | bright: 20 | black: "#cdb5cd" 21 | red: "#f4a45f" 22 | green: "#c5f779" 23 | yellow: "#ffffed" 24 | blue: "#98afd9" 25 | magenta: "#d7d998" 26 | cyan: "#a1b5cd" 27 | white: "#dedede" 28 | -------------------------------------------------------------------------------- /config/termusic/themes/S3r0-modified.yml: -------------------------------------------------------------------------------- 1 | colors: 2 | name: s3r0 modified 3 | author: earsplit 4 | primary: 5 | background: "#1F1F1F" 6 | foreground: "#C0B18B" 7 | cursor: 8 | text: "#1F1F1F" 9 | cursor: "#C0B18B" 10 | normal: 11 | black: "#4A3637" 12 | red: "#D17B49" 13 | green: "#7B8748" 14 | yellow: "#AF865A" 15 | blue: "#535C5C" 16 | magenta: "#775759" 17 | cyan: "#6D715E" 18 | white: "#C0B18B" 19 | bright: 20 | black: "#4A3637" 21 | red: "#D17B49" 22 | green: "#7B8748" 23 | yellow: "#AF865A" 24 | blue: "#535C5C" 25 | magenta: "#775759" 26 | cyan: "#6D715E" 27 | white: "#C0B18B" 28 | -------------------------------------------------------------------------------- /config/termusic/themes/Seabird.yml: -------------------------------------------------------------------------------- 1 | # Colors (Seagull) 2 | colors: 3 | # Default colors 4 | primary: 5 | background: '#ffffff' 6 | foreground: '#61707a' 7 | 8 | # Normal colors 9 | normal: 10 | black: '#0b141a' 11 | red: '#ff4053' 12 | green: '#11ab00' 13 | yellow: '#bf8c00' 14 | blue: '#0099ff' 15 | magenta: '#9854ff' 16 | cyan: '#00a5ab' 17 | white: '#ffffff' 18 | 19 | # Bright colors 20 | bright: 21 | black: '#0b141a' 22 | red: '#ff4053' 23 | green: '#11ab00' 24 | yellow: '#bf8c00' 25 | blue: '#0099ff' 26 | magenta: '#9854ff' 27 | cyan: '#00a5ab' 28 | white: '#ffffff' 29 | -------------------------------------------------------------------------------- /config/termusic/themes/Seoul256.yml: -------------------------------------------------------------------------------- 1 | # Colors (Seoul256) 2 | colors: 3 | # Default colors 4 | primary: 5 | background: '#3a3a3a' 6 | foreground: '#d0d0d0' 7 | 8 | # Normal colors 9 | normal: 10 | black: '#4e4e4e' 11 | red: '#d68787' 12 | green: '#5f865f' 13 | yellow: '#d8af5f' 14 | blue: '#85add4' 15 | magenta: '#d7afaf' 16 | cyan: '#87afaf' 17 | white: '#d0d0d0' 18 | 19 | # Bright colors 20 | bright: 21 | black: '#626262' 22 | red: '#d75f87' 23 | green: '#87af87' 24 | yellow: '#ffd787' 25 | blue: '#add4fb' 26 | magenta: '#ffafaf' 27 | cyan: '#87d7d7' 28 | white: '#e4e4e4' 29 | -------------------------------------------------------------------------------- /config/termusic/themes/Sexcolors.yml: -------------------------------------------------------------------------------- 1 | colors: 2 | name: Sex Colors 3 | author: "" 4 | primary: 5 | background: "#000000" 6 | foreground: "#ffffff" 7 | cursor: 8 | text: "#000000" 9 | cursor: "#ffffff" 10 | normal: 11 | black: "#252525" 12 | red: "#ff9f95" 13 | green: "#a6e22e" 14 | yellow: "#fd971f" 15 | blue: "#435e87" 16 | magenta: "#789ec6" 17 | cyan: "#5e7175" 18 | white: "#dbdcdc" 19 | bright: 20 | black: "#454545" 21 | red: "#ff8d80" 22 | green: "#b6e354" 23 | yellow: "#fd971f" 24 | blue: "#587aa4" 25 | magenta: "#46a4ff" 26 | cyan: "#a3babf" 27 | white: "#fdfdfd" 28 | -------------------------------------------------------------------------------- /config/termusic/themes/Shapeshifter.dark.yml: -------------------------------------------------------------------------------- 1 | colors: 2 | name: Shapeshifter (dark) 3 | author: Chris Kempson 4 | primary: 5 | background: "#000000" 6 | foreground: "#ababab" 7 | cursor: 8 | text: "#000000" 9 | cursor: "#ababab" 10 | normal: 11 | black: "#000000" 12 | red: "#e92f2f" 13 | green: "#0ed839" 14 | yellow: "#dddd13" 15 | blue: "#3b48e3" 16 | magenta: "#f996e2" 17 | cyan: "#23edda" 18 | white: "#ababab" 19 | bright: 20 | black: "#343434" 21 | red: "#e92f2f" 22 | green: "#0ed839" 23 | yellow: "#dddd13" 24 | blue: "#3b48e3" 25 | magenta: "#f996e2" 26 | cyan: "#23edda" 27 | white: "#f9f9f9" 28 | -------------------------------------------------------------------------------- /config/termusic/themes/Shapeshifter.light.yml: -------------------------------------------------------------------------------- 1 | colors: 2 | name: Shapeshifter (light) 3 | author: Chris Kempson 4 | primary: 5 | background: "#f9f9f9" 6 | foreground: "#102015" 7 | cursor: 8 | text: "#f9f9f9" 9 | cursor: "#102015" 10 | normal: 11 | black: "#000000" 12 | red: "#e92f2f" 13 | green: "#0ed839" 14 | yellow: "#dddd13" 15 | blue: "#3b48e3" 16 | magenta: "#f996e2" 17 | cyan: "#23edda" 18 | white: "#ababab" 19 | bright: 20 | black: "#343434" 21 | red: "#e92f2f" 22 | green: "#0ed839" 23 | yellow: "#dddd13" 24 | blue: "#3b48e3" 25 | magenta: "#f996e2" 26 | cyan: "#23edda" 27 | white: "#f9f9f9" 28 | -------------------------------------------------------------------------------- /config/termusic/themes/Shic.yml: -------------------------------------------------------------------------------- 1 | colors: 2 | name: Shic 3 | author: "" 4 | primary: 5 | background: "#000000" 6 | foreground: "#ffffff" 7 | cursor: 8 | text: "#000000" 9 | cursor: "#ffffff" 10 | normal: 11 | black: "#494949" 12 | red: "#b9716e" 13 | green: "#588f7a" 14 | yellow: "#aaa857" 15 | blue: "#a0c3c0" 16 | magenta: "#735e74" 17 | cyan: "#695935" 18 | white: "#b1b1b1" 19 | bright: 20 | black: "#484848" 21 | red: "#8f5a58" 22 | green: "#326f58" 23 | yellow: "#c7c575" 24 | blue: "#507f7c" 25 | magenta: "#a387a6" 26 | cyan: "#927c4b" 27 | white: "#c7c7c7" 28 | -------------------------------------------------------------------------------- /config/termusic/themes/Simple_rainbow.yml: -------------------------------------------------------------------------------- 1 | colors: 2 | name: Simple Rainbow 3 | author: "" 4 | primary: 5 | background: "#575757" 6 | foreground: "#dcdccc" 7 | cursor: 8 | text: "#575757" 9 | cursor: "#dcdccc" 10 | normal: 11 | black: "#666666" 12 | red: "#ff8278" 13 | green: "#bde077" 14 | yellow: "#eadc84" 15 | blue: "#77bee0" 16 | magenta: "#dd91f3" 17 | cyan: "#ffc178" 18 | white: "#dddddd" 19 | bright: 20 | black: "#888888" 21 | red: "#ff8278" 22 | green: "#bde077" 23 | yellow: "#eadc84" 24 | blue: "#77bee0" 25 | magenta: "#dd91f3" 26 | cyan: "#ffc178" 27 | white: "#cccccc" 28 | -------------------------------------------------------------------------------- /config/termusic/themes/Snazzy.yml: -------------------------------------------------------------------------------- 1 | # Colors (Snazzy) 2 | colors: 3 | # Default colors 4 | primary: 5 | background: '#282a36' 6 | foreground: '#eff0eb' 7 | 8 | # Normal colors 9 | normal: 10 | black: '#282a36' 11 | red: '#ff5c57' 12 | green: '#5af78e' 13 | yellow: '#f3f99d' 14 | blue: '#57c7ff' 15 | magenta: '#ff6ac1' 16 | cyan: '#9aedfe' 17 | white: '#f1f1f0' 18 | 19 | # Bright colors 20 | bright: 21 | black: '#686868' 22 | red: '#ff5c57' 23 | green: '#5af78e' 24 | yellow: '#f3f99d' 25 | blue: '#57c7ff' 26 | magenta: '#ff6ac1' 27 | cyan: '#9aedfe' 28 | white: '#f1f1f0' 29 | -------------------------------------------------------------------------------- /config/termusic/themes/Splurge.yml: -------------------------------------------------------------------------------- 1 | colors: 2 | name: Splurge 3 | author: "" 4 | primary: 5 | background: "#000000" 6 | foreground: "#ffffff" 7 | cursor: 8 | text: "#000000" 9 | cursor: "#ffffff" 10 | normal: 11 | black: "#4a4b4a" 12 | red: "#d7699a" 13 | green: "#80d468" 14 | yellow: "#d7a169" 15 | blue: "#6985d7" 16 | magenta: "#c86ad4" 17 | cyan: "#6fccd1" 18 | white: "#dbdcdc" 19 | bright: 20 | black: "#696969" 21 | red: "#f5a2b5" 22 | green: "#a3f2a0" 23 | yellow: "#f5cda2" 24 | blue: "#a2c1f5" 25 | magenta: "#d2a2f5" 26 | cyan: "#a0e9f2" 27 | white: "#fdfdfd" 28 | -------------------------------------------------------------------------------- /config/termusic/themes/Substrata.yml: -------------------------------------------------------------------------------- 1 | # Colors (substrata) 2 | colors: 3 | primary: 4 | background: '#191c25' 5 | foreground: '#b5b4c9' 6 | normal: 7 | black: '#2e313d' 8 | red: '#cf8164' 9 | green: '#76a065' 10 | yellow: '#ab924c' 11 | blue: '#8296b0' 12 | magenta: '#a18daf' 13 | cyan: '#659ea2' 14 | white: '#b5b4c9' 15 | bright: 16 | black: '#5b5f71' 17 | red: '#fe9f7c' 18 | green: '#92c47e' 19 | yellow: '#d2b45f' 20 | blue: '#a0b9d8' 21 | magenta: '#c6aed7' 22 | cyan: '#7dc2c7' 23 | white: '#f0ecfe' 24 | 25 | 26 | -------------------------------------------------------------------------------- /config/termusic/themes/Swayr.yml: -------------------------------------------------------------------------------- 1 | colors: 2 | name: Swayr 3 | author: "" 4 | primary: 5 | background: "#1c1709" 6 | foreground: "#c2b9a1" 7 | cursor: 8 | text: "#1c1709" 9 | cursor: "#c2b9a1" 10 | normal: 11 | black: "#1c1709" 12 | red: "#8e4317" 13 | green: "#787200" 14 | yellow: "#945c00" 15 | blue: "#315094" 16 | magenta: "#5c2e40" 17 | cyan: "#00617d" 18 | white: "#c2b9a1" 19 | bright: 20 | black: "#4f4939" 21 | red: "#f07935" 22 | green: "#d9d138" 23 | yellow: "#ffab26" 24 | blue: "#8aa9ed" 25 | magenta: "#ff8cb8" 26 | cyan: "#43bfe0" 27 | white: "#f2e8c9" 28 | -------------------------------------------------------------------------------- /config/termusic/themes/Sweetlove.yml: -------------------------------------------------------------------------------- 1 | colors: 2 | name: Sweet Love 3 | author: Boroshlawa 4 | primary: 5 | background: "#1F1F1F" 6 | foreground: "#C0B18B" 7 | cursor: 8 | text: "#1F1F1F" 9 | cursor: "#C0B18B" 10 | normal: 11 | black: "#4A3637" 12 | red: "#D17B49" 13 | green: "#7B8748" 14 | yellow: "#AF865A" 15 | blue: "#535C5C" 16 | magenta: "#775759" 17 | cyan: "#6D715E" 18 | white: "#C0B18B" 19 | bright: 20 | black: "#402E2E" 21 | red: "#AC5D2F" 22 | green: "#647035" 23 | yellow: "#8F6840" 24 | blue: "#444B4B" 25 | magenta: "#614445" 26 | cyan: "#585C49" 27 | white: "#978965" 28 | -------------------------------------------------------------------------------- /config/termusic/themes/Tangoesque.yml: -------------------------------------------------------------------------------- 1 | colors: 2 | name: Tangoesque 3 | author: "" 4 | primary: 5 | background: "#000000" 6 | foreground: "#aaaaaa" 7 | cursor: 8 | text: "#000000" 9 | cursor: "#aaaaaa" 10 | normal: 11 | black: "#202020" 12 | red: "#ff6565" 13 | green: "#93d44f" 14 | yellow: "#eab93d" 15 | blue: "#204a87" 16 | magenta: "#ce5c00" 17 | cyan: "#89b6e2" 18 | white: "#cccccc" 19 | bright: 20 | black: "#606060" 21 | red: "#ff8d8d" 22 | green: "#c8e7a8" 23 | yellow: "#ffc123" 24 | blue: "#3465a4" 25 | magenta: "#f57900" 26 | cyan: "#46a4ff" 27 | white: "#ffffff" 28 | -------------------------------------------------------------------------------- /config/termusic/themes/Tartan.yml: -------------------------------------------------------------------------------- 1 | colors: 2 | name: Tartan 3 | author: "" 4 | primary: 5 | background: "#2b2b2b" 6 | foreground: "#dedede" 7 | cursor: 8 | text: "#2b2b2b" 9 | cursor: "#dedede" 10 | normal: 11 | black: "#2e3436" 12 | red: "#cc0000" 13 | green: "#4e9a06" 14 | yellow: "#c4a000" 15 | blue: "#3465a4" 16 | magenta: "#75507b" 17 | cyan: "#06989a" 18 | white: "#d3d7cf" 19 | bright: 20 | black: "#555753" 21 | red: "#ef2929" 22 | green: "#8ae234" 23 | yellow: "#fce94f" 24 | blue: "#729fcf" 25 | magenta: "#ad7fa8" 26 | cyan: "#34e2e2" 27 | white: "#eeeeec" 28 | -------------------------------------------------------------------------------- /config/termusic/themes/Tender.yml: -------------------------------------------------------------------------------- 1 | # Colors (Tender) 2 | colors: 3 | # Default colors 4 | primary: 5 | background: '#282828' 6 | foreground: '#eeeeee' 7 | 8 | # Normal colors 9 | normal: 10 | black: '#282828' 11 | red: '#f43753' 12 | green: '#c9d05c' 13 | yellow: '#ffc24b' 14 | blue: '#b3deef' 15 | magenta: '#d3b987' 16 | cyan: '#73cef4' 17 | white: '#eeeeee' 18 | 19 | # Bright colors 20 | bright: 21 | black: '#4c4c4c' 22 | red: '#f43753' 23 | green: '#c9d05c' 24 | yellow: '#ffc24b' 25 | blue: '#b3deef' 26 | magenta: '#d3b987' 27 | cyan: '#73cef4' 28 | white: '#feffff' 29 | -------------------------------------------------------------------------------- /config/termusic/themes/Terminal-app-Basic.yml: -------------------------------------------------------------------------------- 1 | # Colors (Terminal.app Basic) 2 | colors: 3 | primary: 4 | background: '#FFFFFF' 5 | foreground: '#000000' 6 | normal: 7 | black: '#000000' 8 | red: '#990000' 9 | green: '#00A600' 10 | yellow: '#999900' 11 | blue: '#0000B2' 12 | magenta: '#B200B2' 13 | cyan: '#00A6B2' 14 | white: '#BFBFBF' 15 | bright: 16 | black: '#666666' 17 | red: '#E50000' 18 | green: '#00D900' 19 | yellow: '#E5E500' 20 | blue: '#0000FF' 21 | magenta: '#E500E5' 22 | cyan: '#00E5E5' 23 | white: '#E5E5E5' 24 | -------------------------------------------------------------------------------- /config/termusic/themes/Theme2.yml: -------------------------------------------------------------------------------- 1 | colors: 2 | name: theme2 3 | author: "" 4 | primary: 5 | background: "#000000" 6 | foreground: "#ffffff" 7 | cursor: 8 | text: "#000000" 9 | cursor: "#ffffff" 10 | normal: 11 | black: "#191919" 12 | red: "#eb3d51" 13 | green: "#66b61a" 14 | yellow: "#d98e1d" 15 | blue: "#23ffa8" 16 | magenta: "#ff00da" 17 | cyan: "#68a783" 18 | white: "#eaeaea" 19 | bright: 20 | black: "#484848" 21 | red: "#be6262" 22 | green: "#4b8a10" 23 | yellow: "#e5d95e" 24 | blue: "#23aaff" 25 | magenta: "#ab005b" 26 | cyan: "#bbcd81" 27 | white: "#bbbbbb" 28 | -------------------------------------------------------------------------------- /config/termusic/themes/Thwump.yml: -------------------------------------------------------------------------------- 1 | colors: 2 | name: thwump 3 | author: "" 4 | primary: 5 | background: "#000000" 6 | foreground: "#ffffff" 7 | cursor: 8 | text: "#000000" 9 | cursor: "#ffffff" 10 | normal: 11 | black: "#202020" 12 | red: "#a07070" 13 | green: "#70a070" 14 | yellow: "#a0a070" 15 | blue: "#7070a0" 16 | magenta: "#a070a0" 17 | cyan: "#70a0a0" 18 | white: "#a0a0a0" 19 | bright: 20 | black: "#505050" 21 | red: "#d07070" 22 | green: "#70d070" 23 | yellow: "#d0d070" 24 | blue: "#7070d0" 25 | magenta: "#d070d0" 26 | cyan: "#70d0d0" 27 | white: "#f0f0f0" 28 | -------------------------------------------------------------------------------- /config/termusic/themes/Tlh.yml: -------------------------------------------------------------------------------- 1 | colors: 2 | name: tlh 3 | author: "" 4 | primary: 5 | background: "#101010" 6 | foreground: "#66ff66" 7 | cursor: 8 | text: "#101010" 9 | cursor: "#66ff66" 10 | normal: 11 | black: "#1c1c1c" 12 | red: "#d81860" 13 | green: "#60ff60" 14 | yellow: "#f9fd75" 15 | blue: "#4695c8" 16 | magenta: "#a78edb" 17 | cyan: "#43afce" 18 | white: "#f3ebe2" 19 | bright: 20 | black: "#4d4d4d" 21 | red: "#f00060" 22 | green: "#70ff70" 23 | yellow: "#f9fd80" 24 | blue: "#5a9dc8" 25 | magenta: "#b29fdb" 26 | cyan: "#69b8ce" 27 | white: "#eeeeee" 28 | -------------------------------------------------------------------------------- /config/termusic/themes/Tomorrow.dark.yml: -------------------------------------------------------------------------------- 1 | colors: 2 | name: Tomorrow (dark) 3 | author: Chris Kempson 4 | primary: 5 | background: "#1d1f21" 6 | foreground: "#c5c8c6" 7 | cursor: 8 | text: "#1d1f21" 9 | cursor: "#c5c8c6" 10 | normal: 11 | black: "#1d1f21" 12 | red: "#cc6666" 13 | green: "#b5bd68" 14 | yellow: "#f0c674" 15 | blue: "#81a2be" 16 | magenta: "#b294bb" 17 | cyan: "#8abeb7" 18 | white: "#c5c8c6" 19 | bright: 20 | black: "#969896" 21 | red: "#cc6666" 22 | green: "#b5bd68" 23 | yellow: "#f0c674" 24 | blue: "#81a2be" 25 | magenta: "#b294bb" 26 | cyan: "#8abeb7" 27 | white: "#ffffff" 28 | -------------------------------------------------------------------------------- /config/termusic/themes/Tomorrow.light.yml: -------------------------------------------------------------------------------- 1 | colors: 2 | name: Tomorrow (light) 3 | author: Chris Kempson 4 | primary: 5 | background: "#ffffff" 6 | foreground: "#373b41" 7 | cursor: 8 | text: "#ffffff" 9 | cursor: "#373b41" 10 | normal: 11 | black: "#1d1f21" 12 | red: "#cc6666" 13 | green: "#b5bd68" 14 | yellow: "#f0c674" 15 | blue: "#81a2be" 16 | magenta: "#b294bb" 17 | cyan: "#8abeb7" 18 | white: "#c5c8c6" 19 | bright: 20 | black: "#969896" 21 | red: "#cc6666" 22 | green: "#b5bd68" 23 | yellow: "#f0c674" 24 | blue: "#81a2be" 25 | magenta: "#b294bb" 26 | cyan: "#8abeb7" 27 | white: "#ffffff" 28 | -------------------------------------------------------------------------------- /config/termusic/themes/Trim-yer-beard.yml: -------------------------------------------------------------------------------- 1 | colors: 2 | name: Trim Yer Beard 3 | author: franksn 4 | primary: 5 | background: "#191716" 6 | foreground: "#DABA8B" 7 | cursor: 8 | text: "#191716" 9 | cursor: "#DABA8B" 10 | normal: 11 | black: "#0F0E0D" 12 | red: "#845336" 13 | green: "#57553C" 14 | yellow: "#A17E3E" 15 | blue: "#43454F" 16 | magenta: "#604848" 17 | cyan: "#5C6652" 18 | white: "#A18B62" 19 | bright: 20 | black: "#383332" 21 | red: "#8C4F4A" 22 | green: "#898471" 23 | yellow: "#C8B491" 24 | blue: "#65788F" 25 | magenta: "#755E4A" 26 | cyan: "#718062" 27 | white: "#BC9D66" 28 | -------------------------------------------------------------------------------- /config/termusic/themes/Twilight.dark.yml: -------------------------------------------------------------------------------- 1 | colors: 2 | name: Twilight (dark) 3 | author: Chris Kempson 4 | primary: 5 | background: "#1e1e1e" 6 | foreground: "#a7a7a7" 7 | cursor: 8 | text: "#1e1e1e" 9 | cursor: "#a7a7a7" 10 | normal: 11 | black: "#1e1e1e" 12 | red: "#cf6a4c" 13 | green: "#8f9d6a" 14 | yellow: "#f9ee98" 15 | blue: "#7587a6" 16 | magenta: "#9b859d" 17 | cyan: "#afc4db" 18 | white: "#a7a7a7" 19 | bright: 20 | black: "#5f5a60" 21 | red: "#cf6a4c" 22 | green: "#8f9d6a" 23 | yellow: "#f9ee98" 24 | blue: "#7587a6" 25 | magenta: "#9b859d" 26 | cyan: "#afc4db" 27 | white: "#ffffff" 28 | -------------------------------------------------------------------------------- /config/termusic/themes/Twilight.light.yml: -------------------------------------------------------------------------------- 1 | colors: 2 | name: Twilight (light) 3 | author: Chris Kempson 4 | primary: 5 | background: "#ffffff" 6 | foreground: "#464b50" 7 | cursor: 8 | text: "#ffffff" 9 | cursor: "#464b50" 10 | normal: 11 | black: "#1e1e1e" 12 | red: "#cf6a4c" 13 | green: "#8f9d6a" 14 | yellow: "#f9ee98" 15 | blue: "#7587a6" 16 | magenta: "#9b859d" 17 | cyan: "#afc4db" 18 | white: "#a7a7a7" 19 | bright: 20 | black: "#5f5a60" 21 | red: "#cf6a4c" 22 | green: "#8f9d6a" 23 | yellow: "#f9ee98" 24 | blue: "#7587a6" 25 | magenta: "#9b859d" 26 | cyan: "#afc4db" 27 | white: "#ffffff" 28 | -------------------------------------------------------------------------------- /config/termusic/themes/Ubuntu.yml: -------------------------------------------------------------------------------- 1 | # Colors (Ubuntu) 2 | colors: 3 | # Default colors 4 | primary: 5 | background: '#300a24' 6 | foreground: '#eeeeec' 7 | 8 | # Normal colors 9 | normal: 10 | black: '#2e3436' 11 | red: '#cc0000' 12 | green: '#4e9a06' 13 | yellow: '#c4a000' 14 | blue: '#3465a4' 15 | magenta: '#75507b' 16 | cyan: '#06989a' 17 | white: '#d3d7cf' 18 | 19 | # Bright colors 20 | bright: 21 | black: '#555753' 22 | red: '#ef2929' 23 | green: '#8ae234' 24 | yellow: '#fce94f' 25 | blue: '#729fcf' 26 | magenta: '#ad7fa8' 27 | cyan: '#34e2e2' 28 | white: '#eeeeec' 29 | -------------------------------------------------------------------------------- /config/termusic/themes/User 77 - Mashup colors.yml: -------------------------------------------------------------------------------- 1 | colors: 2 | name: Mashup Colors 3 | author: user 77 4 | primary: 5 | background: "#171717" 6 | foreground: "#b2a191" 7 | cursor: 8 | text: "#171717" 9 | cursor: "#b2a191" 10 | normal: 11 | black: "#202020" 12 | red: "#bf3f34" 13 | green: "#707d22" 14 | yellow: "#bf7a29" 15 | blue: "#627a92" 16 | magenta: "#75507b" 17 | cyan: "#757978" 18 | white: "#b2a191" 19 | bright: 20 | black: "#404040" 21 | red: "#ff6c5f" 22 | green: "#b8ca4b" 23 | yellow: "#c7a551" 24 | blue: "#95b9de" 25 | magenta: "#ad7fa8" 26 | cyan: "#9fa590" 27 | white: "#e8d0c3" 28 | -------------------------------------------------------------------------------- /config/termusic/themes/Vacuous2.yml: -------------------------------------------------------------------------------- 1 | colors: 2 | name: Vacuous 2 3 | author: hal 4 | primary: 5 | background: "#101010" 6 | foreground: "#d2c5bc" 7 | cursor: 8 | text: "#101010" 9 | cursor: "#d2c5bc" 10 | normal: 11 | black: "#202020" 12 | red: "#b91e2e" 13 | green: "#81957c" 14 | yellow: "#f9bb80" 15 | blue: "#356579" 16 | magenta: "#2d2031" 17 | cyan: "#0b3452" 18 | white: "#909090" 19 | bright: 20 | black: "#606060" 21 | red: "#d14548" 22 | green: "#a7b79a" 23 | yellow: "#fae3a0" 24 | blue: "#7491a1" 25 | magenta: "#87314e" 26 | cyan: "#0f829d" 27 | white: "#fff0f0" 28 | -------------------------------------------------------------------------------- /config/termusic/themes/Visiblue.yml: -------------------------------------------------------------------------------- 1 | colors: 2 | name: VisiBlue 3 | author: "" 4 | primary: 5 | background: "#000000" 6 | foreground: "#666699" 7 | cursor: 8 | text: "#000000" 9 | cursor: "#666699" 10 | normal: 11 | black: "#333366" 12 | red: "#6666cc" 13 | green: "#0099cc" 14 | yellow: "#3366cc" 15 | blue: "#006699" 16 | magenta: "#0066ff" 17 | cyan: "#669999" 18 | white: "#99cccc" 19 | bright: 20 | black: "#333399" 21 | red: "#9999ff" 22 | green: "#00ccff" 23 | yellow: "#6699ff" 24 | blue: "#0099cc" 25 | magenta: "#0099ff" 26 | cyan: "#66cccc" 27 | white: "#ccffff" 28 | -------------------------------------------------------------------------------- /config/termusic/themes/Visibone-alt-2.yml: -------------------------------------------------------------------------------- 1 | colors: 2 | name: Visibone Alt. 2 3 | author: Gutterslob 4 | primary: 5 | background: "#333333" 6 | foreground: "#CCCCCC" 7 | cursor: 8 | text: "#333333" 9 | cursor: "#CCCCCC" 10 | normal: 11 | black: "#666666" 12 | red: "#CC6699" 13 | green: "#99CC66" 14 | yellow: "#CC9966" 15 | blue: "#6699CC" 16 | magenta: "#9966CC" 17 | cyan: "#66CC99" 18 | white: "#CCCCCC" 19 | bright: 20 | black: "#999999" 21 | red: "#FF99CC" 22 | green: "#CCFF99" 23 | yellow: "#FFCC99" 24 | blue: "#99CCFF" 25 | magenta: "#CC99FF" 26 | cyan: "#99FFCC" 27 | white: "#FFFFFF" 28 | -------------------------------------------------------------------------------- /config/termusic/themes/Visibone.yml: -------------------------------------------------------------------------------- 1 | colors: 2 | name: VisiBone 3 | author: "" 4 | primary: 5 | background: "#000000" 6 | foreground: "#ffffff" 7 | cursor: 8 | text: "#000000" 9 | cursor: "#ffffff" 10 | normal: 11 | black: "#666666" 12 | red: "#cc6666" 13 | green: "#66cc99" 14 | yellow: "#cc9966" 15 | blue: "#6699cc" 16 | magenta: "#cc6699" 17 | cyan: "#66cccc" 18 | white: "#cccccc" 19 | bright: 20 | black: "#999999" 21 | red: "#ff9999" 22 | green: "#99ffcc" 23 | yellow: "#ffcc99" 24 | blue: "#99ccff" 25 | magenta: "#ff99cc" 26 | cyan: "#99ffff" 27 | white: "#ffffff" 28 | -------------------------------------------------------------------------------- /config/termusic/themes/Wombat.yml: -------------------------------------------------------------------------------- 1 | # Colors (Wombat) 2 | colors: 3 | # Default colors 4 | primary: 5 | background: '#1f1f1f' 6 | foreground: '#e5e1d8' 7 | 8 | # Normal colors 9 | normal: 10 | black: '#000000' 11 | red: '#f7786d' 12 | green: '#bde97c' 13 | yellow: '#efdfac' 14 | blue: '#6ebaf8' 15 | magenta: '#ef88ff' 16 | cyan: '#90fdf8' 17 | white: '#e5e1d8' 18 | 19 | # Bright colors 20 | bright: 21 | black: '#b4b4b4' 22 | red: '#f99f92' 23 | green: '#e3f7a1' 24 | yellow: '#f2e9bf' 25 | blue: '#b3d2ff' 26 | magenta: '#e5bdff' 27 | cyan: '#c2fefa' 28 | white: '#ffffff' 29 | -------------------------------------------------------------------------------- /config/termusic/themes/X-dotshare.yml: -------------------------------------------------------------------------------- 1 | colors: 2 | name: X::DotShare 3 | author: crshd 4 | primary: 5 | background: "#151515" 6 | foreground: "#D7D0C7" 7 | cursor: 8 | text: "#151515" 9 | cursor: "#D7D0C7" 10 | normal: 11 | black: "#101010" 12 | red: "#E84F4F" 13 | green: "#B8D68C" 14 | yellow: "#E1AA5D" 15 | blue: "#7DC1CF" 16 | magenta: "#9B64FB" 17 | cyan: "#6D878D" 18 | white: "#DDDDDD" 19 | bright: 20 | black: "#404040" 21 | red: "#D23D3D" 22 | green: "#A0CF5D" 23 | yellow: "#F39D21" 24 | blue: "#4E9FB1" 25 | magenta: "#8542FF" 26 | cyan: "#42717B" 27 | white: "#DDDDDD" 28 | -------------------------------------------------------------------------------- /config/termusic/themes/X-erosion.yml: -------------------------------------------------------------------------------- 1 | colors: 2 | name: X::Erosion 3 | author: earsplit 4 | primary: 5 | background: "#181512" 6 | foreground: "#BEA492" 7 | cursor: 8 | text: "#181512" 9 | cursor: "#BEA492" 10 | normal: 11 | black: "#332D29" 12 | red: "#8C644C" 13 | green: "#746C48" 14 | yellow: "#908A66" 15 | blue: "#646A6D" 16 | magenta: "#605655" 17 | cyan: "#4B5C5E" 18 | white: "#504339" 19 | bright: 20 | black: "#817267" 21 | red: "#9F7155" 22 | green: "#857B52" 23 | yellow: "#9C956E" 24 | blue: "#71777A" 25 | magenta: "#656565" 26 | cyan: "#556D70" 27 | white: "#9A875F" 28 | -------------------------------------------------------------------------------- /config/termusic/themes/Yousai.yml: -------------------------------------------------------------------------------- 1 | colors: 2 | name: Yousai 3 | author: Kori 4 | primary: 5 | background: "#F5E7DE" 6 | foreground: "#34302D" 7 | cursor: 8 | text: "#F5E7DE" 9 | cursor: "#34302D" 10 | normal: 11 | black: "#666661" 12 | red: "#992E2E" 13 | green: "#4C3226" 14 | yellow: "#A67C53" 15 | blue: "#4C7399" 16 | magenta: "#BF9986" 17 | cyan: "#D97742" 18 | white: "#34302D" 19 | bright: 20 | black: "#7F7F7A" 21 | red: "#B23636" 22 | green: "#664233" 23 | yellow: "#BF8F60" 24 | blue: "#5986B2" 25 | magenta: "#D9AE98" 26 | cyan: "#F2854A" 27 | white: "#4C4742" 28 | -------------------------------------------------------------------------------- /config/termusic/themes/Zenburn.yml: -------------------------------------------------------------------------------- 1 | colors: 2 | name: zenburn 3 | author: "" 4 | primary: 5 | background: "#000000" 6 | foreground: "#ffffff" 7 | cursor: 8 | text: "#000000" 9 | cursor: "#ffffff" 10 | normal: 11 | black: "#1e2320" 12 | red: "#705050" 13 | green: "#60b48a" 14 | yellow: "#dfaf8f" 15 | blue: "#506070" 16 | magenta: "#dc8cc3" 17 | cyan: "#8cd0d3" 18 | white: "#dcdccc" 19 | bright: 20 | black: "#709080" 21 | red: "#dca3a3" 22 | green: "#c3bf9f" 23 | yellow: "#f0dfaf" 24 | blue: "#94bff3" 25 | magenta: "#ec93d3" 26 | cyan: "#93e0e3" 27 | white: "#ffffff" 28 | -------------------------------------------------------------------------------- /config/termusic/themes/vscode.dark.yml: -------------------------------------------------------------------------------- 1 | colors: 2 | name: vscode (dark) 3 | author: senpai-10 4 | primary: 5 | background: "#1E1E1E" 6 | foreground: "#D4D4D4" 7 | cursor: 8 | text: "#1d1f21" 9 | cursor: "#cccccc" 10 | normal: 11 | black: "#000000" 12 | red: "#cd3131" 13 | green: "#0dbc79" 14 | yellow: "#e5e510" 15 | blue: "#2472c8" 16 | magenta: "#bc3fbc" 17 | cyan: "#11a8cd" 18 | white: "#e5e5e5" 19 | bright: 20 | black: "#666666" 21 | red: "#f14c4c" 22 | green: "#23d18b" 23 | yellow: "#f5f543" 24 | blue: "#3b8eea" 25 | magenta: "#d670d6" 26 | cyan: "#29b8db" 27 | white: "#e5e5e5" -------------------------------------------------------------------------------- /config/xdg-desktop-portal-termfilechooser/.last_selected: -------------------------------------------------------------------------------- 1 | /home/think-crag/Descargas 2 | -------------------------------------------------------------------------------- /config/xdg-desktop-portal-termfilechooser/config: -------------------------------------------------------------------------------- 1 | [filechooser] 2 | cmd=~/.config/xdg-desktop-portal-termfilechooser/yazi-wrapper.sh 3 | default_dir=$HOME/Descargas/ 4 | env=TERMCMD=kitty -T yazi 5 | -------------------------------------------------------------------------------- /config/xdg-desktop-portal/hyprland-portals.conf: -------------------------------------------------------------------------------- 1 | [preferred] 2 | default=hyprland;termfilechooser;gtk 3 | org.freedesktop.impl.portal.FileChooser=termfilechooser 4 | -------------------------------------------------------------------------------- /config/xdg-desktop-portal/mwc-portals.conf: -------------------------------------------------------------------------------- 1 | [preferred] 2 | default=gtk 3 | org.freedesktop.impl.portal.Screenshot=wlr 4 | org.freedesktop.impl.portal.ScreenCast=wlr 5 | org.freedesktop.impl.portal.FileChooser=termfilechooser 6 | -------------------------------------------------------------------------------- /etc/NetworkManager/NetworkManager.conf: -------------------------------------------------------------------------------- 1 | # Configuration file for NetworkManager. 2 | # See "man 5 NetworkManager.conf" for details. 3 | [main] 4 | plugins=ifupdown,keyfile 5 | # Stops overwriting /etc/resolv.conf by NetworkManager 6 | # because we use dnscrypt-proxy 7 | dns=none 8 | # Need to comment this line because of use dnscrypt-proxy 9 | #dns=dnsmasq 10 | 11 | [ifupdown] 12 | managed=false 13 | 14 | # [device] 15 | # # Random mac address 16 | # # should be already default 17 | # wifi.scan-rand-mac-address=yes 18 | -------------------------------------------------------------------------------- /etc/NetworkManager/conf.d/wifi_rand_mac.conf: -------------------------------------------------------------------------------- 1 | [device-mac-randomization] 2 | # "yes" is already the default for scanning 3 | wifi.scan-rand-mac-address=yes 4 | 5 | [connection-mac-randomization] 6 | # Randomize MAC for every ethernet connection 7 | ethernet.cloned-mac-address=random 8 | # Generate a random MAC for each WiFi and associate the two permanently. 9 | wifi.cloned-mac-address=random 10 | -------------------------------------------------------------------------------- /etc/dnscrypt-proxy/get_blocklist: -------------------------------------------------------------------------------- 1 | #!/usr/bin/bash 2 | 3 | output_blocklist="$HOME/Git/dotfiles/etc/dnscrypt-proxy/blocked-names.txt" 4 | date_generate="$(awk 'NR==3' $output_blocklist | awk '{print $4}')" 5 | current_date=$(date +%Oe) 6 | 7 | if [[ $current_date != ${date_generate:8:2} ]]; then 8 | curl -o $output_blocklist https://dblw.oisd.nl/ 9 | fi 10 | -------------------------------------------------------------------------------- /etc/greetd/config.toml: -------------------------------------------------------------------------------- 1 | [terminal] 2 | # The VT to run the greeter on. Can be "next", "current" or a number 3 | # designating the VT. 4 | vt = 1 5 | 6 | # The default session, also known as the greeter. 7 | [default_session] 8 | 9 | # `agreety` is the bundled agetty/login-lookalike. You can replace `/bin/sh` 10 | # with whatever you want started, such as `sway`. 11 | command = "Hyprland --config /etc/greetd/hyprland.conf &> /dev/null" 12 | 13 | # The user to run the command as. The privileges this user must have depends 14 | # on the greeter. A graphical greeter may for example require the user to be 15 | # in the `video` group. 16 | user = "greeter" 17 | -------------------------------------------------------------------------------- /etc/greetd/regreet.css: -------------------------------------------------------------------------------- 1 | window { 2 | background-image: url("file:///home/think-crag/.config/swww/wall.set"); 3 | background-size: cover; 4 | background-position: center; 5 | } 6 | box#body { 7 | background-color: rgba(245, 194, 231, 0.8); 8 | border-radius: 10px; 9 | padding: 50px; 10 | } 11 | -------------------------------------------------------------------------------- /etc/resolv.conf: -------------------------------------------------------------------------------- 1 | nameserver ::1 2 | nameserver 127.0.0.1 3 | options edns0 single-request-reopen 4 | -------------------------------------------------------------------------------- /etc/sysctl.d/30-ipforward.conf: -------------------------------------------------------------------------------- 1 | net.ipv4.ip_forward=1 2 | net.ipv6.conf.default.forwarding=1 3 | net.ipv6.conf.all.forwarding=1 4 | -------------------------------------------------------------------------------- /etc/sysctl.d/40-max-user-watches.conf: -------------------------------------------------------------------------------- 1 | fs.inotify.max_user_watches=524288 2 | -------------------------------------------------------------------------------- /etc/zcfan.conf: -------------------------------------------------------------------------------- 1 | max_temp 80 2 | med_temp 60 3 | low_temp 40 4 | -------------------------------------------------------------------------------- /local/share/luakit/styles/abcvideo.css: -------------------------------------------------------------------------------- 1 | @-moz-document domain("abcvideo.cc") { 2 | 3 | /* comment out to disable */ 4 | 5 | div.header { display: none !important } 6 | div#headerinside { display: none !important } 7 | div#crazy_panel { display: none !important } 8 | div.menu { display: none !important } 9 | 10 | div.sufi-main { background-color: #111 !important } 11 | 12 | div#video-content div#vplayer { width: 640px !important } 13 | 14 | input[value='Send Report'] { display: none !important } 15 | 16 | div#crazy_btn { display: none !important } 17 | div.section { display: none !important } 18 | footer { display: none !important } 19 | 20 | } 21 | -------------------------------------------------------------------------------- /local/share/luakit/styles/archive.css: -------------------------------------------------------------------------------- 1 | @-moz-document domain("archive.org") { 2 | 3 | /* comment out to disable */ 4 | 5 | header { display: none !important } 6 | 7 | div.donate-content { display: none !important } 8 | 9 | footer { display: none !important } 10 | 11 | } 12 | -------------------------------------------------------------------------------- /local/share/luakit/styles/clipwatching.css: -------------------------------------------------------------------------------- 1 | @-moz-document domain("clipwatching.com") { 2 | 3 | /* comment out to disable */ 4 | 5 | nav.navbar { display: none !important } 6 | 7 | body { background-color: #111 !important } 8 | 9 | div#video-content div#vplayer { width: 640px !important } 10 | 11 | img[src='https://clipwatching.com/images/cancel.png'] { display: none !important } 12 | 13 | div#showmac { display: none !important } 14 | 15 | div.section { display: none !important } 16 | 17 | footer { display: none !important } 18 | 19 | } 20 | -------------------------------------------------------------------------------- /local/share/luakit/styles/codeproject.css: -------------------------------------------------------------------------------- 1 | @-moz-document domain("codeproject.com") { 2 | 3 | /* comment out to disable */ 4 | 5 | div.cc-banner { display: none !important } 6 | 7 | } 8 | -------------------------------------------------------------------------------- /local/share/luakit/styles/dood.css: -------------------------------------------------------------------------------- 1 | @-moz-document domain("dood.watch") { 2 | 3 | /* comment out to disable */ 4 | 5 | div.player { width: 512px !important ; height: 380px !important ; display: block !important ; margin-left: auto !important ; margin-right: auto !important ; margin-top: 60px !important } 6 | 7 | } 8 | -------------------------------------------------------------------------------- /local/share/luakit/styles/gamovideo.css: -------------------------------------------------------------------------------- 1 | @-moz-document domain("gamovideo.com") { 2 | 3 | /* comment out to disable */ 4 | 5 | div.navbar-inner { display: none !important } 6 | 7 | body { background-color: #111 !important } 8 | 9 | div#container > div#main { background-color: #333 !important } 10 | 11 | div#container > div#main > center div#vplayer { width: 640px !important } 12 | 13 | div#footer { display: none !important } 14 | 15 | } 16 | -------------------------------------------------------------------------------- /local/share/luakit/styles/gfycat.css: -------------------------------------------------------------------------------- 1 | @-moz-document domain("gfycat.com") { 2 | 3 | /* comment out to disable */ 4 | 5 | header { display: none !important } 6 | div.upnext-items { display: none !important } 7 | div.block-3 { display: none !important } 8 | 9 | } 10 | -------------------------------------------------------------------------------- /local/share/luakit/styles/highwebmedia.css: -------------------------------------------------------------------------------- 1 | @-moz-document domain('highwebmedia.com') { 2 | 3 | /* comment out to disable */ 4 | 5 | video { width: 360 !important } 6 | 7 | } 8 | 9 | -------------------------------------------------------------------------------- /local/share/luakit/styles/linuxquestions.css: -------------------------------------------------------------------------------- 1 | @-moz-document domain("linuxquestions.org") { 2 | 3 | /* comment out to disable */ 4 | 5 | /* just show left td */ 6 | 7 | td.page:nth-of-type(2) { display: none !important } 8 | 9 | /* hide huge Notice paragraph */ 10 | 11 | table.tborder:nth-of-type(3) { display: none !important } 12 | 13 | } 14 | -------------------------------------------------------------------------------- /local/share/luakit/styles/lowes.css: -------------------------------------------------------------------------------- 1 | @-moz-document domain("www.lowes.com") { 2 | 3 | /* comment out to disable */ 4 | 5 | div.met-component-banner { display: none !important } 6 | 7 | div#footerApp { display: none !important } 8 | 9 | } 10 | -------------------------------------------------------------------------------- /local/share/luakit/styles/m.youtube.css: -------------------------------------------------------------------------------- 1 | @-moz-document domain("m.youtube.com") { 2 | 3 | /* comment out to disable */ 4 | 5 | div#player { display: none !important } 6 | 7 | * { -webkit-border-radius: 0 !important ; border-radius: 0 !important } 8 | 9 | a.video-thumbnail-img { max-width: 320px !important ; max-height: 180px !important } 10 | 11 | .cover { max-width: 320px !important ; max-height: 180px !important } 12 | 13 | /* Home, Trending, Subscriptions, Library */ 14 | ytm-pivot-bar-renderer[role='tablist'] { display: none !important } 15 | 16 | } 17 | -------------------------------------------------------------------------------- /local/share/luakit/styles/mixdrop.css: -------------------------------------------------------------------------------- 1 | @-moz-document domain("mixdrop.co") { 2 | 3 | /* comment out to disable */ 4 | 5 | div.header { display: none !important } 6 | 7 | div.video { background: #111 !important } 8 | div.wrapper { width: 640px !important } 9 | 10 | div.player[crossorigin="anonymous"] { width: 512px !important ; height: 380px !important ; display: block !important ; margin-left: auto !important ; margin-right: auto !important ; margin-top: 60px !important } 11 | 12 | div.player-bottom { display: none !important } 13 | div.download-embed { display: none !important } 14 | div.footer { display: none !important } 15 | 16 | } 17 | -------------------------------------------------------------------------------- /local/share/luakit/styles/pjtrailers.css: -------------------------------------------------------------------------------- 1 | @-moz-document domain("pjtrailers.com") { 2 | 3 | /* comment out to disable */ 4 | 5 | div.fb_dialog_content { display: none !important } 6 | div.fb-customerchat { display: none !important } 7 | 8 | } 9 | -------------------------------------------------------------------------------- /local/share/luakit/styles/redd-head.css: -------------------------------------------------------------------------------- 1 | @-moz-document domain("reddit.com") { 2 | 3 | /* comment out to disable */ 4 | 5 | div#header > div#sr-header-area { display: none !important } 6 | 7 | div.side { display: none !important } 8 | 9 | /* div.commentarea { display: none !important } */ 10 | 11 | a#chat { display: none !important } 12 | a#chat-count { display: none !important } 13 | 14 | iframe#chat-app { display: none !important } 15 | 16 | a[href='https://www.reddit.com/chat/minimize'] { display: none !important } 17 | 18 | } 19 | -------------------------------------------------------------------------------- /local/share/luakit/styles/redgifs.css: -------------------------------------------------------------------------------- 1 | @-moz-document domain("redgifs.com") { 2 | 3 | /* comment out to disable */ 4 | 5 | header { display: none !important } 6 | 7 | } 8 | -------------------------------------------------------------------------------- /local/share/luakit/styles/tinyhousebasics.css: -------------------------------------------------------------------------------- 1 | @-moz-document domain("tinyhousebasics.com") { 2 | 3 | /* comment out to disable */ 4 | 5 | div.fb_dialog_content { display: none !important } 6 | div.fb-customerchat { display: none !important } 7 | 8 | } 9 | -------------------------------------------------------------------------------- /local/share/luakit/styles/unix.stackexchange.css: -------------------------------------------------------------------------------- 1 | @-moz-document domain("unix.stackexchange.com") { 2 | 3 | /* comment out to disable */ 4 | 5 | .js-consent-banner { display: none !important } 6 | 7 | footer { display: none !important } 8 | 9 | } 10 | -------------------------------------------------------------------------------- /local/share/luakit/styles/upstream.css: -------------------------------------------------------------------------------- 1 | @-moz-document domain("upstream.to") { 2 | 3 | /* comment out to disable */ 4 | 5 | header { display: none !important } 6 | div#headerinside { display: none !important } 7 | 8 | div#wrapper div.container div#content div#vplayer { width: 640px !important } 9 | div#wrapper div.container div#content div.section { display: none !important } 10 | 11 | footer { display: none !important } 12 | 13 | } 14 | -------------------------------------------------------------------------------- /local/share/luakit/styles/vidlox.css: -------------------------------------------------------------------------------- 1 | @-moz-document domain("vidlox.me") { 2 | 3 | /* comment out to disable */ 4 | 5 | header#header { display: none !important } 6 | 7 | content > div.container div#video-content { width: 640px !important } 8 | content > div.container div.infopanel { display: none !important } 9 | 10 | footer { display: none !important } 11 | 12 | } 13 | -------------------------------------------------------------------------------- /local/share/luakit/styles/vidtodo.css: -------------------------------------------------------------------------------- 1 | @-moz-document domain("vidtod.com") { 2 | 3 | /* comment out to disable */ 4 | 5 | div#header { display: none !important } 6 | 7 | body { background-color: #111 !important } 8 | 9 | div#container > div#video-content > div#pdiv > div#play-limit-box { width: 512px !important } 10 | div#container > div#video-content > div#pdiv > div#vplayer > img { display: none !important } 11 | 12 | div#sidebar1 { display: none !important } 13 | footer { display: none !important } 14 | 15 | } 16 | -------------------------------------------------------------------------------- /local/share/luakit/styles/wikipedia.css: -------------------------------------------------------------------------------- 1 | @-moz-document domain("wikipedia.org") { 2 | 3 | /* comment out to disable */ 4 | 5 | header { display: none !important } 6 | 7 | div#siteNotice { display: none !important } 8 | div#frb-nag { display: none !important } 9 | div#mw-panel { display: none !important } 10 | 11 | footer { display: none !important } 12 | 13 | } 14 | -------------------------------------------------------------------------------- /themes/custom_folders/AndroidStudio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CRAG666/dotfiles/7ea1f8adb41002217b1cdd88c11846bd505cba32/themes/custom_folders/AndroidStudio.png -------------------------------------------------------------------------------- /themes/custom_folders/Arduino.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CRAG666/dotfiles/7ea1f8adb41002217b1cdd88c11846bd505cba32/themes/custom_folders/Arduino.png -------------------------------------------------------------------------------- /themes/custom_folders/Clouds.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CRAG666/dotfiles/7ea1f8adb41002217b1cdd88c11846bd505cba32/themes/custom_folders/Clouds.png -------------------------------------------------------------------------------- /themes/custom_folders/Game.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CRAG666/dotfiles/7ea1f8adb41002217b1cdd88c11846bd505cba32/themes/custom_folders/Game.png -------------------------------------------------------------------------------- /themes/custom_folders/Git.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CRAG666/dotfiles/7ea1f8adb41002217b1cdd88c11846bd505cba32/themes/custom_folders/Git.png -------------------------------------------------------------------------------- /themes/custom_folders/IDEA.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CRAG666/dotfiles/7ea1f8adb41002217b1cdd88c11846bd505cba32/themes/custom_folders/IDEA.png -------------------------------------------------------------------------------- /themes/custom_folders/drive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CRAG666/dotfiles/7ea1f8adb41002217b1cdd88c11846bd505cba32/themes/custom_folders/drive.png -------------------------------------------------------------------------------- /themes/custom_folders/python.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CRAG666/dotfiles/7ea1f8adb41002217b1cdd88c11846bd505cba32/themes/custom_folders/python.png -------------------------------------------------------------------------------- /themes/custom_folders/vscode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CRAG666/dotfiles/7ea1f8adb41002217b1cdd88c11846bd505cba32/themes/custom_folders/vscode.png -------------------------------------------------------------------------------- /themes/firefox/chrome/userChrome.css: -------------------------------------------------------------------------------- 1 | #TabsToolbar { 2 | visibility: collapse; 3 | } 4 | 5 | :root:not([customizing]) #navigator-toolbox:not(:hover):not(:focus-within) { 6 | max-height: 1px; 7 | min-height: calc(0px); 8 | overflow: hidden; 9 | } 10 | 11 | statuspanel[type="overLink"], 12 | #statuspanel[type="overLink"] { 13 | top: 2em; 14 | z-index: 2; 15 | display: inline; 16 | } -------------------------------------------------------------------------------- /thinkpad/etc/zcfan.conf: -------------------------------------------------------------------------------- 1 | max_temp 85 2 | med_temp 65 3 | low_temp 45 4 | temp_hysteresis 20 5 | -------------------------------------------------------------------------------- /thinkpad/scripts/98-power-saving.conf: -------------------------------------------------------------------------------- 1 | # Configuración de ahorro de energía 2 | # Configuración para mejorar el ahorro de energía de la red 3 | net.core.rmem_max = 4194304 4 | net.core.wmem_max = 4194304 5 | net.core.netdev_max_backlog = 1000 6 | net.core.somaxconn = 128 7 | net.ipv4.tcp_fin_timeout = 15 8 | net.ipv4.tcp_keepalive_time = 60 9 | net.ipv4.tcp_keepalive_probes = 3 10 | net.ipv4.tcp_keepalive_intvl = 5 11 | 12 | # Restablecer la asignación de CPU a valores predeterminados 13 | kernel.sched_rt_runtime_us = 9500000 14 | kernel.sched_rt_period_us = 10000000 15 | -------------------------------------------------------------------------------- /thinkpad/scripts/99-performance.conf: -------------------------------------------------------------------------------- 1 | # Configuración de rendimiento máximo 2 | # Ajuste para mejorar la capacidad de respuesta de la red 3 | net.core.rmem_max = 16777216 4 | net.core.wmem_max = 16777216 5 | net.core.netdev_max_backlog = 30000 6 | net.core.somaxconn = 65535 7 | net.ipv4.tcp_fin_timeout = 5 8 | net.ipv4.tcp_keepalive_time = 120 9 | net.ipv4.tcp_keepalive_probes = 5 10 | net.ipv4.tcp_keepalive_intvl = 15 11 | 12 | # Mayor prioridad para la asignación de CPU a procesos en tiempo real 13 | kernel.sched_rt_runtime_us = 950000 14 | kernel.sched_rt_period_us = 1000000 15 | -------------------------------------------------------------------------------- /thinkpad/scripts/power-mode-startup.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | if [ -d "/sys/class/power_supply/AC" ]; then 4 | status=$(cat /sys/class/power_supply/AC/online) 5 | 6 | rfkill block bluetooth 7 | if [ "$status" -eq 1 ]; then 8 | /home/think-crag/Git/dotfiles/thinkpad/scripts/power-mode.sh ac 9 | else 10 | /home/think-crag/Git/dotfiles/thinkpad/scripts/power-mode.sh battery 11 | fi 12 | else 13 | logger "No se pudo encontrar información sobre el cargador." 14 | fi 15 | -------------------------------------------------------------------------------- /wayland/electron-flags.conf: -------------------------------------------------------------------------------- 1 | --ozone-platform=wayland 2 | --enable-features=UseOzonePlatform,WaylandWindowDecorations,WebUIDarkMode,WebRTCPipeWireCapturer,VaapiVideoDecoder 3 | --force-dark-mode 4 | --enable-zero-copy 5 | --use-gl=desktop 6 | --ignore-gpu-blocklist 7 | --start-maximized 8 | -------------------------------------------------------------------------------- /wayland/scripts/nvidia_firefox: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | NVD_BACKEND=direct MOZ_DISABLE_RDD_SANDBOX=1 LIBVA_DRIVER_NAME=nvidia prime-run /bin/firefox "$@" 3 | -------------------------------------------------------------------------------- /wayland/scripts/open-wl: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | 3 | cat $HOME/.config/chromium-flags.conf | xargs -0 -i echo {} "$2" | xargs "$1" 4 | -------------------------------------------------------------------------------- /wayland/scripts/sway-run.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | # Session 4 | export XDG_SESSION_TYPE=wayland 5 | export XDG_SESSION_DESKTOP=sway 6 | export XDG_CURRENT_DESKTOP=sway 7 | export XDG_CURRENT_SESSION=sway 8 | 9 | source /usr/local/bin/wayland_enablement.sh 10 | 11 | sleep 1; 12 | 13 | systemd-cat --identifier=sway sway $@ 14 | -------------------------------------------------------------------------------- /wayland/toggle_wcam: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | # 3 | # toggle web cam, i'm paranoid # 4 | # 5 | 6 | ## find web cam module ## 7 | lsmod | awk '{print($1)}' | grep $1 8 | 9 | if [ $? -eq 0 ] 10 | then 11 | pkexec modprobe -r $1 12 | else 13 | pkexec modprobe $1 14 | fi 15 | 16 | --------------------------------------------------------------------------------