From 030529e98ca92f1f4309e30b4ea1c95ce6b2fb10 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sergio=20La=C3=ADn?= Date: Wed, 5 Jul 2023 18:25:18 +0200 Subject: [PATCH] new additions to the dotfiles --- .config/bat/config | 25 + .config/bat/themes/Catppuccin-frappe.tmTheme | 959 +++++++ .config/bat/themes/Catppuccin-latte.tmTheme | 959 +++++++ .../bat/themes/Catppuccin-macchiato.tmTheme | 959 +++++++ .config/bat/themes/Catppuccin-mocha.tmTheme | 959 +++++++ .config/btop/btop.conf | 212 ++ .config/btop/btop.log | 64 + .../btop/themes/catppuccin_macchiato.theme | 42 + .config/cava/config | 196 ++ .config/cava/shaders/bar_spectrum.frag | 79 + .config/cava/shaders/normalized_bars.frag | 38 + .config/cava/shaders/pass_through.vert | 14 + .config/hypr/keybinds/binds.conf | 2 +- .config/keyb/config.yml | 43 + .config/keyb/default.yml | 323 +++ .config/kitty/kitty.conf | 2221 +++++++++++++++++ .config/neofetch/config.conf | 754 ++++++ .config/rofi/config.rasi | 87 + .config/rofi/style.rasi | 175 ++ .config/sway/idle.sh | 5 + .config/sway/lock.sh | 22 + .config/waybar/config | 711 ++++++ .config/waybar/scripts/caway | 115 + .config/waybar/scripts/color-picker | 19 + .config/waybar/scripts/fans.sh | 2 + .config/waybar/scripts/launch_waybar | 6 + .config/waybar/scripts/lock | 24 + .config/waybar/scripts/mediaplayer.py | 128 + .config/waybar/scripts/updates | 39 + .config/waybar/scripts/weather.py | 115 + .config/waybar/scripts/wttr | 122 + .config/waybar/style.css | 301 +++ .config/wleave/actions | 32 + .config/wleave/icons/hibernate.png | Bin 0 -> 34342 bytes .config/wleave/icons/lock.png | Bin 0 -> 17400 bytes .config/wleave/icons/logout.png | Bin 0 -> 14188 bytes .config/wleave/icons/reboot.png | Bin 0 -> 30569 bytes .config/wleave/icons/shutdown.png | Bin 0 -> 30467 bytes .config/wleave/icons/suspend.png | Bin 0 -> 33515 bytes .config/wleave/launch.sh | 17 + .config/wleave/layout | 36 + .config/wleave/style.css | 62 + .config/zathura/zathurarc | 66 + .zshrc | 130 + 44 files changed, 10062 insertions(+), 1 deletion(-) create mode 100644 .config/bat/config create mode 100644 .config/bat/themes/Catppuccin-frappe.tmTheme create mode 100644 .config/bat/themes/Catppuccin-latte.tmTheme create mode 100644 .config/bat/themes/Catppuccin-macchiato.tmTheme create mode 100644 .config/bat/themes/Catppuccin-mocha.tmTheme create mode 100644 .config/btop/btop.conf create mode 100644 .config/btop/btop.log create mode 100644 .config/btop/themes/catppuccin_macchiato.theme create mode 100644 .config/cava/config create mode 100644 .config/cava/shaders/bar_spectrum.frag create mode 100644 .config/cava/shaders/normalized_bars.frag create mode 100644 .config/cava/shaders/pass_through.vert create mode 100644 .config/keyb/config.yml create mode 100644 .config/keyb/default.yml create mode 100644 .config/kitty/kitty.conf create mode 100644 .config/neofetch/config.conf create mode 100644 .config/rofi/config.rasi create mode 100644 .config/rofi/style.rasi create mode 100755 .config/sway/idle.sh create mode 100755 .config/sway/lock.sh create mode 100644 .config/waybar/config create mode 100755 .config/waybar/scripts/caway create mode 100644 .config/waybar/scripts/color-picker create mode 100755 .config/waybar/scripts/fans.sh create mode 100644 .config/waybar/scripts/launch_waybar create mode 100644 .config/waybar/scripts/lock create mode 100755 .config/waybar/scripts/mediaplayer.py create mode 100755 .config/waybar/scripts/updates create mode 100755 .config/waybar/scripts/weather.py create mode 100644 .config/waybar/scripts/wttr create mode 100644 .config/waybar/style.css create mode 100755 .config/wleave/actions create mode 100644 .config/wleave/icons/hibernate.png create mode 100644 .config/wleave/icons/lock.png create mode 100644 .config/wleave/icons/logout.png create mode 100644 .config/wleave/icons/reboot.png create mode 100644 .config/wleave/icons/shutdown.png create mode 100644 .config/wleave/icons/suspend.png create mode 100755 .config/wleave/launch.sh create mode 100755 .config/wleave/layout create mode 100644 .config/wleave/style.css create mode 100644 .config/zathura/zathurarc create mode 100644 .zshrc diff --git a/.config/bat/config b/.config/bat/config new file mode 100644 index 00000000..dd4ffeb9 --- /dev/null +++ b/.config/bat/config @@ -0,0 +1,25 @@ +# This is `bat`s configuration file. Each line either contains a comment or +# a command-line option that you want to pass to `bat` by default. You can +# run `bat --help` to get a list of all possible configuration options. + +# Specify desired highlighting theme (e.g. "TwoDark"). Run `bat --list-themes` +# for a list of all available themes +--theme="Catppuccin-frappe" + +# Enable this to use italic text on the terminal. This is not supported on all +# terminal emulators (like tmux, by default): +#--italic-text=always + +# Uncomment the following line to disable automatic paging: +#--paging=never + +# Uncomment the following line if you are using less version >= 551 and want to +# enable mouse scrolling support in `bat` when running inside tmux. This might +# disable text selection, unless you press shift. +#--pager="less --RAW-CONTROL-CHARS --quit-if-one-screen --mouse" + +# Syntax mappings: map a certain filename pattern to a language. +# Example 1: use the C++ syntax for Arduino .ino files +# Example 2: Use ".gitignore"-style highlighting for ".ignore" files +#--map-syntax "*.ino:C++" +#--map-syntax ".ignore:Git Ignore" diff --git a/.config/bat/themes/Catppuccin-frappe.tmTheme b/.config/bat/themes/Catppuccin-frappe.tmTheme new file mode 100644 index 00000000..f4eb2228 --- /dev/null +++ b/.config/bat/themes/Catppuccin-frappe.tmTheme @@ -0,0 +1,959 @@ + + + + + name + Catppuccin + settings + + + settings + + foreground + #c6d0f5 + background + #303446 + caret + #b5bfe2 + invisibles + #a5adce + gutterForeground + #949cbb + gutterForegroundHighlight + #a6d189 + lineHighlight + #626880 + selection + #737994 + selectionBorder + #303446 + activeGuide + #ef9f76 + findHighlightForeground + #292c3c + findHighlight + #e5c890 + bracketsForeground + #949cbb + bracketContentsForeground + #949cbb + + + + name + Comment + scope + comment + settings + + foreground + #737994 + fontStyle + italic + + + + name + String + scope + string + settings + + foreground + #a6d189 + fontStyle + + + + + name + String regex + scope + string.regexp + settings + + foreground + #ef9f76 + fontStyle + + + + + name + Number + scope + constant.numeric + settings + + foreground + #ef9f76 + fontStyle + + + + + name + Boolean + scope + constant.language.boolean + settings + + foreground + #ef9f76 + fontStyle + bold italic + + + + name + Built-in constant + scope + constant.language + settings + + foreground + #babbf1 + fontStyle + italic + + + + name + Built-in function + scope + support.function.builtin + settings + + foreground + #ef9f76 + fontStyle + italic + + + + name + User-defined constant + scope + variable.other.constant + settings + + foreground + #ef9f76 + fontStyle + + + + + name + Variable + scope + variable + settings + + + + name + Keyword + scope + keyword + settings + + foreground + #e78284 + fontStyle + italic + + + + name + Conditional/loop + scope + keyword.control.loop, keyword.control.conditional, keyword.control.c++ + settings + + foreground + #ca9ee6 + fontStyle + bold + + + + name + Return + scope + keyword.control.return, keyword.control.flow.return + settings + + foreground + #f4b8e4 + fontStyle + bold + + + + name + Exception + scope + support.type.exception + settings + + foreground + #ef9f76 + fontStyle + italic + + + + name + Operator + scope + keyword.operator, punctuation.accessor + settings + + foreground + #99d1db + fontStyle + bold + + + + name + Punctuation separator + scope + punctuation.separator + settings + + foreground + #81c8be + fontStyle + + + + + name + Punctuation terminator + scope + punctuation.terminator + settings + + foreground + #81c8be + fontStyle + + + + + name + Punctuation bracket + scope + punctuation.section + settings + + foreground + #949cbb + fontStyle + + + + + name + Include + scope + keyword.control.import.include + settings + + foreground + #81c8be + fontStyle + italic + + + + name + Storage + scope + storage + settings + + foreground + #e78284 + fontStyle + + + + + name + Storage type + scope + storage.type + settings + + foreground + #e5c890 + fontStyle + italic + + + + name + Storage modifier + scope + storage.modifier + settings + + foreground + #e78284 + fontStyle + + + + + name + Storage type namespace + scope + entity.name.namespace, meta.path + settings + + foreground + #f2d5cf + fontStyle + italic + + + + name + Storage type class + scope + storage.type.class + settings + + foreground + #f2d5cf + fontStyle + italic + + + + name + Label + scope + entity.name.label + settings + + foreground + #8caaee + fontStyle + + + + + name + Keyword class + scope + keyword.declaration.class + settings + + foreground + #e78284 + fontStyle + italic + + + + name + Class name + scope + entity.name.class, meta.toc-list.full-identifier + settings + + foreground + #99d1db + fontStyle + + + + + name + Inherited class + scope + entity.other.inherited-class + settings + + foreground + #99d1db + fontStyle + italic + + + + name + Function name + scope + entity.name.function, variable.function + settings + + foreground + #8caaee + fontStyle + italic + + + + name + Function macro + scope + entity.name.function.preprocessor + settings + + foreground + #e78284 + fontStyle + + + + + name + Macro directive - ifdef + scope + keyword.control.import + settings + + foreground + #e78284 + fontStyle + + + + + name + Constructor + scope + entity.name.function.constructor, entity.name.function.destructor + settings + + foreground + #babbf1 + fontStyle + + + + + name + Function argument + scope + variable.parameter.function + settings + + foreground + #f2d5cf + fontStyle + italic + + + + name + Function declaration + scope + keyword.declaration.function + settings + + foreground + #ea999c + fontStyle + italic + + + + name + Library function + scope + support.function + settings + + foreground + #99d1db + fontStyle + + + + + name + Library constant + scope + support.constant + settings + + foreground + #8caaee + fontStyle + + + + + name + Library class/type + scope + support.type, support.class + settings + + foreground + #8caaee + fontStyle + italic + + + + name + Library variable + scope + support.other.variable + settings + + fontStyle + + + + + name + Variable function + scope + variable.function + settings + + foreground + #8caaee + fontStyle + italic + + + + name + Variable parameter + scope + variable.parameter + settings + + foreground + #f2d5cf + fontStyle + italic + + + + name + Variable other + scope + variable.other + settings + + foreground + #c6d0f5 + fontStyle + italic + + + + name + Variable field + scope + variable.other.member + settings + + foreground + #f2d5cf + fontStyle + + + + + name + Variable language + scope + variable.language + settings + + foreground + #81c8be + fontStyle + + + + + name + Tag name + scope + entity.name.tag + settings + + foreground + #ef9f76 + fontStyle + + + + + name + Tag attribute + scope + entity.other.attribute-name + settings + + foreground + #ca9ee6 + fontStyle + italic + + + + name + Tag delimiter + scope + punctuation.definition.tag + settings + + foreground + #ea999c + fontStyle + + + + + name + Markdown URL + scope + markup.underline.link.markdown + settings + + foreground + #f2d5cf + fontStyle + italic underline + + + + name + Markdown reference + scope + meta.link.inline.description + settings + + foreground + #babbf1 + fontStyle + bold + + + + name + Markdown literal + scope + comment.block.markdown, meta.code-fence, markup.raw.code-fence, markup.raw.inline + settings + + foreground + #81c8be + fontStyle + italic + + + + name + Markdown title + scope + punctuation.definition.heading, entity.name.section + settings + + foreground + #8caaee + fontStyle + bold + + + + name + Markdown emphasis + scope + markup.italic + settings + + foreground + #ea999c + fontStyle + italic + + + + name + Markdown strong + scope + markup.bold + settings + + foreground + #ea999c + fontStyle + bold + + + + name + Escape + scope + constant.character.escape + settings + + foreground + #f4b8e4 + fontStyle + + + + + name + Bash built-in function + scope + source.shell.bash meta.function.shell meta.compound.shell meta.function-call.identifier.shell + settings + + foreground + #f4b8e4 + fontStyle + + + + + name + Bash parameter + scope + variable.language.shell + settings + + foreground + #e78284 + fontStyle + italic + + + + name + Lua field + scope + source.lua meta.function.lua meta.block.lua meta.mapping.value.lua meta.mapping.key.lua string.unquoted.key.lua + settings + + foreground + #babbf1 + fontStyle + italic + + + + name + Lua constructor + scope + source.lua meta.function.lua meta.block.lua meta.mapping.key.lua string.unquoted.key.lua + settings + + foreground + #eebebe + fontStyle + + + + + name + Java constant + scope + entity.name.constant.java + settings + + foreground + #81c8be + fontStyle + + + + + name + CSS property + scope + support.type.property-name.css + settings + + foreground + #eebebe + fontStyle + italic + + + + name + CSS constant + scope + support.constant.property-value.css + settings + + foreground + #c6d0f5 + fontStyle + + + + + name + CSS suffix + scope + constant.numeric.suffix.css, keyword.other.unit.css + settings + + foreground + #81c8be + fontStyle + italic + + + + name + CSS variable property + scope + variable.other.custom-property.name.css, support.type.custom-property.name.css, punctuation.definition.custom-property.css + settings + + foreground + #81c8be + fontStyle + + + + + name + SCSS tag + scope + entity.name.tag.css + settings + + foreground + #babbf1 + fontStyle + + + + + name + SASS variable + scope + variable.other.sass + settings + + foreground + #81c8be + fontStyle + + + + + name + Invalid + scope + invalid + settings + + foreground + #c6d0f5 + background + #e78284 + fontStyle + + + + + name + Invalid deprecated + scope + invalid.deprecated + settings + + foreground + #c6d0f5 + background + #ca9ee6 + fontStyle + + + + + name + Diff header + scope + meta.diff, meta.diff.header + settings + + foreground + #737994 + fontStyle + + + + + name + Diff deleted + scope + markup.deleted + settings + + foreground + #e78284 + fontStyle + + + + + name + Diff inserted + scope + markup.inserted + settings + + foreground + #a6d189 + fontStyle + + + + + name + Diff changed + scope + markup.changed + settings + + foreground + #e5c890 + fontStyle + + + + + name + Message error + scope + message.error + settings + + foreground + #e78284 + fontStyle + + + + + uuid + 4d0379b5-ef82-467b-b8b8-365889420646 + colorSpaceName + sRGB + semanticClass + theme.dark.Catppuccin + author + BrunDerSchwarzmagier + + diff --git a/.config/bat/themes/Catppuccin-latte.tmTheme b/.config/bat/themes/Catppuccin-latte.tmTheme new file mode 100644 index 00000000..6f23c160 --- /dev/null +++ b/.config/bat/themes/Catppuccin-latte.tmTheme @@ -0,0 +1,959 @@ + + + + + name + Catppuccin + settings + + + settings + + foreground + #4c4f69 + background + #eff1f5 + caret + #5c5f77 + invisibles + #6c6f85 + gutterForeground + #7c7f93 + gutterForegroundHighlight + #40a02b + lineHighlight + #acb0be + selection + #9ca0b0 + selectionBorder + #eff1f5 + activeGuide + #fe640b + findHighlightForeground + #e6e9ef + findHighlight + #df8e1d + bracketsForeground + #7c7f93 + bracketContentsForeground + #7c7f93 + + + + name + Comment + scope + comment + settings + + foreground + #9ca0b0 + fontStyle + italic + + + + name + String + scope + string + settings + + foreground + #40a02b + fontStyle + + + + + name + String regex + scope + string.regexp + settings + + foreground + #fe640b + fontStyle + + + + + name + Number + scope + constant.numeric + settings + + foreground + #fe640b + fontStyle + + + + + name + Boolean + scope + constant.language.boolean + settings + + foreground + #fe640b + fontStyle + bold italic + + + + name + Built-in constant + scope + constant.language + settings + + foreground + #7287fd + fontStyle + italic + + + + name + Built-in function + scope + support.function.builtin + settings + + foreground + #fe640b + fontStyle + italic + + + + name + User-defined constant + scope + variable.other.constant + settings + + foreground + #fe640b + fontStyle + + + + + name + Variable + scope + variable + settings + + + + name + Keyword + scope + keyword + settings + + foreground + #d20f39 + fontStyle + italic + + + + name + Conditional/loop + scope + keyword.control.loop, keyword.control.conditional, keyword.control.c++ + settings + + foreground + #8839ef + fontStyle + bold + + + + name + Return + scope + keyword.control.return, keyword.control.flow.return + settings + + foreground + #ea76cb + fontStyle + bold + + + + name + Exception + scope + support.type.exception + settings + + foreground + #fe640b + fontStyle + italic + + + + name + Operator + scope + keyword.operator, punctuation.accessor + settings + + foreground + #04a5e5 + fontStyle + bold + + + + name + Punctuation separator + scope + punctuation.separator + settings + + foreground + #179299 + fontStyle + + + + + name + Punctuation terminator + scope + punctuation.terminator + settings + + foreground + #179299 + fontStyle + + + + + name + Punctuation bracket + scope + punctuation.section + settings + + foreground + #7c7f93 + fontStyle + + + + + name + Include + scope + keyword.control.import.include + settings + + foreground + #179299 + fontStyle + italic + + + + name + Storage + scope + storage + settings + + foreground + #d20f39 + fontStyle + + + + + name + Storage type + scope + storage.type + settings + + foreground + #df8e1d + fontStyle + italic + + + + name + Storage modifier + scope + storage.modifier + settings + + foreground + #d20f39 + fontStyle + + + + + name + Storage type namespace + scope + entity.name.namespace, meta.path + settings + + foreground + #dc8a78 + fontStyle + italic + + + + name + Storage type class + scope + storage.type.class + settings + + foreground + #dc8a78 + fontStyle + italic + + + + name + Label + scope + entity.name.label + settings + + foreground + #1e66f5 + fontStyle + + + + + name + Keyword class + scope + keyword.declaration.class + settings + + foreground + #d20f39 + fontStyle + italic + + + + name + Class name + scope + entity.name.class, meta.toc-list.full-identifier + settings + + foreground + #04a5e5 + fontStyle + + + + + name + Inherited class + scope + entity.other.inherited-class + settings + + foreground + #04a5e5 + fontStyle + italic + + + + name + Function name + scope + entity.name.function, variable.function + settings + + foreground + #1e66f5 + fontStyle + italic + + + + name + Function macro + scope + entity.name.function.preprocessor + settings + + foreground + #d20f39 + fontStyle + + + + + name + Macro directive - ifdef + scope + keyword.control.import + settings + + foreground + #d20f39 + fontStyle + + + + + name + Constructor + scope + entity.name.function.constructor, entity.name.function.destructor + settings + + foreground + #7287fd + fontStyle + + + + + name + Function argument + scope + variable.parameter.function + settings + + foreground + #dc8a78 + fontStyle + italic + + + + name + Function declaration + scope + keyword.declaration.function + settings + + foreground + #e64553 + fontStyle + italic + + + + name + Library function + scope + support.function + settings + + foreground + #04a5e5 + fontStyle + + + + + name + Library constant + scope + support.constant + settings + + foreground + #1e66f5 + fontStyle + + + + + name + Library class/type + scope + support.type, support.class + settings + + foreground + #1e66f5 + fontStyle + italic + + + + name + Library variable + scope + support.other.variable + settings + + fontStyle + + + + + name + Variable function + scope + variable.function + settings + + foreground + #1e66f5 + fontStyle + italic + + + + name + Variable parameter + scope + variable.parameter + settings + + foreground + #dc8a78 + fontStyle + italic + + + + name + Variable other + scope + variable.other + settings + + foreground + #4c4f69 + fontStyle + italic + + + + name + Variable field + scope + variable.other.member + settings + + foreground + #dc8a78 + fontStyle + + + + + name + Variable language + scope + variable.language + settings + + foreground + #179299 + fontStyle + + + + + name + Tag name + scope + entity.name.tag + settings + + foreground + #fe640b + fontStyle + + + + + name + Tag attribute + scope + entity.other.attribute-name + settings + + foreground + #8839ef + fontStyle + italic + + + + name + Tag delimiter + scope + punctuation.definition.tag + settings + + foreground + #e64553 + fontStyle + + + + + name + Markdown URL + scope + markup.underline.link.markdown + settings + + foreground + #dc8a78 + fontStyle + italic underline + + + + name + Markdown reference + scope + meta.link.inline.description + settings + + foreground + #7287fd + fontStyle + bold + + + + name + Markdown literal + scope + comment.block.markdown, meta.code-fence, markup.raw.code-fence, markup.raw.inline + settings + + foreground + #179299 + fontStyle + italic + + + + name + Markdown title + scope + punctuation.definition.heading, entity.name.section + settings + + foreground + #1e66f5 + fontStyle + bold + + + + name + Markdown emphasis + scope + markup.italic + settings + + foreground + #e64553 + fontStyle + italic + + + + name + Markdown strong + scope + markup.bold + settings + + foreground + #e64553 + fontStyle + bold + + + + name + Escape + scope + constant.character.escape + settings + + foreground + #ea76cb + fontStyle + + + + + name + Bash built-in function + scope + source.shell.bash meta.function.shell meta.compound.shell meta.function-call.identifier.shell + settings + + foreground + #ea76cb + fontStyle + + + + + name + Bash parameter + scope + variable.language.shell + settings + + foreground + #d20f39 + fontStyle + italic + + + + name + Lua field + scope + source.lua meta.function.lua meta.block.lua meta.mapping.value.lua meta.mapping.key.lua string.unquoted.key.lua + settings + + foreground + #7287fd + fontStyle + italic + + + + name + Lua constructor + scope + source.lua meta.function.lua meta.block.lua meta.mapping.key.lua string.unquoted.key.lua + settings + + foreground + #dd7878 + fontStyle + + + + + name + Java constant + scope + entity.name.constant.java + settings + + foreground + #179299 + fontStyle + + + + + name + CSS property + scope + support.type.property-name.css + settings + + foreground + #dd7878 + fontStyle + italic + + + + name + CSS constant + scope + support.constant.property-value.css + settings + + foreground + #4c4f69 + fontStyle + + + + + name + CSS suffix + scope + constant.numeric.suffix.css, keyword.other.unit.css + settings + + foreground + #179299 + fontStyle + italic + + + + name + CSS variable property + scope + variable.other.custom-property.name.css, support.type.custom-property.name.css, punctuation.definition.custom-property.css + settings + + foreground + #179299 + fontStyle + + + + + name + SCSS tag + scope + entity.name.tag.css + settings + + foreground + #7287fd + fontStyle + + + + + name + SASS variable + scope + variable.other.sass + settings + + foreground + #179299 + fontStyle + + + + + name + Invalid + scope + invalid + settings + + foreground + #4c4f69 + background + #d20f39 + fontStyle + + + + + name + Invalid deprecated + scope + invalid.deprecated + settings + + foreground + #4c4f69 + background + #8839ef + fontStyle + + + + + name + Diff header + scope + meta.diff, meta.diff.header + settings + + foreground + #9ca0b0 + fontStyle + + + + + name + Diff deleted + scope + markup.deleted + settings + + foreground + #d20f39 + fontStyle + + + + + name + Diff inserted + scope + markup.inserted + settings + + foreground + #40a02b + fontStyle + + + + + name + Diff changed + scope + markup.changed + settings + + foreground + #df8e1d + fontStyle + + + + + name + Message error + scope + message.error + settings + + foreground + #d20f39 + fontStyle + + + + + uuid + 4d0379b5-ef82-467b-b8b8-365889420646 + colorSpaceName + sRGB + semanticClass + theme.dark.Catppuccin + author + BrunDerSchwarzmagier + + diff --git a/.config/bat/themes/Catppuccin-macchiato.tmTheme b/.config/bat/themes/Catppuccin-macchiato.tmTheme new file mode 100644 index 00000000..0beedb6d --- /dev/null +++ b/.config/bat/themes/Catppuccin-macchiato.tmTheme @@ -0,0 +1,959 @@ + + + + + name + Catppuccin + settings + + + settings + + foreground + #cad3f5 + background + #24273a + caret + #b8c0e0 + invisibles + #a5adcb + gutterForeground + #939ab7 + gutterForegroundHighlight + #a6da95 + lineHighlight + #5b6078 + selection + #6e738d + selectionBorder + #24273a + activeGuide + #f5a97f + findHighlightForeground + #1e2030 + findHighlight + #eed49f + bracketsForeground + #939ab7 + bracketContentsForeground + #939ab7 + + + + name + Comment + scope + comment + settings + + foreground + #6e738d + fontStyle + italic + + + + name + String + scope + string + settings + + foreground + #a6da95 + fontStyle + + + + + name + String regex + scope + string.regexp + settings + + foreground + #f5a97f + fontStyle + + + + + name + Number + scope + constant.numeric + settings + + foreground + #f5a97f + fontStyle + + + + + name + Boolean + scope + constant.language.boolean + settings + + foreground + #f5a97f + fontStyle + bold italic + + + + name + Built-in constant + scope + constant.language + settings + + foreground + #b7bdf8 + fontStyle + italic + + + + name + Built-in function + scope + support.function.builtin + settings + + foreground + #f5a97f + fontStyle + italic + + + + name + User-defined constant + scope + variable.other.constant + settings + + foreground + #f5a97f + fontStyle + + + + + name + Variable + scope + variable + settings + + + + name + Keyword + scope + keyword + settings + + foreground + #ed8796 + fontStyle + italic + + + + name + Conditional/loop + scope + keyword.control.loop, keyword.control.conditional, keyword.control.c++ + settings + + foreground + #c6a0f6 + fontStyle + bold + + + + name + Return + scope + keyword.control.return, keyword.control.flow.return + settings + + foreground + #f5bde6 + fontStyle + bold + + + + name + Exception + scope + support.type.exception + settings + + foreground + #f5a97f + fontStyle + italic + + + + name + Operator + scope + keyword.operator, punctuation.accessor + settings + + foreground + #91d7e3 + fontStyle + bold + + + + name + Punctuation separator + scope + punctuation.separator + settings + + foreground + #8bd5ca + fontStyle + + + + + name + Punctuation terminator + scope + punctuation.terminator + settings + + foreground + #8bd5ca + fontStyle + + + + + name + Punctuation bracket + scope + punctuation.section + settings + + foreground + #939ab7 + fontStyle + + + + + name + Include + scope + keyword.control.import.include + settings + + foreground + #8bd5ca + fontStyle + italic + + + + name + Storage + scope + storage + settings + + foreground + #ed8796 + fontStyle + + + + + name + Storage type + scope + storage.type + settings + + foreground + #eed49f + fontStyle + italic + + + + name + Storage modifier + scope + storage.modifier + settings + + foreground + #ed8796 + fontStyle + + + + + name + Storage type namespace + scope + entity.name.namespace, meta.path + settings + + foreground + #f4dbd6 + fontStyle + italic + + + + name + Storage type class + scope + storage.type.class + settings + + foreground + #f4dbd6 + fontStyle + italic + + + + name + Label + scope + entity.name.label + settings + + foreground + #8aadf4 + fontStyle + + + + + name + Keyword class + scope + keyword.declaration.class + settings + + foreground + #ed8796 + fontStyle + italic + + + + name + Class name + scope + entity.name.class, meta.toc-list.full-identifier + settings + + foreground + #91d7e3 + fontStyle + + + + + name + Inherited class + scope + entity.other.inherited-class + settings + + foreground + #91d7e3 + fontStyle + italic + + + + name + Function name + scope + entity.name.function, variable.function + settings + + foreground + #8aadf4 + fontStyle + italic + + + + name + Function macro + scope + entity.name.function.preprocessor + settings + + foreground + #ed8796 + fontStyle + + + + + name + Macro directive - ifdef + scope + keyword.control.import + settings + + foreground + #ed8796 + fontStyle + + + + + name + Constructor + scope + entity.name.function.constructor, entity.name.function.destructor + settings + + foreground + #b7bdf8 + fontStyle + + + + + name + Function argument + scope + variable.parameter.function + settings + + foreground + #f4dbd6 + fontStyle + italic + + + + name + Function declaration + scope + keyword.declaration.function + settings + + foreground + #ee99a0 + fontStyle + italic + + + + name + Library function + scope + support.function + settings + + foreground + #91d7e3 + fontStyle + + + + + name + Library constant + scope + support.constant + settings + + foreground + #8aadf4 + fontStyle + + + + + name + Library class/type + scope + support.type, support.class + settings + + foreground + #8aadf4 + fontStyle + italic + + + + name + Library variable + scope + support.other.variable + settings + + fontStyle + + + + + name + Variable function + scope + variable.function + settings + + foreground + #8aadf4 + fontStyle + italic + + + + name + Variable parameter + scope + variable.parameter + settings + + foreground + #f4dbd6 + fontStyle + italic + + + + name + Variable other + scope + variable.other + settings + + foreground + #cad3f5 + fontStyle + italic + + + + name + Variable field + scope + variable.other.member + settings + + foreground + #f4dbd6 + fontStyle + + + + + name + Variable language + scope + variable.language + settings + + foreground + #8bd5ca + fontStyle + + + + + name + Tag name + scope + entity.name.tag + settings + + foreground + #f5a97f + fontStyle + + + + + name + Tag attribute + scope + entity.other.attribute-name + settings + + foreground + #c6a0f6 + fontStyle + italic + + + + name + Tag delimiter + scope + punctuation.definition.tag + settings + + foreground + #ee99a0 + fontStyle + + + + + name + Markdown URL + scope + markup.underline.link.markdown + settings + + foreground + #f4dbd6 + fontStyle + italic underline + + + + name + Markdown reference + scope + meta.link.inline.description + settings + + foreground + #b7bdf8 + fontStyle + bold + + + + name + Markdown literal + scope + comment.block.markdown, meta.code-fence, markup.raw.code-fence, markup.raw.inline + settings + + foreground + #8bd5ca + fontStyle + italic + + + + name + Markdown title + scope + punctuation.definition.heading, entity.name.section + settings + + foreground + #8aadf4 + fontStyle + bold + + + + name + Markdown emphasis + scope + markup.italic + settings + + foreground + #ee99a0 + fontStyle + italic + + + + name + Markdown strong + scope + markup.bold + settings + + foreground + #ee99a0 + fontStyle + bold + + + + name + Escape + scope + constant.character.escape + settings + + foreground + #f5bde6 + fontStyle + + + + + name + Bash built-in function + scope + source.shell.bash meta.function.shell meta.compound.shell meta.function-call.identifier.shell + settings + + foreground + #f5bde6 + fontStyle + + + + + name + Bash parameter + scope + variable.language.shell + settings + + foreground + #ed8796 + fontStyle + italic + + + + name + Lua field + scope + source.lua meta.function.lua meta.block.lua meta.mapping.value.lua meta.mapping.key.lua string.unquoted.key.lua + settings + + foreground + #b7bdf8 + fontStyle + italic + + + + name + Lua constructor + scope + source.lua meta.function.lua meta.block.lua meta.mapping.key.lua string.unquoted.key.lua + settings + + foreground + #f0c6c6 + fontStyle + + + + + name + Java constant + scope + entity.name.constant.java + settings + + foreground + #8bd5ca + fontStyle + + + + + name + CSS property + scope + support.type.property-name.css + settings + + foreground + #f0c6c6 + fontStyle + italic + + + + name + CSS constant + scope + support.constant.property-value.css + settings + + foreground + #cad3f5 + fontStyle + + + + + name + CSS suffix + scope + constant.numeric.suffix.css, keyword.other.unit.css + settings + + foreground + #8bd5ca + fontStyle + italic + + + + name + CSS variable property + scope + variable.other.custom-property.name.css, support.type.custom-property.name.css, punctuation.definition.custom-property.css + settings + + foreground + #8bd5ca + fontStyle + + + + + name + SCSS tag + scope + entity.name.tag.css + settings + + foreground + #b7bdf8 + fontStyle + + + + + name + SASS variable + scope + variable.other.sass + settings + + foreground + #8bd5ca + fontStyle + + + + + name + Invalid + scope + invalid + settings + + foreground + #cad3f5 + background + #ed8796 + fontStyle + + + + + name + Invalid deprecated + scope + invalid.deprecated + settings + + foreground + #cad3f5 + background + #c6a0f6 + fontStyle + + + + + name + Diff header + scope + meta.diff, meta.diff.header + settings + + foreground + #6e738d + fontStyle + + + + + name + Diff deleted + scope + markup.deleted + settings + + foreground + #ed8796 + fontStyle + + + + + name + Diff inserted + scope + markup.inserted + settings + + foreground + #a6da95 + fontStyle + + + + + name + Diff changed + scope + markup.changed + settings + + foreground + #eed49f + fontStyle + + + + + name + Message error + scope + message.error + settings + + foreground + #ed8796 + fontStyle + + + + + uuid + 4d0379b5-ef82-467b-b8b8-365889420646 + colorSpaceName + sRGB + semanticClass + theme.dark.Catppuccin + author + BrunDerSchwarzmagier + + diff --git a/.config/bat/themes/Catppuccin-mocha.tmTheme b/.config/bat/themes/Catppuccin-mocha.tmTheme new file mode 100644 index 00000000..3b9b72c7 --- /dev/null +++ b/.config/bat/themes/Catppuccin-mocha.tmTheme @@ -0,0 +1,959 @@ + + + + + name + Catppuccin + settings + + + settings + + foreground + #cdd6f4 + background + #1e1e2e + caret + #bac2de + invisibles + #a6adc8 + gutterForeground + #9399b2 + gutterForegroundHighlight + #a6e3a1 + lineHighlight + #585b70 + selection + #6c7086 + selectionBorder + #1e1e2e + activeGuide + #fab387 + findHighlightForeground + #181825 + findHighlight + #f9e2af + bracketsForeground + #9399b2 + bracketContentsForeground + #9399b2 + + + + name + Comment + scope + comment + settings + + foreground + #6c7086 + fontStyle + italic + + + + name + String + scope + string + settings + + foreground + #a6e3a1 + fontStyle + + + + + name + String regex + scope + string.regexp + settings + + foreground + #fab387 + fontStyle + + + + + name + Number + scope + constant.numeric + settings + + foreground + #fab387 + fontStyle + + + + + name + Boolean + scope + constant.language.boolean + settings + + foreground + #fab387 + fontStyle + bold italic + + + + name + Built-in constant + scope + constant.language + settings + + foreground + #b4befe + fontStyle + italic + + + + name + Built-in function + scope + support.function.builtin + settings + + foreground + #fab387 + fontStyle + italic + + + + name + User-defined constant + scope + variable.other.constant + settings + + foreground + #fab387 + fontStyle + + + + + name + Variable + scope + variable + settings + + + + name + Keyword + scope + keyword + settings + + foreground + #f38ba8 + fontStyle + italic + + + + name + Conditional/loop + scope + keyword.control.loop, keyword.control.conditional, keyword.control.c++ + settings + + foreground + #cba6f7 + fontStyle + bold + + + + name + Return + scope + keyword.control.return, keyword.control.flow.return + settings + + foreground + #f5c2e7 + fontStyle + bold + + + + name + Exception + scope + support.type.exception + settings + + foreground + #fab387 + fontStyle + italic + + + + name + Operator + scope + keyword.operator, punctuation.accessor + settings + + foreground + #89dceb + fontStyle + bold + + + + name + Punctuation separator + scope + punctuation.separator + settings + + foreground + #94e2d5 + fontStyle + + + + + name + Punctuation terminator + scope + punctuation.terminator + settings + + foreground + #94e2d5 + fontStyle + + + + + name + Punctuation bracket + scope + punctuation.section + settings + + foreground + #9399b2 + fontStyle + + + + + name + Include + scope + keyword.control.import.include + settings + + foreground + #94e2d5 + fontStyle + italic + + + + name + Storage + scope + storage + settings + + foreground + #f38ba8 + fontStyle + + + + + name + Storage type + scope + storage.type + settings + + foreground + #f9e2af + fontStyle + italic + + + + name + Storage modifier + scope + storage.modifier + settings + + foreground + #f38ba8 + fontStyle + + + + + name + Storage type namespace + scope + entity.name.namespace, meta.path + settings + + foreground + #f5e0dc + fontStyle + italic + + + + name + Storage type class + scope + storage.type.class + settings + + foreground + #f5e0dc + fontStyle + italic + + + + name + Label + scope + entity.name.label + settings + + foreground + #89b4fa + fontStyle + + + + + name + Keyword class + scope + keyword.declaration.class + settings + + foreground + #f38ba8 + fontStyle + italic + + + + name + Class name + scope + entity.name.class, meta.toc-list.full-identifier + settings + + foreground + #89dceb + fontStyle + + + + + name + Inherited class + scope + entity.other.inherited-class + settings + + foreground + #89dceb + fontStyle + italic + + + + name + Function name + scope + entity.name.function, variable.function + settings + + foreground + #89b4fa + fontStyle + italic + + + + name + Function macro + scope + entity.name.function.preprocessor + settings + + foreground + #f38ba8 + fontStyle + + + + + name + Macro directive - ifdef + scope + keyword.control.import + settings + + foreground + #f38ba8 + fontStyle + + + + + name + Constructor + scope + entity.name.function.constructor, entity.name.function.destructor + settings + + foreground + #b4befe + fontStyle + + + + + name + Function argument + scope + variable.parameter.function + settings + + foreground + #f5e0dc + fontStyle + italic + + + + name + Function declaration + scope + keyword.declaration.function + settings + + foreground + #eba0ac + fontStyle + italic + + + + name + Library function + scope + support.function + settings + + foreground + #89dceb + fontStyle + + + + + name + Library constant + scope + support.constant + settings + + foreground + #89b4fa + fontStyle + + + + + name + Library class/type + scope + support.type, support.class + settings + + foreground + #89b4fa + fontStyle + italic + + + + name + Library variable + scope + support.other.variable + settings + + fontStyle + + + + + name + Variable function + scope + variable.function + settings + + foreground + #89b4fa + fontStyle + italic + + + + name + Variable parameter + scope + variable.parameter + settings + + foreground + #f5e0dc + fontStyle + italic + + + + name + Variable other + scope + variable.other + settings + + foreground + #cdd6f4 + fontStyle + italic + + + + name + Variable field + scope + variable.other.member + settings + + foreground + #f5e0dc + fontStyle + + + + + name + Variable language + scope + variable.language + settings + + foreground + #94e2d5 + fontStyle + + + + + name + Tag name + scope + entity.name.tag + settings + + foreground + #fab387 + fontStyle + + + + + name + Tag attribute + scope + entity.other.attribute-name + settings + + foreground + #cba6f7 + fontStyle + italic + + + + name + Tag delimiter + scope + punctuation.definition.tag + settings + + foreground + #eba0ac + fontStyle + + + + + name + Markdown URL + scope + markup.underline.link.markdown + settings + + foreground + #f5e0dc + fontStyle + italic underline + + + + name + Markdown reference + scope + meta.link.inline.description + settings + + foreground + #b4befe + fontStyle + bold + + + + name + Markdown literal + scope + comment.block.markdown, meta.code-fence, markup.raw.code-fence, markup.raw.inline + settings + + foreground + #94e2d5 + fontStyle + italic + + + + name + Markdown title + scope + punctuation.definition.heading, entity.name.section + settings + + foreground + #89b4fa + fontStyle + bold + + + + name + Markdown emphasis + scope + markup.italic + settings + + foreground + #eba0ac + fontStyle + italic + + + + name + Markdown strong + scope + markup.bold + settings + + foreground + #eba0ac + fontStyle + bold + + + + name + Escape + scope + constant.character.escape + settings + + foreground + #f5c2e7 + fontStyle + + + + + name + Bash built-in function + scope + source.shell.bash meta.function.shell meta.compound.shell meta.function-call.identifier.shell + settings + + foreground + #f5c2e7 + fontStyle + + + + + name + Bash parameter + scope + variable.language.shell + settings + + foreground + #f38ba8 + fontStyle + italic + + + + name + Lua field + scope + source.lua meta.function.lua meta.block.lua meta.mapping.value.lua meta.mapping.key.lua string.unquoted.key.lua + settings + + foreground + #b4befe + fontStyle + italic + + + + name + Lua constructor + scope + source.lua meta.function.lua meta.block.lua meta.mapping.key.lua string.unquoted.key.lua + settings + + foreground + #f2cdcd + fontStyle + + + + + name + Java constant + scope + entity.name.constant.java + settings + + foreground + #94e2d5 + fontStyle + + + + + name + CSS property + scope + support.type.property-name.css + settings + + foreground + #f2cdcd + fontStyle + italic + + + + name + CSS constant + scope + support.constant.property-value.css + settings + + foreground + #cdd6f4 + fontStyle + + + + + name + CSS suffix + scope + constant.numeric.suffix.css, keyword.other.unit.css + settings + + foreground + #94e2d5 + fontStyle + italic + + + + name + CSS variable property + scope + variable.other.custom-property.name.css, support.type.custom-property.name.css, punctuation.definition.custom-property.css + settings + + foreground + #94e2d5 + fontStyle + + + + + name + SCSS tag + scope + entity.name.tag.css + settings + + foreground + #b4befe + fontStyle + + + + + name + SASS variable + scope + variable.other.sass + settings + + foreground + #94e2d5 + fontStyle + + + + + name + Invalid + scope + invalid + settings + + foreground + #cdd6f4 + background + #f38ba8 + fontStyle + + + + + name + Invalid deprecated + scope + invalid.deprecated + settings + + foreground + #cdd6f4 + background + #cba6f7 + fontStyle + + + + + name + Diff header + scope + meta.diff, meta.diff.header + settings + + foreground + #6c7086 + fontStyle + + + + + name + Diff deleted + scope + markup.deleted + settings + + foreground + #f38ba8 + fontStyle + + + + + name + Diff inserted + scope + markup.inserted + settings + + foreground + #a6e3a1 + fontStyle + + + + + name + Diff changed + scope + markup.changed + settings + + foreground + #f9e2af + fontStyle + + + + + name + Message error + scope + message.error + settings + + foreground + #f38ba8 + fontStyle + + + + + uuid + 4d0379b5-ef82-467b-b8b8-365889420646 + colorSpaceName + sRGB + semanticClass + theme.dark.Catppuccin + author + BrunDerSchwarzmagier + + diff --git a/.config/btop/btop.conf b/.config/btop/btop.conf new file mode 100644 index 00000000..fb645634 --- /dev/null +++ b/.config/btop/btop.conf @@ -0,0 +1,212 @@ +#? Config file for btop v. 1.2.13 + +#* Name of a btop++/bpytop/bashtop formatted ".theme" file, "Default" and "TTY" for builtin themes. +#* Themes should be placed in "../share/btop/themes" relative to binary or "$HOME/.config/btop/themes" +color_theme = "catppuccin_macchiato" + +#* If the theme set background should be shown, set to False if you want terminal background transparency. +theme_background = False + +#* Sets if 24-bit truecolor should be used, will convert 24-bit colors to 256 color (6x6x6 color cube) if false. +truecolor = True + +#* Set to true to force tty mode regardless if a real tty has been detected or not. +#* Will force 16-color mode and TTY theme, set all graph symbols to "tty" and swap out other non tty friendly symbols. +force_tty = False + +#* Define presets for the layout of the boxes. Preset 0 is always all boxes shown with default settings. Max 9 presets. +#* Format: "box_name:P:G,box_name:P:G" P=(0 or 1) for alternate positions, G=graph symbol to use for box. +#* Use whitespace " " as separator between different presets. +#* Example: "cpu:0:default,mem:0:tty,proc:1:default cpu:0:braille,proc:0:tty" +presets = "cpu:1:default,proc:0:default cpu:0:default,mem:0:default,net:0:default cpu:0:block,net:0:tty" + +#* Set to True to enable "h,j,k,l,g,G" keys for directional control in lists. +#* Conflicting keys for h:"help" and k:"kill" is accessible while holding shift. +vim_keys = False + +#* Rounded corners on boxes, is ignored if TTY mode is ON. +rounded_corners = True + +#* Default symbols to use for graph creation, "braille", "block" or "tty". +#* "braille" offers the highest resolution but might not be included in all fonts. +#* "block" has half the resolution of braille but uses more common characters. +#* "tty" uses only 3 different symbols but will work with most fonts and should work in a real TTY. +#* Note that "tty" only has half the horizontal resolution of the other two, so will show a shorter historical view. +graph_symbol = "braille" + +# Graph symbol to use for graphs in cpu box, "default", "braille", "block" or "tty". +graph_symbol_cpu = "default" + +# Graph symbol to use for graphs in cpu box, "default", "braille", "block" or "tty". +graph_symbol_mem = "default" + +# Graph symbol to use for graphs in cpu box, "default", "braille", "block" or "tty". +graph_symbol_net = "default" + +# Graph symbol to use for graphs in cpu box, "default", "braille", "block" or "tty". +graph_symbol_proc = "default" + +#* Manually set which boxes to show. Available values are "cpu mem net proc", separate values with whitespace. +shown_boxes = "cpu mem net proc" + +#* Update time in milliseconds, recommended 2000 ms or above for better sample times for graphs. +update_ms = 200 + +#* Processes sorting, "pid" "program" "arguments" "threads" "user" "memory" "cpu lazy" "cpu direct", +#* "cpu lazy" sorts top process over time (easier to follow), "cpu direct" updates top process directly. +proc_sorting = "memory" + +#* Reverse sorting order, True or False. +proc_reversed = False + +#* Show processes as a tree. +proc_tree = False + +#* Use the cpu graph colors in the process list. +proc_colors = True + +#* Use a darkening gradient in the process list. +proc_gradient = True + +#* If process cpu usage should be of the core it's running on or usage of the total available cpu power. +proc_per_core = False + +#* Show process memory as bytes instead of percent. +proc_mem_bytes = True + +#* Show cpu graph for each process. +proc_cpu_graphs = True + +#* Use /proc/[pid]/smaps for memory information in the process info box (very slow but more accurate) +proc_info_smaps = False + +#* Show proc box on left side of screen instead of right. +proc_left = False + +#* (Linux) Filter processes tied to the Linux kernel(similar behavior to htop). +proc_filter_kernel = False + +#* Sets the CPU stat shown in upper half of the CPU graph, "total" is always available. +#* Select from a list of detected attributes from the options menu. +cpu_graph_upper = "total" + +#* Sets the CPU stat shown in lower half of the CPU graph, "total" is always available. +#* Select from a list of detected attributes from the options menu. +cpu_graph_lower = "total" + +#* Toggles if the lower CPU graph should be inverted. +cpu_invert_lower = True + +#* Set to True to completely disable the lower CPU graph. +cpu_single_graph = False + +#* Show cpu box at bottom of screen instead of top. +cpu_bottom = False + +#* Shows the system uptime in the CPU box. +show_uptime = True + +#* Show cpu temperature. +check_temp = True + +#* Which sensor to use for cpu temperature, use options menu to select from list of available sensors. +cpu_sensor = "Auto" + +#* Show temperatures for cpu cores also if check_temp is True and sensors has been found. +show_coretemp = True + +#* Set a custom mapping between core and coretemp, can be needed on certain cpus to get correct temperature for correct core. +#* Use lm-sensors or similar to see which cores are reporting temperatures on your machine. +#* Format "x:y" x=core with wrong temp, y=core with correct temp, use space as separator between multiple entries. +#* Example: "4:0 5:1 6:3" +cpu_core_map = "" + +#* Which temperature scale to use, available values: "celsius", "fahrenheit", "kelvin" and "rankine". +temp_scale = "celsius" + +#* Use base 10 for bits/bytes sizes, KB = 1000 instead of KiB = 1024. +base_10_sizes = False + +#* Show CPU frequency. +show_cpu_freq = True + +#* Draw a clock at top of screen, formatting according to strftime, empty string to disable. +#* Special formatting: /host = hostname | /user = username | /uptime = system uptime +clock_format = "%X" + +#* Update main ui in background when menus are showing, set this to false if the menus is flickering too much for comfort. +background_update = True + +#* Custom cpu model name, empty string to disable. +custom_cpu_name = "" + +#* Optional filter for shown disks, should be full path of a mountpoint, separate multiple values with whitespace " ". +#* Begin line with "exclude=" to change to exclude filter, otherwise defaults to "most include" filter. Example: disks_filter="exclude=/boot /home/user". +disks_filter = "" + +#* Show graphs instead of meters for memory values. +mem_graphs = True + +#* Show mem box below net box instead of above. +mem_below_net = False + +#* Count ZFS ARC in cached and available memory. +zfs_arc_cached = True + +#* If swap memory should be shown in memory box. +show_swap = False + +#* Show swap as a disk, ignores show_swap value above, inserts itself after first disk. +swap_disk = False + +#* If mem box should be split to also show disks info. +show_disks = True + +#* Filter out non physical disks. Set this to False to include network disks, RAM disks and similar. +only_physical = True + +#* Read disks list from /etc/fstab. This also disables only_physical. +use_fstab = True + +#* Setting this to True will hide all datasets, and only show ZFS pools. (IO stats will be calculated per-pool) +zfs_hide_datasets = False + +#* Set to true to show available disk space for privileged users. +disk_free_priv = False + +#* Toggles if io activity % (disk busy time) should be shown in regular disk usage view. +show_io_stat = True + +#* Toggles io mode for disks, showing big graphs for disk read/write speeds. +io_mode = False + +#* Set to True to show combined read/write io graphs in io mode. +io_graph_combined = False + +#* Set the top speed for the io graphs in MiB/s (100 by default), use format "mountpoint:speed" separate disks with whitespace " ". +#* Example: "/mnt/media:100 /:20 /boot:1". +io_graph_speeds = "" + +#* Set fixed values for network graphs in Mebibits. Is only used if net_auto is also set to False. +net_download = 100 + +net_upload = 100 + +#* Use network graphs auto rescaling mode, ignores any values set above and rescales down to 10 Kibibytes at the lowest. +net_auto = True + +#* Sync the auto scaling for download and upload to whichever currently has the highest scale. +net_sync = True + +#* Starts with the Network Interface specified here. +net_iface = "" + +#* Show battery stats in top right if battery is present. +show_battery = True + +#* Which battery to use if multiple are present. "Auto" for auto detection. +selected_battery = "Auto" + +#* Set loglevel for "~/.config/btop/btop.log" levels are: "ERROR" "WARNING" "INFO" "DEBUG". +#* The level set includes all lower levels, i.e. "DEBUG" will show all logging info. +log_level = "WARNING" \ No newline at end of file diff --git a/.config/btop/btop.log b/.config/btop/btop.log new file mode 100644 index 00000000..6a4a0547 --- /dev/null +++ b/.config/btop/btop.log @@ -0,0 +1,64 @@ + +2022/08/29 (18:12:02) | ===> btop++ v.1.2.9 +2022/08/29 (18:12:02) | ERROR: Invalid RGB decimal value: "ba1a84" + +2022/08/30 (14:36:00) | ===> btop++ v.1.2.9 +2022/08/30 (14:36:00) | ERROR: Invalid RGB decimal value: "ba1a84" + +2022/09/01 (15:40:25) | ===> btop++ v.1.2.9 +2022/09/01 (15:40:25) | ERROR: No tty detected! +btop++ needs an interactive shell to run. + +2022/09/01 (15:41:22) | ===> btop++ v.1.2.9 +2022/09/01 (15:41:22) | ERROR: No tty detected! +btop++ needs an interactive shell to run. + +2022/09/01 (15:41:25) | ===> btop++ v.1.2.9 +2022/09/01 (15:41:25) | ERROR: No tty detected! +btop++ needs an interactive shell to run. + +2022/09/01 (15:41:25) | ===> btop++ v.1.2.9 +2022/09/01 (15:41:25) | ERROR: No tty detected! +btop++ needs an interactive shell to run. + +2022/09/01 (15:41:26) | ===> btop++ v.1.2.9 +2022/09/01 (15:41:26) | ERROR: No tty detected! +btop++ needs an interactive shell to run. + +2022/09/08 (13:31:49) | ===> btop++ v.1.2.9 +2022/09/08 (13:31:49) | ERROR: Invalid RGB decimal value: "ba1a84" +2022/09/08 (13:31:50) | ERROR: Invalid RGB decimal value: "ba1a84" + +2022/10/21 (09:57:37) | ===> btop++ v.1.2.12 +2022/10/21 (09:57:37) | ERROR: No tty detected! +btop++ needs an interactive shell to run. + +2022/10/21 (09:57:39) | ===> btop++ v.1.2.12 +2022/10/21 (09:57:39) | ERROR: No tty detected! +btop++ needs an interactive shell to run. + +2022/10/31 (09:25:17) | ===> btop++ v.1.2.12 +2022/10/31 (09:25:17) | ERROR: Stall in Runner thread, restarting! + +2022/12/12 (01:13:00) | ===> btop++ v.1.2.13 +2022/12/12 (01:13:00) | INFO: Logger set to INFO + +2022/12/27 (22:55:42) | ===> btop++ v.1.2.13 +2022/12/27 (22:55:42) | ERROR: Stall in Runner thread, restarting! + +2023/02/13 (10:42:33) | ===> btop++ v.1.2.13 +2023/02/13 (10:42:33) | ERROR: Stall in Runner thread, restarting! + +2023/02/13 (10:42:33) | ===> btop++ v.1.2.13 +2023/02/13 (10:42:33) | ERROR: Stall in Runner thread, restarting! +2023/02/13 (10:42:39) | ERROR: Stall in Runner thread, restarting! +2023/02/13 (10:42:46) | ERROR: Stall in Runner thread, restarting! +2023/02/13 (10:42:46) | ERROR: Stall in Runner thread, restarting! +2023/02/13 (10:42:51) | ERROR: Stall in Runner thread, restarting! +2023/02/13 (10:42:52) | ERROR: Stall in Runner thread, restarting! +2023/02/13 (10:43:12) | ERROR: Stall in Runner thread, restarting! +2023/02/13 (11:39:33) | ERROR: Stall in Runner thread, restarting! +2023/02/13 (11:39:38) | ERROR: Stall in Runner thread, restarting! + +2023/02/20 (00:20:11) | ===> btop++ v.1.2.13 +2023/02/20 (00:20:11) | ERROR: Stall in Runner thread, restarting! diff --git a/.config/btop/themes/catppuccin_macchiato.theme b/.config/btop/themes/catppuccin_macchiato.theme new file mode 100644 index 00000000..7abd0bf4 --- /dev/null +++ b/.config/btop/themes/catppuccin_macchiato.theme @@ -0,0 +1,42 @@ +theme[main_bg]="#24273A" +theme[main_fg]="#CAD3F5" +theme[title]="#CAD3F5" +theme[hi_fg]="#8AADF4" +theme[selected_bg]="#494D64" +theme[selected_fg]="#8AADF4" +theme[inactive_fg]="#8087A2" +theme[graph_text]="#F4DBD6" +theme[meter_bg]="#494D64" +theme[proc_misc]="#F4DBD6" +theme[cpu_box]="#7DC4E4" +theme[mem_box]="#A6DA95" +theme[net_box]="#C6A0F6" +theme[proc_box]="#F0C6C6" +theme[div_line]="#6E738D" +theme[temp_start]="#EED49F" +theme[temp_mid]="#F5A97F" +theme[temp_end]="#ED8796" +theme[cpu_start]="#7DC4E4" +theme[cpu_mid]="#91D7E3" +theme[cpu_end]="#8BD5CA" +theme[free_start]="#8BD5CA" +theme[free_mid]="#8BD5CA" +theme[free_end]="#A6DA95" +theme[cached_start]="#F5BDE6" +theme[cached_mid]="#F5BDE6" +theme[cached_end]="#C6A0F6" +theme[available_start]="#F4DBD6" +theme[available_mid]="#F0C6C6" +theme[available_end]="#F0C6C6" +theme[used_start]="#F5A97F" +theme[used_mid]="#F5A97F" +theme[used_end]="#ED8796" +theme[download_start]="#B7BDF8" +theme[download_mid]="#B7BDF8" +theme[download_end]="#C6A0F6" +theme[upload_start]="#B7BDF8" +theme[upload_mid]="#B7BDF8" +theme[upload_end]="#C6A0F6" +theme[process_start]="#7DC4E4" +theme[process_mid]="#91D7E3" +theme[process_end]="#8BD5CA" diff --git a/.config/cava/config b/.config/cava/config new file mode 100644 index 00000000..2f9aacb4 --- /dev/null +++ b/.config/cava/config @@ -0,0 +1,196 @@ +## Configuration file for CAVA. Default values are commented out. Use either ';' or '#' for commenting. + + +[general] + +# Smoothing mode. Can be 'normal', 'scientific' or 'waves'. DEPRECATED as of 0.6.0 +; mode = normal + +# Accepts only non-negative values. +framerate = 75 + +# 'autosens' will attempt to decrease sensitivity if the bars peak. 1 = on, 0 = off +# new as of 0.6.0 autosens of low values (dynamic range) +# 'overshoot' allows bars to overshoot (in % of terminal height) without initiating autosens. DEPRECATED as of 0.6.0 +;autosens = 1 +;overshoot = 20 + +# Manual sensitivity in %. If autosens is enabled, this will only be the initial value. +# 200 means double height. Accepts only non-negative values. +;sensitivity = 200 + +# The number of bars (0-200). 0 sets it to auto (fill up console). +# Bars' width and space between bars in number of characters. +;bars = 0 +;bar_width = 6 +;bar_spacing = 1 +# bar_height is only used for output in "noritake" format +; bar_height = 32 + +# For SDL width and space between bars is in pixels, defaults are: +; bar_width = 20 +; bar_spacing = 5 + + +# Lower and higher cutoff frequencies for lowest and highest bars +# the bandwidth of the visualizer. +# Note: there is a minimum total bandwidth of 43Mhz x number of bars. +# Cava will automatically increase the higher cutoff if a too low band is specified. +; lower_cutoff_freq = 50 +; higher_cutoff_freq = 10000 + + +# Seconds with no input before cava goes to sleep mode. Cava will not perform FFT or drawing and +# only check for input once per second. Cava will wake up once input is detected. 0 = disable. +; sleep_timer = 0 + + +[input] + +# Audio capturing method. Possible methods are: 'pulse', 'alsa', 'fifo', 'sndio' or 'shmem' +# Defaults to 'pulse', 'alsa' or 'fifo', in that order, dependent on what support cava was built with. +# +# All input methods uses the same config variable 'source' +# to define where it should get the audio. +# +# For pulseaudio 'source' will be the source. Default: 'auto', which uses the monitor source of the default sink +# (all pulseaudio sinks(outputs) have 'monitor' sources(inputs) associated with them). +# +# For alsa 'source' will be the capture device. +# For fifo 'source' will be the path to fifo-file. +# For shmem 'source' will be /squeezelite-AA:BB:CC:DD:EE:FF where 'AA:BB:CC:DD:EE:FF' will be squeezelite's MAC address +method = pulse +source = auto + +; method = alsa +; source = hw:Loopback,1 + +; method = fifo +; source = /tmp/mpd.fifo +; sample_rate = 44100 +; sample_bits = 16 + +; method = shmem +; source = /squeezelite-AA:BB:CC:DD:EE:FF + +; method = portaudio +; source = auto + + +[output] + +# Output method. Can be 'ncurses', 'noncurses', 'raw', 'noritake' or 'sdl'. +# 'noncurses' uses a custom framebuffer technique and prints only changes +# from frame to frame in the terminal. 'ncurses' is default if supported. +# +# 'raw' is an 8 or 16 bit (configurable via the 'bit_format' option) data +# stream of the bar heights that can be used to send to other applications. +# 'raw' defaults to 200 bars, which can be adjusted in the 'bars' option above. +# +# 'noritake' outputs a bitmap in the format expected by a Noritake VFD display +# in graphic mode. It only support the 3000 series graphical VFDs for now. +# +# 'sdl' uses the Simple DirectMedia Layer to render in a graphical context. +; method = ncurses + +# Visual channels. Can be 'stereo' or 'mono'. +# 'stereo' mirrors both channels with low frequencies in center. +# 'mono' outputs left to right lowest to highest frequencies. +# 'mono_option' set mono to either take input from 'left', 'right' or 'average'. +# set 'reverse' to 1 to display frequencies the other way around. +; channels = stereo +; mono_option = average +; reverse = 0 + +# Raw output target. A fifo will be created if target does not exist. +; raw_target = /dev/stdout + +# Raw data format. Can be 'binary' or 'ascii'. +; data_format = binary + +# Binary bit format, can be '8bit' (0-255) or '16bit' (0-65530). +; bit_format = 16bit + +# Ascii max value. In 'ascii' mode range will run from 0 to value specified here +; ascii_max_range = 1000 + +# Ascii delimiters. In ascii format each bar and frame is separated by a delimiters. +# Use decimal value in ascii table (i.e. 59 = ';' and 10 = '\n' (line feed)). +; bar_delimiter = 59 +; frame_delimiter = 10 + +# sdl window size and position. -1,-1 is centered. +; sdl_width = 1000 +; sdl_height = 500 +; sdl_x = -1 +; sdl_y= -1 + +[color] + +# Colors can be one of seven predefined: black, blue, cyan, green, magenta, red, white, yellow. +# Or defined by hex code '#xxxxxx' (hex code must be within ''). User defined colors requires +# ncurses output method and a terminal that can change color definitions such as Gnome-terminal or rxvt. +# if supported, ncurses mode will be forced on if user defined colors are used. +# default is to keep current terminal color +; background = default +; foreground = default + +# SDL only support hex code colors, these are the default: +; background = '#111111' +; foreground = '#33cccc' + + +# Gradient mode, only hex defined colors (and thereby ncurses mode) are supported, +# background must also be defined in hex or remain commented out. 1 = on, 0 = off. +# You can define as many as 8 different colors. They range from bottom to top of screen + +gradient = 1 + +gradient_color_1 = '#8bd5ca' +gradient_color_2 = '#91d7e3' +gradient_color_3 = '#7dc4e4' +gradient_color_4 = '#8aadf4' +gradient_color_5 = '#c6a0f6' +gradient_color_6 = '#f5bde6' +gradient_color_7 = '#ee99a0' +gradient_color_8 = '#ed8796' + +[smoothing] + +# Percentage value for integral smoothing. Takes values from 0 - 100. +# Higher values means smoother, but less precise. 0 to disable. +# DEPRECATED as of 0.8.0, use noise_reduction instead +; integral = 100 + +# Disables or enables the so-called "Monstercat smoothing" with or without "waves". Set to 0 to disable. +; monstercat = 1 +; waves = 1 + +# Set gravity percentage for "drop off". Higher values means bars will drop faster. +# Accepts only non-negative values. 50 means half gravity, 200 means double. Set to 0 to disable "drop off". +# DEPRECATED as of 0.8.0, use noise_reduction instead +; gravity = 100 + + +# In bar height, bars that would have been lower that this will not be drawn. +# DEPRECATED as of 0.8.0 +; ignore = 0 + +# Noise reduction, float 0 - 1. default 0.77 +# the raw visualization is very noisy, this factor adjusts the integral and gravity filters to keep the signal smooth +# 1 will be very slow and smooth, 0 will be fast but noisy. +; noise_reduction = 1 + + +[eq] + +# This one is tricky. You can have as much keys as you want. +# Remember to uncomment more then one key! More keys = more precision. +# Look at readme.md on github for further explanations and examples. +# DEPRECATED as of 0.8.0 can be brought back by popular request, open issue at: +# https://github.com/karlstav/cava +; 1 = 1 # bass +; 2 = 1 +; 3 = 1 # midtone +; 4 = 1 +; 5 = 1 # treble diff --git a/.config/cava/shaders/bar_spectrum.frag b/.config/cava/shaders/bar_spectrum.frag new file mode 100644 index 00000000..b0789132 --- /dev/null +++ b/.config/cava/shaders/bar_spectrum.frag @@ -0,0 +1,79 @@ +#version 330 + +in vec2 fragCoord; +out vec4 fragColor; + +// bar values. defaults to left channels first (low to high), then right (high to low). +uniform float bars[512]; + +uniform int bars_count; // number of bars (left + right) (configurable) +uniform int bar_width; // bar width (configurable), not used here +uniform int bar_spacing; // space bewteen bars (configurable) + +uniform vec3 u_resolution; // window resolution + +//colors, configurable in cava config file (r,g,b) (0.0 - 1.0) +uniform vec3 bg_color; // background color +uniform vec3 fg_color; // foreground color + +uniform int gradient_count; +uniform vec3 gradient_colors[8]; // gradient colors + +vec3 normalize_C(float y,vec3 col_1, vec3 col_2, float y_min, float y_max) +{ + //create color based on fraction of this color and next color + float yr = (y - y_min) / (y_max - y_min); + return col_1 * (1.0 - yr) + col_2 * yr; +} + +void main() +{ + // find which bar to use based on where we are on the x axis + float x = u_resolution.x * fragCoord.x; + int bar = int(bars_count * fragCoord.x); + + //calculate a bar size + float bar_size = u_resolution.x / bars_count; + + //the y coordinate and bar values are the same + float y = bars[bar]; + + // make sure there is a thin line at bottom + if (y * u_resolution.y < 1.0) + { + y = 1.0 / u_resolution.y; + } + + //draw the bar up to current height + if (y > fragCoord.y) + { + //make some space between bars basen on settings + if (x > (bar + 1) * (bar_size) - bar_spacing) + { + fragColor = vec4(bg_color,1.0); + } + else + { + if (gradient_count == 0) + { + fragColor = vec4(fg_color,1.0); + } + else + { + //find which color in the configured gradient we are at + int color = int((gradient_count - 1) * fragCoord.y); + + //find where on y this and next color is supposed to be + float y_min = color / (gradient_count - 1.0); + float y_max = (color + 1.0) / (gradient_count - 1.0); + + //make color + fragColor = vec4(normalize_C(fragCoord.y, gradient_colors[color], gradient_colors[color + 1], y_min, y_max), 1.0); + } + } + } + else + { + fragColor = vec4(bg_color,1.0); + } +} \ No newline at end of file diff --git a/.config/cava/shaders/normalized_bars.frag b/.config/cava/shaders/normalized_bars.frag new file mode 100644 index 00000000..81a27e2d --- /dev/null +++ b/.config/cava/shaders/normalized_bars.frag @@ -0,0 +1,38 @@ +#version 330 + +in vec2 fragCoord; +out vec4 fragColor; + +// bar values. defaults to left channels first (low to high), then right (high to low). +uniform float bars[512]; + +uniform int bars_count; // number of bars (left + right) (configurable) + +uniform vec3 u_resolution; // window resolution, not used here + +//colors, configurable in cava config file +uniform vec3 bg_color; // background color(r,g,b) (0.0 - 1.0), not used here +uniform vec3 fg_color; // foreground color, not used here + +float normalize_C(float x, float x_min, float x_max, float r_min, float r_max ) +{ + float xr; + xr = (r_max-r_min) * (x - x_min) / (x_max - x_min) + r_min; + return xr; +} + +void main() +{ + // find which bar to use based on where we are on the x axis + int bar = int(bars_count * fragCoord.x); + + // create a normal along the y axis based on the bar height + float x = normalize_C(fragCoord.y, 1.0, 0.0, 0.0, bars[bar]); + + // set color + fragColor.r=fg_color.x*x; + fragColor.g=fg_color.y*x; + fragColor.b=fg_color.z*x; + fragColor.a=1.0; + +} diff --git a/.config/cava/shaders/pass_through.vert b/.config/cava/shaders/pass_through.vert new file mode 100644 index 00000000..a4f20e52 --- /dev/null +++ b/.config/cava/shaders/pass_through.vert @@ -0,0 +1,14 @@ +#version 330 + + +// Input vertex data, different for all executions of this shader. +layout(location = 0) in vec3 vertexPosition_modelspace; + +// Output data ; will be interpolated for each fragment. +out vec2 fragCoord; + +void main() +{ + gl_Position = vec4(vertexPosition_modelspace,1); + fragCoord = (vertexPosition_modelspace.xy+vec2(1,1))/2.0; +} diff --git a/.config/hypr/keybinds/binds.conf b/.config/hypr/keybinds/binds.conf index 58bfabf5..1fab627b 100644 --- a/.config/hypr/keybinds/binds.conf +++ b/.config/hypr/keybinds/binds.conf @@ -18,7 +18,7 @@ bind=SUPER,RETURN,exec,kitty # Launchers bind=SUPER,space,exec, wofi -bind=SUPER, 23, exec, ~/.config/rofi/launchers/type-5/launcher.sh +bind=SUPER, 23, exec, rofi -show drun -theme ~/.config/rofi/style.rasi # Screenshotting bind=,Print,exec,~/.config/hypr/scripts/screenshot diff --git a/.config/keyb/config.yml b/.config/keyb/config.yml new file mode 100644 index 00000000..9e47e9ac --- /dev/null +++ b/.config/keyb/config.yml @@ -0,0 +1,43 @@ +settings: + keyb_path: /home/matt/.config/keyb/default.yml + debug: false + reverse: false + mouse: true + search_mode: false + sort_keys: true + title: "" + prompt: "> " + prompt_location: top + placeholder: "" + prefix_sep: ; + sep_width: 4 + margin: 0 + padding: 1 + border: hidden +color: + prompt: "" + cursor_fg: "" + cursor_bg: "#626880" + filter_fg: "#ef9f76" + filter_bg: "" + counter_fg: "#8caaee" + counter_bg: "" + placeholder_fg: "#8caaee" + placeholder_bg: "" + border_color: "" +keys: + quit: ctrl+c + up: k, up + down: j, down + half_up: ctrl+u + half_down: ctrl+d + full_up: ctrl+up + full_bottom: ctrl+down + first_line: g + last_line: G + top: ctrl+b + middle: M + bottom: ctrl+f + search: / + clear_search: q + normal: enter diff --git a/.config/keyb/default.yml b/.config/keyb/default.yml new file mode 100644 index 00000000..0e0c4966 --- /dev/null +++ b/.config/keyb/default.yml @@ -0,0 +1,323 @@ +- name: WM Apps/Widgets + keybinds: + - name: Web Browser (Librewolf) + key: WIN + . + - name: File Manager (Thunar) + key: WIN + 0 Numpad + - name: Text Editor (VSCodium) + key: WIN + BackSpace + - name: Mail Client (Thunderbird) + key: WIN + 1 Numpad + - name: Notes Application (Notion) + key: WIN + 2 Numpad + - name: Office Suite (LibreOffice) + key: WIN + 3 Numpad + - name: Video Recorder (OBS) + key: WIN + 4 Numpad + - name: Sound Control Panel (Pavucontrol) + key: WIN + 5 Numpad + - name: Chat App (Discord) + key: WIN + 7 Numpad + - name: Games Store/Launcher (Steam) + key: WIN + 8 Numpad + - name: Games Store/Launcher (Heroic) + key: WIN + 9 Numpad + - name: Music App (Spotify) + key: WIN + º + - name: Application Launcher (Rofi) + key: WIN + TAB + - name: Client Switcher (Rofi) + key: ALT + TAB + - name: Power Menu (Awesome Widget) + key: WIN + ESC + - name: Screenshot Program (Rofi) + key: ImpaPant + + +- name: WM Layouts + keybinds: + - name: Floating + key: Control + WIN + 0 Numpad + - name: Magnifier + key: Control + WIN + 5 Numpad + - name: Tiling Right + key: Control + WIN + 6 Numpad + - name: Tiling Left + key: Control + WIN + 4 Numpad + - name: Tiling Top + key: Control + WIN + 8 Numpad + - name: Tiling Bottom + key: Control + WIN + 2 Numpad + + +- name: WM Windows/Tags + keybinds: + - name: Right Tag + key: WIN + Right Arrow + - name: Left Tag + key: WIN + Left Arrow + - name: Increase Right Width + key: WIN + / + - name: Increase Left Width + key: WIN + * + - name: Increase Number Of Columns + key: WIN + + + - name: Decrease Number Of Columns + key: WIN + - + - name: Decrease Number Of Columns + key: WIN + - + - name: Move Window To X Tag + key: WIN + 1/2/3/4 + - name: Fullscreen Window + key: WIN + f + - name: Maximize Window + key: WIN + m + - name: Minimize Window + key: WIN + n + - name: Toggle Floating Window + key: WIN + a + - name: Close Window + key: Control + q + + +- name: WM Misc. + keybinds: + - name: Pause/Play + key: WIN + F7 | WIN + Left-Big Mouse Button + - name: Mute + key: WIN + FN + - name: Raise Volume + key: WIN + F11 | WIN + Left-Up Mouse Button + - name: Lower Volume + key: WIN + F10 | WIN + Left-Down Mouse Button + - name: Start Compositor (Picom) + key: WIN + Inicio + - name: Kill Compositor (Picom) + key: WIN + Fin + - name: Restart WM (AwesomeWM) + key: Control + WIN + r + + +- name: Web Browser (Librewolf) + keybinds: + - name: Focus on URL + key: F6 + - name: Restart Page + key: F5 + - name: New Tab + key: Control + t + - name: New Window + key: Control + n + - name: Watch History + key: Control + h + - name: Cycle Through Recent Tabs + key: Control + TAB + - name: Zoom In + key: Control + + + - name: Zoom Out + key: Control + - + - name: Search For An Specific Word + key: Control + f + - name: Toggle Bookmarks + key: Control + Shift + b + + +- name: Text Editor (VSCodium) + keybinds: + - name: Save + key: Control + s + - name: Toggle Command Box + key: Control + Shift + p + - name: Format Document + key: Control + WIN + + + - name: Open Live Server + key: Control + 1 + - name: New File + key: Control + n + - name: Go To Definition + key: F12 + - name: Search For + key: Control + f + - name: Search And Replace + key: Control + h + - name: Go To Line + key: Control + g + - name: Zoom In + key: Control + + + - name: Zoom Out + key: Control + - + - name: Cycle Through Recent Tabs + key: Control + TAB + - name: Toggle Zen Mode + key: Control + F11 + - name: Toggle Lateral Bar + key: Control + b + - name: Toggle Lateral Menu + key: Control + ç + - name: Toggle Status Menu + key: Control + Shift + ç + - name: Toggle Bookmark + key: Control + Shift + m + + +- name: File Manager (Thunar) + keybinds: + - name: Focus on URL + key: Control + l + - name: New Folder + key: Control + Shift + n + - name: New Tab + key: Control + t + - name: New Window + key: Control + n + - name: Properties Of The Folder + key: Alt + Enter + - name: Rename File + key: F2 + - name: Bookmarks + key: Control + b + - name: Tree Bar + key: Control + e + - name: Zoom In + key: Control + + + - name: Zoom Out + key: Control + - + - name: Menu Tab + key: Control + m + + +- name: PDF Reader (Zathura) + keybinds: + - name: Toggle Statusbar + key: a + - name: Page Down + key: RePag + - name: Page Up + key: AvPag + - name: Rotate + key: r + - name: Switch Theme + key: Control + r + - name: Zoom In + key: Control + Mouse Wheel + - name: Zoom Out + key: Control + Mouse Wheel + + +- name: Office Suite (LibreOffice) + keybinds: + - name: Bold Text + key: Control + b + - name: Italic Text + key: Control + i + - name: Underline Text + key: Control + u + - name: Zoom In + key: Control + + + - name: Zoom Out + key: Control + - + - name: Select All + key: Control + e + - name: Save + key: Control + s + - name: Table + key: Control + F12 + - name: Hiperlink + key: Control + Alt + k + - name: Toggle Side Bar + key: Control + x + - name: Toggle Status Bar + key: Control + w + - name: Toggle Menu Bar + key: Control + p + + +- name: Notes Application (Notion) + keybinds: + - name: Save + key: Control + s + - name: Search Pages + key: Control + p + - name: New Page + key: Control + n + - name: New Tab + key: Control + t + - name: Create Comment + key: Control + Shift + m + - name: Bold Text + key: Control + b + - name: Italic Text + key: Control + i + - name: Underline Text + key: Control + u + - name: Zoom In + key: Control + Mouse Wheel + - name: Zoom Out + key: Control + Mouse Wheel + - name: Create Text + key: Control + Shift + 0 + - name: Create H1 + key: Control + Shift + 1 + - name: Create H2 + key: Control + Shift + 2 + - name: Create H3 + key: Control + Shift + 3 + - name: Create CheckBox + key: Control + Shift + 4 + - name: Create Bulleted List + key: Control + Shift + 5 + - name: Create Numbered List + key: Control + Shift + 6 + - name: Create Toggle List + key: Control + Shift + 7 + - name: Create Code Block + key: Control + Shift + 8 + - name: Create Turn + key: Control + Shift + 9 + - name: Open Plugin Options + key: Control + Alt + e + +- name: Email Client (Thunderbird) + keybinds: + - name: Mark As Read + key: Shift + c + - name: Search Pages + key: Control + p + - name: New Page + key: Control + n + - name: New Tab + key: Control + t + - name: Create Comment + key: Control + Shift + m + - name: Bold Text + key: Control + b + - name: Italic Text + key: Control + i + - name: Underline Text + key: Control + u + - name: Zoom In + key: Control + Mouse Wheel + - name: Zoom Out + key: Control + Mouse Wheel + - name: Create Text + key: Control + Shift + 0 + - name: Create H1 + key: Control + Shift + 1 + - name: Create H2 + key: Control + Shift + 2 + - name: Create H3 + key: Control + Shift + 3 + - name: Create CheckBox + key: Control + Shift + 4 + - name: Create Bulleted List + key: Control + Shift + 5 + - name: Create Numbered List + key: Control + Shift + 6 + - name: Create Toggle List + key: Control + Shift + 7 + - name: Create Code Block + key: Control + Shift + 8 + - name: Create Turn + key: Control + Shift + 9 + - name: Open Plugin Options + key: Control + Alt + e \ No newline at end of file diff --git a/.config/kitty/kitty.conf b/.config/kitty/kitty.conf new file mode 100644 index 00000000..8770e662 --- /dev/null +++ b/.config/kitty/kitty.conf @@ -0,0 +1,2221 @@ +# vim:fileencoding=utf-8:foldmethod=marker + +#: Fonts {{{ + +#: kitty has very powerful font management. You can configure +#: individual font faces and even specify special fonts for particular +#: characters. + +font_family JetBrains Mono Light +bold_font auto +italic_font auto +bold_italic_font auto + +#: You can specify different fonts for the bold/italic/bold-italic +#: variants. To get a full list of supported fonts use the `kitty +#: +list-fonts` command. By default they are derived automatically, by +#: the OSes font system. When bold_font or bold_italic_font is set to +#: auto on macOS, the priority of bold fonts is semi-bold, bold, +#: heavy. Setting them manually is useful for font families that have +#: many weight variants like Book, Medium, Thick, etc. For example:: + +#: font_family Operator Mono Book +#: bold_font Operator Mono Medium +#: italic_font Operator Mono Book Italic +#: bold_italic_font Operator Mono Medium Italic + +font_size 11.0 + +#: Font size (in pts) + +force_ltr no + +#: kitty does not support BIDI (bidirectional text), however, for RTL +#: scripts, words are automatically displayed in RTL. That is to say, +#: in an RTL script, the words "HELLO WORLD" display in kitty as +#: "WORLD HELLO", and if you try to select a substring of an RTL- +#: shaped string, you will get the character that would be there had +#: the the string been LTR. For example, assuming the Hebrew word +#: ירושלים, selecting the character that on the screen appears to be ם +#: actually writes into the selection buffer the character י. kitty's +#: default behavior is useful in conjunction with a filter to reverse +#: the word order, however, if you wish to manipulate RTL glyphs, it +#: can be very challenging to work with, so this option is provided to +#: turn it off. Furthermore, this option can be used with the command +#: line program GNU FriBidi +#: to get BIDI +#: support, because it will force kitty to always treat the text as +#: LTR, which FriBidi expects for terminals. + +adjust_line_height 0 +adjust_column_width 0 + +#: Change the size of each character cell kitty renders. You can use +#: either numbers, which are interpreted as pixels or percentages +#: (number followed by %), which are interpreted as percentages of the +#: unmodified values. You can use negative pixels or percentages less +#: than 100% to reduce sizes (but this might cause rendering +#: artifacts). + +adjust_baseline 0 + +#: Adjust the vertical alignment of text (the height in the cell at +#: which text is positioned). You can use either numbers, which are +#: interpreted as pixels or percentages (number followed by %), which +#: are interpreted as the percentage of the line height. A positive +#: value moves the baseline up, and a negative value moves them down. +#: The underline and strikethrough positions are adjusted accordingly. + +# symbol_map + +#: E.g. symbol_map U+E0A0-U+E0A3,U+E0C0-U+E0C7 PowerlineSymbols + +#: Map the specified Unicode codepoints to a particular font. Useful +#: if you need special rendering for some symbols, such as for +#: Powerline. Avoids the need for patched fonts. Each Unicode code +#: point is specified in the form `U+`. You +#: can specify multiple code points, separated by commas and ranges +#: separated by hyphens. This option can be specified multiple times. +#: The syntax is:: + +#: symbol_map codepoints Font Family Name + +# narrow_symbols + +#: E.g. narrow_symbols U+E0A0-U+E0A3,U+E0C0-U+E0C7 1 + +#: Usually, for Private Use Unicode characters and some symbol/dingbat +#: characters, if the character is followed by one or more spaces, +#: kitty will use those extra cells to render the character larger, if +#: the character in the font has a wide aspect ratio. Using this +#: option you can force kitty to restrict the specified code points to +#: render in the specified number of cells (defaulting to one cell). +#: This option can be specified multiple times. The syntax is:: + +#: narrow_symbols codepoints [optionally the number of cells] + +disable_ligatures never + +#: Choose how you want to handle multi-character ligatures. The +#: default is to always render them. You can tell kitty to not render +#: them when the cursor is over them by using cursor to make editing +#: easier, or have kitty never render them at all by using always, if +#: you don't like them. The ligature strategy can be set per-window +#: either using the kitty remote control facility or by defining +#: shortcuts for it in kitty.conf, for example:: + +#: map alt+1 disable_ligatures_in active always +#: map alt+2 disable_ligatures_in all never +#: map alt+3 disable_ligatures_in tab cursor + +#: Note that this refers to programming ligatures, typically +#: implemented using the calt OpenType feature. For disabling general +#: ligatures, use the font_features option. + +# font_features + +#: E.g. font_features none + +#: Choose exactly which OpenType features to enable or disable. This +#: is useful as some fonts might have features worthwhile in a +#: terminal. For example, Fira Code includes a discretionary feature, +#: zero, which in that font changes the appearance of the zero (0), to +#: make it more easily distinguishable from Ø. Fira Code also includes +#: other discretionary features known as Stylistic Sets which have the +#: tags ss01 through ss20. + +#: For the exact syntax to use for individual features, see the +#: HarfBuzz documentation . + +#: Note that this code is indexed by PostScript name, and not the font +#: family. This allows you to define very precise feature settings; +#: e.g. you can disable a feature in the italic font but not in the +#: regular font. + +#: On Linux, font features are first read from the FontConfig database +#: and then this option is applied, so they can be configured in a +#: single, central place. + +#: To get the PostScript name for a font, use `kitty +list-fonts +#: --psnames`: + +#: .. code-block:: sh + +#: $ kitty +list-fonts --psnames | grep Fira +#: Fira Code +#: Fira Code Bold (FiraCode-Bold) +#: Fira Code Light (FiraCode-Light) +#: Fira Code Medium (FiraCode-Medium) +#: Fira Code Regular (FiraCode-Regular) +#: Fira Code Retina (FiraCode-Retina) + +#: The part in brackets is the PostScript name. + +#: Enable alternate zero and oldstyle numerals:: + +#: font_features FiraCode-Retina +zero +onum + +#: Enable only alternate zero in the bold font:: + +#: font_features FiraCode-Bold +zero + +#: Disable the normal ligatures, but keep the calt feature which (in +#: this font) breaks up monotony:: + +#: font_features TT2020StyleB-Regular -liga +calt + +#: In conjunction with force_ltr, you may want to disable Arabic +#: shaping entirely, and only look at their isolated forms if they +#: show up in a document. You can do this with e.g.:: + +#: font_features UnifontMedium +isol -medi -fina -init + +box_drawing_scale 0.001, 1, 1.5, 2 + +#: The sizes of the lines used for the box drawing Unicode characters. +#: These values are in pts. They will be scaled by the monitor DPI to +#: arrive at a pixel value. There must be four values corresponding to +#: thin, normal, thick, and very thick lines. + +#: }}} + +#: Cursor customization {{{ + +cursor #F4DBD6 + +#: Default cursor color. If set to the special value none the cursor +#: will be rendered with a "reverse video" effect. It's color will be +#: the color of the text in the cell it is over and the text will be +#: rendered with the background color of the cell. Note that if the +#: program running in the terminal sets a cursor color, this takes +#: precedence. Also, the cursor colors are modified if the cell +#: background and foreground colors have very low contrast. + +cursor_text_color #24273A + +#: The color of text under the cursor. If you want it rendered with +#: the background color of the cell underneath instead, use the +#: special keyword: background. Note that if cursor is set to none +#: then this option is ignored. + +cursor_shape block + +#: The cursor shape can be one of block, beam, underline. Note that +#: when reloading the config this will be changed only if the cursor +#: shape has not been set by the program running in the terminal. This +#: sets the default cursor shape, applications running in the terminal +#: can override it. In particular, shell integration +#: in kitty sets +#: the cursor shape to beam at shell prompts. You can avoid this by +#: setting shell_integration to no-cursor. + +cursor_beam_thickness 1.5 + +#: The thickness of the beam cursor (in pts). + +cursor_underline_thickness 2.0 + +#: The thickness of the underline cursor (in pts). + +cursor_blink_interval -1 + +#: The interval to blink the cursor (in seconds). Set to zero to +#: disable blinking. Negative values mean use system default. Note +#: that the minimum interval will be limited to repaint_delay. + +cursor_stop_blinking_after 15.0 + +#: Stop blinking cursor after the specified number of seconds of +#: keyboard inactivity. Set to zero to never stop blinking. + +#: }}} + +#: Scrollback {{{ + +scrollback_lines 2000 + +#: Number of lines of history to keep in memory for scrolling back. +#: Memory is allocated on demand. Negative numbers are (effectively) +#: infinite scrollback. Note that using very large scrollback is not +#: recommended as it can slow down performance of the terminal and +#: also use large amounts of RAM. Instead, consider using +#: scrollback_pager_history_size. Note that on config reload if this +#: is changed it will only affect newly created windows, not existing +#: ones. + +scrollback_pager less --chop-long-lines --RAW-CONTROL-CHARS +INPUT_LINE_NUMBER + +#: Program with which to view scrollback in a new window. The +#: scrollback buffer is passed as STDIN to this program. If you change +#: it, make sure the program you use can handle ANSI escape sequences +#: for colors and text formatting. INPUT_LINE_NUMBER in the command +#: line above will be replaced by an integer representing which line +#: should be at the top of the screen. Similarly CURSOR_LINE and +#: CURSOR_COLUMN will be replaced by the current cursor position or +#: set to 0 if there is no cursor, for example, when showing the last +#: command output. + +scrollback_pager_history_size 0 + +#: Separate scrollback history size (in MB), used only for browsing +#: the scrollback buffer with pager. This separate buffer is not +#: available for interactive scrolling but will be piped to the pager +#: program when viewing scrollback buffer in a separate window. The +#: current implementation stores the data in UTF-8, so approximatively +#: 10000 lines per megabyte at 100 chars per line, for pure ASCII, +#: unformatted text. A value of zero or less disables this feature. +#: The maximum allowed size is 4GB. Note that on config reload if this +#: is changed it will only affect newly created windows, not existing +#: ones. + +scrollback_fill_enlarged_window no + +#: Fill new space with lines from the scrollback buffer after +#: enlarging a window. + +wheel_scroll_multiplier 5.0 + +#: Multiplier for the number of lines scrolled by the mouse wheel. +#: Note that this is only used for low precision scrolling devices, +#: not for high precision scrolling devices on platforms such as macOS +#: and Wayland. Use negative numbers to change scroll direction. See +#: also wheel_scroll_min_lines. + +wheel_scroll_min_lines 1 + +#: The minimum number of lines scrolled by the mouse wheel. The scroll +#: multiplier only takes effect after it +#: reaches this number. Note that this is only used for low precision +#: scrolling devices like wheel mice that scroll by very small amounts +#: when using the wheel. With a negative number, the minimum number of +#: lines will always be added. + +touch_scroll_multiplier 1.0 + +#: Multiplier for the number of lines scrolled by a touchpad. Note +#: that this is only used for high precision scrolling devices on +#: platforms such as macOS and Wayland. Use negative numbers to change +#: scroll direction. + +#: }}} + +#: Mouse {{{ + +mouse_hide_wait 3.0 + +#: Hide mouse cursor after the specified number of seconds of the +#: mouse not being used. Set to zero to disable mouse cursor hiding. +#: Set to a negative value to hide the mouse cursor immediately when +#: typing text. Disabled by default on macOS as getting it to work +#: robustly with the ever-changing sea of bugs that is Cocoa is too +#: much effort. + +url_color #F4DBD6 +url_style curly + +#: The color and style for highlighting URLs on mouse-over. url_style +#: can be one of: none, straight, double, curly, dotted, dashed. + +open_url_with default + +#: The program to open clicked URLs. The special value default means +#: to use the operating system's default URL handler (open on macOS +#: and xdg-open on Linux). + +url_prefixes file ftp ftps gemini git gopher http https irc ircs kitty mailto news sftp ssh + +#: The set of URL prefixes to look for when detecting a URL under the +#: mouse cursor. + +detect_urls yes + +#: Detect URLs under the mouse. Detected URLs are highlighted with an +#: underline and the mouse cursor becomes a hand over them. Even if +#: this option is disabled, URLs are still clickable. + +# url_excluded_characters + +#: Additional characters to be disallowed from URLs, when detecting +#: URLs under the mouse cursor. By default, all characters that are +#: legal in URLs are allowed. + +copy_on_select no + +#: Copy to clipboard or a private buffer on select. With this set to +#: clipboard, selecting text with the mouse will cause the text to be +#: copied to clipboard. Useful on platforms such as macOS that do not +#: have the concept of primary selection. You can instead specify a +#: name such as a1 to copy to a private kitty buffer. Map a shortcut +#: with the paste_from_buffer action to paste from this private +#: buffer. For example:: + +#: copy_on_select a1 +#: map shift+cmd+v paste_from_buffer a1 + +#: Note that copying to the clipboard is a security risk, as all +#: programs, including websites open in your browser can read the +#: contents of the system clipboard. + +paste_actions quote-urls-at-prompt + +#: A comma separated list of actions to take when pasting text into +#: the terminal. The supported paste actions are: + +#: quote-urls-at-prompt: +#: If the text being pasted is a URL and the cursor is at a shell prompt, +#: automatically quote the URL (needs shell_integration). +#: confirm: +#: Confirm the paste if bracketed paste mode is not active or there is more +#: a large amount of text being pasted. +#: filter: +#: Run the filter_paste() function from the file paste-actions.py in +#: the kitty config directory on the pasted text. The text returned by the +#: function will be actually pasted. + +strip_trailing_spaces never + +#: Remove spaces at the end of lines when copying to clipboard. A +#: value of smart will do it when using normal selections, but not +#: rectangle selections. A value of always will always do it. + +select_by_word_characters @-./_~?&=%+# + +#: Characters considered part of a word when double clicking. In +#: addition to these characters any character that is marked as an +#: alphanumeric character in the Unicode database will be matched. + +# select_by_word_characters_forward + +#: Characters considered part of a word when extending the selection +#: forward on double clicking. In addition to these characters any +#: character that is marked as an alphanumeric character in the +#: Unicode database will be matched. + +#: If empty (default) select_by_word_characters will be used for both +#: directions. + +click_interval -1.0 + +#: The interval between successive clicks to detect double/triple +#: clicks (in seconds). Negative numbers will use the system default +#: instead, if available, or fallback to 0.5. + +focus_follows_mouse no + +#: Set the active window to the window under the mouse when moving the +#: mouse around. + +pointer_shape_when_grabbed arrow + +#: The shape of the mouse pointer when the program running in the +#: terminal grabs the mouse. Valid values are: arrow, beam and hand. + +default_pointer_shape beam + +#: The default shape of the mouse pointer. Valid values are: arrow, +#: beam and hand. + +pointer_shape_when_dragging beam + +#: The default shape of the mouse pointer when dragging across text. +#: Valid values are: arrow, beam and hand. + +#: Mouse actions {{{ + +#: Mouse buttons can be mapped to perform arbitrary actions. The +#: syntax is: + +#: .. code-block:: none + +#: mouse_map button-name event-type modes action + +#: Where button-name is one of left, middle, right, b1 ... b8 with +#: added keyboard modifiers. For example: ctrl+shift+left refers to +#: holding the Ctrl+Shift keys while clicking with the left mouse +#: button. The value b1 ... b8 can be used to refer to up to eight +#: buttons on a mouse. + +#: event-type is one of press, release, doublepress, triplepress, +#: click, doubleclick. modes indicates whether the action is performed +#: when the mouse is grabbed by the program running in the terminal, +#: or not. The values are grabbed or ungrabbed or a comma separated +#: combination of them. grabbed refers to when the program running in +#: the terminal has requested mouse events. Note that the click and +#: double click events have a delay of click_interval to disambiguate +#: from double and triple presses. + +#: You can run kitty with the kitty --debug-input command line option +#: to see mouse events. See the builtin actions below to get a sense +#: of what is possible. + +#: If you want to unmap an action, map it to no_op. For example, to +#: disable opening of URLs with a plain click:: + +#: mouse_map left click ungrabbed no_op + +#: See all the mappable actions including mouse actions here +#: . + +#: .. note:: +#: Once a selection is started, releasing the button that started it will +#: automatically end it and no release event will be dispatched. + +clear_all_mouse_actions no + +#: Remove all mouse action definitions up to this point. Useful, for +#: instance, to remove the default mouse actions. + +#: Click the link under the mouse or move the cursor + +mouse_map left click ungrabbed mouse_handle_click selection link prompt + +#:: First check for a selection and if one exists do nothing. Then +#:: check for a link under the mouse cursor and if one exists, click +#:: it. Finally check if the click happened at the current shell +#:: prompt and if so, move the cursor to the click location. Note +#:: that this requires shell integration +#:: to work. + +#: Click the link under the mouse or move the cursor even when grabbed + +mouse_map shift+left click grabbed,ungrabbed mouse_handle_click selection link prompt + +#:: Same as above, except that the action is performed even when the +#:: mouse is grabbed by the program running in the terminal. + +#: Click the link under the mouse cursor + +mouse_map ctrl+shift+left release grabbed,ungrabbed mouse_handle_click link + +#:: Variant with Ctrl+Shift is present because the simple click based +#:: version has an unavoidable delay of click_interval, to +#:: disambiguate clicks from double clicks. + +#: Discard press event for link click + +mouse_map ctrl+shift+left press grabbed discard_event + +#:: Prevent this press event from being sent to the program that has +#:: grabbed the mouse, as the corresponding release event is used to +#:: open a URL. + +#: Paste from the primary selection + +mouse_map middle release ungrabbed paste_from_selection + +#: Start selecting text + +mouse_map left press ungrabbed mouse_selection normal + +#: Start selecting text in a rectangle + +mouse_map ctrl+alt+left press ungrabbed mouse_selection rectangle + +#: Select a word + +mouse_map left doublepress ungrabbed mouse_selection word + +#: Select a line + +mouse_map left triplepress ungrabbed mouse_selection line + +#: Select line from point + +mouse_map ctrl+alt+left triplepress ungrabbed mouse_selection line_from_point + +#:: Select from the clicked point to the end of the line. + +#: Extend the current selection + +mouse_map right press ungrabbed mouse_selection extend + +#:: If you want only the end of the selection to be moved instead of +#:: the nearest boundary, use move-end instead of extend. + +#: Paste from the primary selection even when grabbed + +mouse_map shift+middle release ungrabbed,grabbed paste_selection +mouse_map shift+middle press grabbed discard_event + +#: Start selecting text even when grabbed + +mouse_map shift+left press ungrabbed,grabbed mouse_selection normal + +#: Start selecting text in a rectangle even when grabbed + +mouse_map ctrl+shift+alt+left press ungrabbed,grabbed mouse_selection rectangle + +#: Select a word even when grabbed + +mouse_map shift+left doublepress ungrabbed,grabbed mouse_selection word + +#: Select a line even when grabbed + +mouse_map shift+left triplepress ungrabbed,grabbed mouse_selection line + +#: Select line from point even when grabbed + +mouse_map ctrl+shift+alt+left triplepress ungrabbed,grabbed mouse_selection line_from_point + +#:: Select from the clicked point to the end of the line even when +#:: grabbed. + +#: Extend the current selection even when grabbed + +mouse_map shift+right press ungrabbed,grabbed mouse_selection extend + +#: Show clicked command output in pager + +mouse_map ctrl+shift+right press ungrabbed mouse_show_command_output + +#:: Requires shell integration +#:: to work. + +#: }}} + +#: }}} + +#: Performance tuning {{{ + +repaint_delay 10 + +#: Delay between screen updates (in milliseconds). Decreasing it, +#: increases frames-per-second (FPS) at the cost of more CPU usage. +#: The default value yields ~100 FPS which is more than sufficient for +#: most uses. Note that to actually achieve 100 FPS, you have to +#: either set sync_to_monitor to no or use a monitor with a high +#: refresh rate. Also, to minimize latency when there is pending input +#: to be processed, this option is ignored. + +input_delay 3 + +#: Delay before input from the program running in the terminal is +#: processed (in milliseconds). Note that decreasing it will increase +#: responsiveness, but also increase CPU usage and might cause flicker +#: in full screen programs that redraw the entire screen on each loop, +#: because kitty is so fast that partial screen updates will be drawn. + +sync_to_monitor yes + +#: Sync screen updates to the refresh rate of the monitor. This +#: prevents screen tearing +#: when scrolling. +#: However, it limits the rendering speed to the refresh rate of your +#: monitor. With a very high speed mouse/high keyboard repeat rate, +#: you may notice some slight input latency. If so, set this to no. + +#: }}} + +#: Terminal bell {{{ + +enable_audio_bell yes + +#: The audio bell. Useful to disable it in environments that require +#: silence. + +visual_bell_duration 0.0 + +#: The visual bell duration (in seconds). Flash the screen when a bell +#: occurs for the specified number of seconds. Set to zero to disable. + +visual_bell_color none + +#: The color used by visual bell. Set to none will fall back to +#: selection background color. If you feel that the visual bell is too +#: bright, you can set it to a darker color. + +window_alert_on_bell yes + +#: Request window attention on bell. Makes the dock icon bounce on +#: macOS or the taskbar flash on linux. + +bell_on_tab "🔔 " + +#: Some text or a Unicode symbol to show on the tab if a window in the +#: tab that does not have focus has a bell. If you want to use leading +#: or trailing spaces, surround the text with quotes. See +#: tab_title_template for how this is rendered. + +#: For backwards compatibility, values of yes, y and true are +#: converted to the default bell symbol and no, n, false and none are +#: converted to the empty string. + +command_on_bell none + +#: Program to run when a bell occurs. The environment variable +#: KITTY_CHILD_CMDLINE can be used to get the program running in the +#: window in which the bell occurred. + +bell_path none + +#: Path to a sound file to play as the bell sound. If set to none, the +#: system default bell sound is used. Must be in a format supported by +#: the operating systems sound API, such as WAV or OGA on Linux +#: (libcanberra) or AIFF, MP3 or WAV on macOS (NSSound) + +#: }}} + +#: Window layout {{{ + +remember_window_size yes +initial_window_width 640 +initial_window_height 400 + +#: If enabled, the window size will be remembered so that new +#: instances of kitty will have the same size as the previous +#: instance. If disabled, the window will initially have size +#: configured by initial_window_width/height, in pixels. You can use a +#: suffix of "c" on the width/height values to have them interpreted +#: as number of cells instead of pixels. + +enabled_layouts * + +#: The enabled window layouts. A comma separated list of layout names. +#: The special value all means all layouts. The first listed layout +#: will be used as the startup layout. Default configuration is all +#: layouts in alphabetical order. For a list of available layouts, see +#: the layouts . + +window_resize_step_cells 2 +window_resize_step_lines 2 + +#: The step size (in units of cell width/cell height) to use when +#: resizing kitty windows in a layout with the shortcut +#: start_resizing_window. The cells value is used for horizontal +#: resizing, and the lines value is used for vertical resizing. + +window_border_width 0.5pt + +#: The width of window borders. Can be either in pixels (px) or pts +#: (pt). Values in pts will be rounded to the nearest number of pixels +#: based on screen resolution. If not specified, the unit is assumed +#: to be pts. Note that borders are displayed only when more than one +#: window is visible. They are meant to separate multiple windows. + +draw_minimal_borders yes + +#: Draw only the minimum borders needed. This means that only the +#: borders that separate the inactive window from a neighbor are +#: drawn. Note that setting a non-zero window_margin_width overrides +#: this and causes all borders to be drawn. + +window_margin_width 0 + +#: The window margin (in pts) (blank area outside the border). A +#: single value sets all four sides. Two values set the vertical and +#: horizontal sides. Three values set top, horizontal and bottom. Four +#: values set top, right, bottom and left. + +single_window_margin_width -1 + +#: The window margin to use when only a single window is visible (in +#: pts). Negative values will cause the value of window_margin_width +#: to be used instead. A single value sets all four sides. Two values +#: set the vertical and horizontal sides. Three values set top, +#: horizontal and bottom. Four values set top, right, bottom and left. + +window_padding_width 10 + +#: The window padding (in pts) (blank area between the text and the +#: window border). A single value sets all four sides. Two values set +#: the vertical and horizontal sides. Three values set top, horizontal +#: and bottom. Four values set top, right, bottom and left. + +placement_strategy center + +#: When the window size is not an exact multiple of the cell size, the +#: cell area of the terminal window will have some extra padding on +#: the sides. You can control how that padding is distributed with +#: this option. Using a value of center means the cell area will be +#: placed centrally. A value of top-left means the padding will be +#: only at the bottom and right edges. + +active_border_color #B7BDF8 + +#: The color for the border of the active window. Set this to none to +#: not draw borders around the active window. + +inactive_border_color #6E738D + +#: The color for the border of inactive windows. + +bell_border_color #EED49F + +#: The color for the border of inactive windows in which a bell has +#: occurred. + +inactive_text_alpha 1.0 + +#: Fade the text in inactive windows by the specified amount (a number +#: between zero and one, with zero being fully faded). + +hide_window_decorations yes + +#: Hide the window decorations (title-bar and window borders) with +#: yes. On macOS, titlebar-only can be used to only hide the titlebar. +#: Whether this works and exactly what effect it has depends on the +#: window manager/operating system. Note that the effects of changing +#: this option when reloading config are undefined. + +window_logo_path none + +#: Path to a logo image. Must be in PNG format. Relative paths are +#: interpreted relative to the kitty config directory. The logo is +#: displayed in a corner of every kitty window. The position is +#: controlled by window_logo_position. Individual windows can be +#: configured to have different logos either using the launch action +#: or the remote control facility. + +window_logo_position bottom-right + +#: Where to position the window logo in the window. The value can be +#: one of: top-left, top, top-right, left, center, right, bottom-left, +#: bottom, bottom-right. + +window_logo_alpha 0.5 + +#: The amount the logo should be faded into the background. With zero +#: being fully faded and one being fully opaque. + +resize_debounce_time 0.1 + +#: The time to wait before redrawing the screen when a resize event is +#: received (in seconds). On platforms such as macOS, where the +#: operating system sends events corresponding to the start and end of +#: a resize, this number is ignored. + +resize_draw_strategy static + +#: Choose how kitty draws a window while a resize is in progress. A +#: value of static means draw the current window contents, mostly +#: unchanged. A value of scale means draw the current window contents +#: scaled. A value of blank means draw a blank window. A value of size +#: means show the window size in cells. + +resize_in_steps no + +#: Resize the OS window in steps as large as the cells, instead of +#: with the usual pixel accuracy. Combined with initial_window_width +#: and initial_window_height in number of cells, this option can be +#: used to keep the margins as small as possible when resizing the OS +#: window. Note that this does not currently work on Wayland. + +visual_window_select_characters 1234567890ABCDEFGHIJKLMNOPQRSTUVWXYZ + +#: The list of characters for visual window selection. For example, +#: for selecting a window to focus on with focus_visible_window. The +#: value should be a series of unique numbers or alphabets, case +#: insensitive, from the set [0-9A-Z]. Specify your preference as a +#: string of characters. + +confirm_os_window_close 0 + +#: Ask for confirmation when closing an OS window or a tab with at +#: least this number of kitty windows in it by window manager (e.g. +#: clicking the window close button or pressing the operating system +#: shortcut to close windows) or by the close_tab action. A value of +#: zero disables confirmation. This confirmation also applies to +#: requests to quit the entire application (all OS windows, via the +#: quit action). Negative values are converted to positive ones, +#: however, with shell_integration enabled, using negative values +#: means windows sitting at a shell prompt are not counted, only +#: windows where some command is currently running. Note that if you +#: want confirmation when closing individual windows, you can map the +#: close_window_with_confirmation action. + +#: }}} + +#: Tab bar {{{ + +tab_bar_edge bottom + +#: The edge to show the tab bar on, top or bottom. + +tab_bar_margin_width 0.0 + +#: The margin to the left and right of the tab bar (in pts). + +tab_bar_margin_height 0.0 0.0 + +#: The margin above and below the tab bar (in pts). The first number +#: is the margin between the edge of the OS Window and the tab bar. +#: The second number is the margin between the tab bar and the +#: contents of the current tab. + +tab_bar_style fade + +#: The tab bar style, can be one of: + +#: fade +#: Each tab's edges fade into the background color. (See also tab_fade) +#: slant +#: Tabs look like the tabs in a physical file. +#: separator +#: Tabs are separated by a configurable separator. (See also +#: tab_separator) +#: powerline +#: Tabs are shown as a continuous line with "fancy" separators. +#: (See also tab_powerline_style) +#: custom +#: A user-supplied Python function called draw_tab is loaded from the file +#: tab_bar.py in the kitty config directory. For examples of how to +#: write such a function, see the functions named draw_tab_with_* in +#: kitty's source code: kitty/tab_bar.py. See also +#: this discussion https://github.com/kovidgoyal/kitty/discussions/4447 +#: for examples from kitty users. +#: hidden +#: The tab bar is hidden. If you use this, you might want to create a mapping +#: for the select_tab action which presents you with a list of tabs and +#: allows for easy switching to a tab. + +tab_bar_align left + +#: The horizontal alignment of the tab bar, can be one of: left, +#: center, right. + +tab_bar_min_tabs 2 + +#: The minimum number of tabs that must exist before the tab bar is +#: shown. + +tab_switch_strategy previous + +#: The algorithm to use when switching to a tab when the current tab +#: is closed. The default of previous will switch to the last used +#: tab. A value of left will switch to the tab to the left of the +#: closed tab. A value of right will switch to the tab to the right of +#: the closed tab. A value of last will switch to the right-most tab. + +tab_fade 0.25 0.5 0.75 1 + +#: Control how each tab fades into the background when using fade for +#: the tab_bar_style. Each number is an alpha (between zero and one) +#: that controls how much the corresponding cell fades into the +#: background, with zero being no fade and one being full fade. You +#: can change the number of cells used by adding/removing entries to +#: this list. + +tab_separator " ┇" + +#: The separator between tabs in the tab bar when using separator as +#: the tab_bar_style. + +tab_powerline_style angled + +#: The powerline separator style between tabs in the tab bar when +#: using powerline as the tab_bar_style, can be one of: angled, +#: slanted, round. + +tab_activity_symbol none + +#: Some text or a Unicode symbol to show on the tab if a window in the +#: tab that does not have focus has some activity. If you want to use +#: leading or trailing spaces, surround the text with quotes. See +#: tab_title_template for how this is rendered. + +tab_title_template "{fmt.fg.red}{bell_symbol}{activity_symbol}{fmt.fg.tab}{title}" + +#: A template to render the tab title. The default just renders the +#: title with optional symbols for bell and activity. If you wish to +#: include the tab-index as well, use something like: {index}:{title}. +#: Useful if you have shortcuts mapped for goto_tab N. If you prefer +#: to see the index as a superscript, use {sup.index}. In addition you +#: can use {layout_name} for the current layout name, {num_windows} +#: for the number of windows in the tab and {num_window_groups} for +#: the number of window groups (not counting overlay windows) in the +#: tab. Note that formatting is done by Python's string formatting +#: machinery, so you can use, for instance, {layout_name[:2].upper()} +#: to show only the first two letters of the layout name, upper-cased. +#: If you want to style the text, you can use styling directives, for +#: example: +#: `{fmt.fg.red}red{fmt.fg.tab}normal{fmt.bg._00FF00}greenbg{fmt.bg.tab}`. +#: Similarly, for bold and italic: +#: `{fmt.bold}bold{fmt.nobold}normal{fmt.italic}italic{fmt.noitalic}`. +#: Note that for backward compatibility, if {bell_symbol} or +#: {activity_symbol} are not present in the template, they are +#: prepended to it. + +active_tab_title_template none + +#: Template to use for active tabs. If not specified falls back to +#: tab_title_template. +active_tab_foreground #181926 +active_tab_background #C6A0F6 +inactive_tab_foreground #CAD3F5 +inactive_tab_background #1E2030 +tab_bar_background #181926 +active_tab_font_style bold-italic +inactive_tab_font_style normal + +#: Tab bar colors and styles. + +#: Background color for the tab bar. Defaults to using the terminal +#: background color. + +tab_bar_margin_color none + +#: Color for the tab bar margin area. Defaults to using the terminal +#: background color. + +#: }}} + +#: Color scheme {{{ + +foreground #CAD3F5 +background #24273A + +#: The foreground and background colors. + +background_opacity 0.85 + +#: The opacity of the background. A number between zero and one, where +#: one is opaque and zero is fully transparent. This will only work if +#: supported by the OS (for instance, when using a compositor under +#: X11). Note that it only sets the background color's opacity in +#: cells that have the same background color as the default terminal +#: background, so that things like the status bar in vim, powerline +#: prompts, etc. still look good. But it means that if you use a color +#: theme with a background color in your editor, it will not be +#: rendered as transparent. Instead you should change the default +#: background color in your kitty config and not use a background +#: color in the editor color scheme. Or use the escape codes to set +#: the terminals default colors in a shell script to launch your +#: editor. Be aware that using a value less than 1.0 is a (possibly +#: significant) performance hit. If you want to dynamically change +#: transparency of windows, set dynamic_background_opacity to yes +#: (this is off by default as it has a performance cost). Changing +#: this option when reloading the config will only work if +#: dynamic_background_opacity was enabled in the original config. + +background_image none + +#: Path to a background image. Must be in PNG format. + +background_image_layout tiled + +#: Whether to tile, scale or clamp the background image. The value can +#: be one of tiled, mirror-tiled, scaled, clamped. + +background_image_linear no + +#: When background image is scaled, whether linear interpolation +#: should be used. + +dynamic_background_opacity no + +#: Allow changing of the background_opacity dynamically, using either +#: keyboard shortcuts (increase_background_opacity and +#: decrease_background_opacity) or the remote control facility. +#: Changing this option by reloading the config is not supported. + +background_tint 0.0 + +#: How much to tint the background image by the background color. The +#: tint is applied only under the text area, not margin/borders. This +#: option makes it easier to read the text. Tinting is done using the +#: current background color for each window. This option applies only +#: if background_opacity is set and transparent windows are supported +#: or background_image is set. + +dim_opacity 0.75 + +#: How much to dim text that has the DIM/FAINT attribute set. One +#: means no dimming and zero means fully dimmed (i.e. invisible). + +selection_foreground #24273A +selection_background #F4DBD6 + +#: The foreground and background colors for text selected with the +#: mouse. Setting both of these to none will cause a "reverse video" +#: effect for selections, where the selection will be the cell text +#: color and the text will become the cell background color. Setting +#: only selection_foreground to none will cause the foreground color +#: to be used unchanged. Note that these colors can be overridden by +#: the program running in the terminal. + +#: The color table {{{ + +#: The 256 terminal colors. There are 8 basic colors, each color has a +#: dull and bright version, for the first 16 colors. You can set the +#: remaining 240 colors as color16 to color255. + +# black +color0 #494D64 +color8 #5B6078 + +# red +color1 #ED8796 +color9 #ED8796 + +# green +color2 #A6DA95 +color10 #A6DA95 + +# yellow +color3 #EED49F +color11 #EED49F + +# blue +color4 #8AADF4 +color12 #8AADF4 + +# magenta +color5 #F5BDE6 +color13 #F5BDE6 + +# cyan +color6 #8BD5CA +color14 #8BD5CA + +# white +color7 #B8C0E0 +color15 #A5ADCB + +mark1_foreground #24273A +mark1_background #B7BDF8 +mark2_foreground #24273A +mark2_background #C6A0F6 +mark3_foreground #24273A +mark3_background #7DC4E4 + +#: Color for marks of type 3 (violet) + +#: }}} + +#: }}} + +#: Advanced {{{ + +shell fish + +#: The shell program to execute. The default value of . means to use +#: whatever shell is set as the default shell for the current user. +#: Note that on macOS if you change this, you might need to add +#: --login and --interactive to ensure that the shell starts in +#: interactive mode and reads its startup rc files. + +editor vscodium + +#: The terminal based text editor (such as vim or nano) to use when +#: editing the kitty config file or similar tasks. + +#: The default value of . means to use the environment variables +#: VISUAL and EDITOR in that order. If these variables aren't set, +#: kitty will run your shell ($SHELL -l -i -c env) to see if your +#: shell startup rc files set VISUAL or EDITOR. If that doesn't work, +#: kitty will cycle through various known editors (vim, emacs, etc.) +#: and take the first one that exists on your system. + +close_on_child_death no + +#: Close the window when the child process (shell) exits. With the +#: default value no, the terminal will remain open when the child +#: exits as long as there are still processes outputting to the +#: terminal (for example disowned or backgrounded processes). When +#: enabled with yes, the window will close as soon as the child +#: process exits. Note that setting it to yes means that any +#: background processes still using the terminal can fail silently +#: because their stdout/stderr/stdin no longer work. + +allow_remote_control no + +#: Allow other programs to control kitty. If you turn this on, other +#: programs can control all aspects of kitty, including sending text +#: to kitty windows, opening new windows, closing windows, reading the +#: content of windows, etc. Note that this even works over SSH +#: connections. You can choose to either allow any program running +#: within kitty to control it with yes, or only allow programs that +#: connect to the socket (specified with the listen_on config option +#: or kitty --listen-on command line option) with the value socket- +#: only. The latter is useful if you want to prevent programs running +#: on a remote computer over SSH from controlling kitty. Reloading the +#: config will not affect this option. + +listen_on none + +#: Listen to the specified UNIX socket for remote control connections. +#: Note that this will apply to all kitty instances. It can be +#: overridden by the kitty --listen-on command line option, which +#: supports listening on TCP socket. This option accepts only UNIX +#: sockets, such as unix:${TEMP}/mykitty or unix:@mykitty (on Linux). +#: Environment variables are expanded and relative paths are resolved +#: with respect to the temporary directory. If {kitty_pid} is present, +#: then it is replaced by the PID of the kitty process, otherwise the +#: PID of the kitty process is appended to the value, with a hyphen. +#: This option is ignored unless you also set allow_remote_control to +#: enable remote control. See the help for kitty --listen-on for more +#: details. Changing this option by reloading the config is not +#: supported. + +# env + +#: Specify the environment variables to be set in all child processes. +#: Using the name with an equal sign (e.g. env VAR=) will set it to +#: the empty string. Specifying only the name (e.g. env VAR) will +#: remove the variable from the child process' environment. Note that +#: environment variables are expanded recursively, for example:: + +#: env VAR1=a +#: env VAR2=${HOME}/${VAR1}/b + +#: The value of VAR2 will be /a/b. + +# watcher + +#: Path to python file which will be loaded for watchers +#: . Can be +#: specified more than once to load multiple watchers. The watchers +#: will be added to every kitty window. Relative paths are resolved +#: relative to the kitty config directory. Note that reloading the +#: config will only affect windows created after the reload. + +# exe_search_path + +#: Control where kitty finds the programs to run. The default search +#: order is: First search the system wide PATH, then ~/.local/bin and +#: ~/bin. If still not found, the PATH defined in the login shell +#: after sourcing all its startup files is tried. Finally, if present, +#: the PATH specified by the env option is tried. + +#: This option allows you to prepend, append, or remove paths from +#: this search order. It can be specified multiple times for multiple +#: paths. A simple path will be prepended to the search order. A path +#: that starts with the + sign will be append to the search order, +#: after ~/bin above. A path that starts with the - sign will be +#: removed from the entire search order. For example:: + +#: exe_search_path /some/prepended/path +#: exe_search_path +/some/appended/path +#: exe_search_path -/some/excluded/path + +update_check_interval 24 + +#: The interval to periodically check if an update to kitty is +#: available (in hours). If an update is found, a system notification +#: is displayed informing you of the available update. The default is +#: to check every 24 hours, set to zero to disable. Update checking is +#: only done by the official binary builds. Distro packages or source +#: builds do not do update checking. Changing this option by reloading +#: the config is not supported. + +startup_session none + +#: Path to a session file to use for all kitty instances. Can be +#: overridden by using the kitty --session command line option for +#: individual instances. See sessions +#: in the +#: kitty documentation for details. Note that relative paths are +#: interpreted with respect to the kitty config directory. Environment +#: variables in the path are expanded. Changing this option by +#: reloading the config is not supported. + +clipboard_control write-clipboard write-primary read-clipboard-ask read-primary-ask + +#: Allow programs running in kitty to read and write from the +#: clipboard. You can control exactly which actions are allowed. The +#: possible actions are: write-clipboard, read-clipboard, write- +#: primary, read-primary, read-clipboard-ask, read-primary-ask. The +#: default is to allow writing to the clipboard and primary selection +#: and to ask for permission when a program tries to read from the +#: clipboard. Note that disabling the read confirmation is a security +#: risk as it means that any program, even the ones running on a +#: remote server via SSH can read your clipboard. See also +#: clipboard_max_size. + +clipboard_max_size 64 + +#: The maximum size (in MB) of data from programs running in kitty +#: that will be stored for writing to the system clipboard. A value of +#: zero means no size limit is applied. See also clipboard_control. + +# file_transfer_confirmation_bypass + +#: The password that can be supplied to the file transfer kitten +#: to skip the +#: transfer confirmation prompt. This should only be used when +#: initiating transfers from trusted computers, over trusted networks +#: or encrypted transports, as it allows any programs running on the +#: remote machine to read/write to the local filesystem, without +#: permission. + +allow_hyperlinks yes + +#: Process hyperlink escape sequences (OSC 8). If disabled OSC 8 +#: escape sequences are ignored. Otherwise they become clickable +#: links, that you can click with the mouse or by using the hints +#: kitten . The +#: special value of ask means that kitty will ask before opening the +#: link when clicked. + +shell_integration enabled + +#: Enable shell integration on supported shells. This enables features +#: such as jumping to previous prompts, browsing the output of the +#: previous command in a pager, etc. on supported shells. Set to +#: disabled to turn off shell integration, completely. It is also +#: possible to disable individual features, set to a space separated +#: list of these values: no-rc, no-cursor, no-title, no-cwd, no- +#: prompt-mark, no-complete. See Shell integration +#: for details. + +allow_cloning ask + +#: Control whether programs running in the terminal can request new +#: windows to be created. The canonical example is clone-in-kitty +#: . +#: By default, kitty will ask for permission for each clone request. +#: Allowing cloning unconditionally gives programs running in the +#: terminal (including over SSH) permission to execute arbitrary code, +#: as the user who is running the terminal, on the computer that the +#: terminal is running on. + +clone_source_strategies venv,conda,env_var,path + +#: Control what shell code is sourced when running clone-in-kitty in +#: the newly cloned window. The supported strategies are: + +#: venv +#: Source the file $VIRTUAL_ENV/bin/activate. This is used by the +#: Python stdlib venv module and allows cloning venvs automatically. +#: conda +#: Run conda activate $CONDA_DEFAULT_ENV. This supports the virtual +#: environments created by conda. +#: env_var +#: Execute the contents of the environment variable +#: KITTY_CLONE_SOURCE_CODE with eval. +#: path +#: Source the file pointed to by the environment variable +#: KITTY_CLONE_SOURCE_PATH. + +#: This option must be a comma separated list of the above values. +#: This only source the first valid one in the above order. + +term xterm-kitty + +#: The value of the TERM environment variable to set. Changing this +#: can break many terminal programs, only change it if you know what +#: you are doing, not because you read some advice on "Stack Overflow" +#: to change it. The TERM variable is used by various programs to get +#: information about the capabilities and behavior of the terminal. If +#: you change it, depending on what programs you run, and how +#: different the terminal you are changing it to is, various things +#: from key-presses, to colors, to various advanced features may not +#: work. Changing this option by reloading the config will only affect +#: newly created windows. + +#: }}} + +#: OS specific tweaks {{{ + +wayland_titlebar_color system + +#: The color of the kitty window's titlebar on Wayland systems with +#: client side window decorations such as GNOME. A value of system +#: means to use the default system color, a value of background means +#: to use the background color of the currently active window and +#: finally you can use an arbitrary color, such as #12af59 or red. + +macos_titlebar_color system + +#: The color of the kitty window's titlebar on macOS. A value of +#: system means to use the default system color, light or dark can +#: also be used to set it explicitly. A value of background means to +#: use the background color of the currently active window and finally +#: you can use an arbitrary color, such as #12af59 or red. WARNING: +#: This option works by using a hack when arbitrary color (or +#: background) is configured, as there is no proper Cocoa API for it. +#: It sets the background color of the entire window and makes the +#: titlebar transparent. As such it is incompatible with +#: background_opacity. If you want to use both, you are probably +#: better off just hiding the titlebar with hide_window_decorations. + +macos_option_as_alt no + +#: Use the Option key as an Alt key on macOS. With this set to no, +#: kitty will use the macOS native Option+Key to enter Unicode +#: character behavior. This will break any Alt+Key keyboard shortcuts +#: in your terminal programs, but you can use the macOS Unicode input +#: technique. You can use the values: left, right or both to use only +#: the left, right or both Option keys as Alt, instead. Note that +#: kitty itself always treats Option the same as Alt. This means you +#: cannot use this option to configure different kitty shortcuts for +#: Option+Key vs. Alt+Key. Also, any kitty shortcuts using +#: Option/Alt+Key will take priority, so that any such key presses +#: will not be passed to terminal programs running inside kitty. +#: Changing this option by reloading the config is not supported. + +macos_hide_from_tasks no + +#: Hide the kitty window from running tasks on macOS (⌘+Tab and the +#: Dock). Changing this option by reloading the config is not +#: supported. + +macos_quit_when_last_window_closed no + +#: Have kitty quit when all the top-level windows are closed on macOS. +#: By default, kitty will stay running, even with no open windows, as +#: is the expected behavior on macOS. + +macos_window_resizable yes + +#: Disable this if you want kitty top-level OS windows to not be +#: resizable on macOS. Changing this option by reloading the config +#: will only affect newly created OS windows. + +macos_thicken_font 0 + +#: Draw an extra border around the font with the given width, to +#: increase legibility at small font sizes on macOS. For example, a +#: value of 0.75 will result in rendering that looks similar to sub- +#: pixel antialiasing at common font sizes. + +macos_traditional_fullscreen no + +#: Use the macOS traditional full-screen transition, that is faster, +#: but less pretty. + +macos_show_window_title_in all + +#: Control where the window title is displayed on macOS. A value of +#: window will show the title of the currently active window at the +#: top of the macOS window. A value of menubar will show the title of +#: the currently active window in the macOS global menu bar, making +#: use of otherwise wasted space. A value of all will show the title +#: in both places, and none hides the title. See +#: macos_menubar_title_max_length for how to control the length of the +#: title in the menu bar. + +macos_menubar_title_max_length 0 + +#: The maximum number of characters from the window title to show in +#: the macOS global menu bar. Values less than one means that there is +#: no maximum limit. + +macos_custom_beam_cursor no + +#: Use a custom mouse cursor for macOS that is easier to see on both +#: light and dark backgrounds. Nowadays, the default macOS cursor +#: already comes with a white border. WARNING: this might make your +#: mouse cursor invisible on dual GPU machines. Changing this option +#: by reloading the config is not supported. + +macos_colorspace srgb + +#: The colorspace in which to interpret terminal colors. The default +#: of srgb will cause colors to match those seen in web browsers. The +#: value of default will use whatever the native colorspace of the +#: display is. The value of displayp3 will use Apple's special +#: snowflake display P3 color space, which will result in over +#: saturated (brighter) colors with some color shift. Reloading +#: configuration will change this value only for newly created OS +#: windows. + +linux_display_server auto + +#: Choose between Wayland and X11 backends. By default, an appropriate +#: backend based on the system state is chosen automatically. Set it +#: to x11 or wayland to force the choice. Changing this option by +#: reloading the config is not supported. + +#: }}} + +#: Keyboard shortcuts {{{ + +#: Keys are identified simply by their lowercase Unicode characters. +#: For example: a for the A key, [ for the left square bracket key, +#: etc. For functional keys, such as Enter or Escape, the names are +#: present at Functional key definitions +#: . For modifier keys, the names are ctrl (control, ⌃), +#: shift (⇧), alt (opt, option, ⌥), super (cmd, command, ⌘). See also: +#: GLFW mods + +#: On Linux you can also use XKB key names to bind keys that are not +#: supported by GLFW. See XKB keys +#: for a list of key names. The name to use is the part +#: after the XKB_KEY_ prefix. Note that you can only use an XKB key +#: name for keys that are not known as GLFW keys. + +#: Finally, you can use raw system key codes to map keys, again only +#: for keys that are not known as GLFW keys. To see the system key +#: code for a key, start kitty with the kitty --debug-input option, +#: kitty will output some debug text for every key event. In that text +#: look for native_code, the value of that becomes the key name in the +#: shortcut. For example: + +#: .. code-block:: none + +#: on_key_input: glfw key: 0x61 native_code: 0x61 action: PRESS mods: none text: 'a' + +#: Here, the key name for the A key is 0x61 and you can use it with:: + +#: map ctrl+0x61 something + +#: to map Ctrl+A to something. + +#: You can use the special action no_op to unmap a keyboard shortcut +#: that is assigned in the default configuration:: + +#: map kitty_mod+space no_op + +#: If you would like kitty to completely ignore a key event, not even +#: sending it to the program running in the terminal, map it to +#: discard_event:: + +#: map kitty_mod+f1 discard_event + +#: You can combine multiple actions to be triggered by a single +#: shortcut with combine action, using the syntax below:: + +#: map key combine action1 action2 action3 ... + +#: For example:: + +#: map kitty_mod+e combine : new_window : next_layout + +#: This will create a new window and switch to the next available +#: layout. + +#: You can use multi-key shortcuts with the syntax shown below:: + +#: map key1>key2>key3 action + +#: For example:: + +#: map ctrl+f>2 set_font_size 20 + +#: The full list of actions that can be mapped to key presses is +#: available here . + +kitty_mod ctrl+shift + +#: Special modifier key alias for default shortcuts. You can change +#: the value of this option to alter all default shortcuts that use +#: kitty_mod. + +clear_all_shortcuts no + +#: Remove all shortcut definitions up to this point. Useful, for +#: instance, to remove the default shortcuts. + +# action_alias + +#: E.g. action_alias launch_tab launch --type=tab --cwd=current + +#: Define action aliases to avoid repeating the same options in +#: multiple mappings. Aliases can be defined for any action and will +#: be expanded recursively. For example, the above alias allows you to +#: create mappings to launch a new tab in the current working +#: directory without duplication:: + +#: map f1 launch_tab vim +#: map f2 launch_tab emacs + +#: Similarly, to alias kitten invocation:: + +#: action_alias hints kitten hints --hints-offset=0 + +# kitten_alias + +#: E.g. kitten_alias hints hints --hints-offset=0 + +#: Like action_alias above, but specifically for kittens. Generally, +#: prefer to use action_alias. This option is a legacy version, +#: present for backwards compatibility. It causes all invocations of +#: the aliased kitten to be substituted. So the example above will +#: cause all invocations of the hints kitten to have the --hints- +#: offset=0 option applied. + +#: Clipboard {{{ + +#: Copy to clipboard + +map kitty_mod+c copy_to_clipboard +map cmd+c copy_to_clipboard + +#:: There is also a copy_or_interrupt action that can be optionally +#:: mapped to Ctrl+C. It will copy only if there is a selection and +#:: send an interrupt otherwise. Similarly, +#:: copy_and_clear_or_interrupt will copy and clear the selection or +#:: send an interrupt if there is no selection. + +#: Paste from clipboard + +map kitty_mod+v paste_from_clipboard +map cmd+v paste_from_clipboard + +#: Paste from selection + +map kitty_mod+s paste_from_selection +map shift+insert paste_from_selection + +#: Pass selection to program + +map kitty_mod+o pass_selection_to_program + +#:: You can also pass the contents of the current selection to any +#:: program with pass_selection_to_program. By default, the system's +#:: open program is used, but you can specify your own, the selection +#:: will be passed as a command line argument to the program. For +#:: example:: + +#:: map kitty_mod+o pass_selection_to_program firefox + +#:: You can pass the current selection to a terminal program running +#:: in a new kitty window, by using the @selection placeholder:: + +#:: map kitty_mod+y new_window less @selection + +#: }}} + +#: Scrolling {{{ + +#: Scroll line up + +map kitty_mod+up scroll_line_up +map kitty_mod+k scroll_line_up +map opt+cmd+page_up scroll_line_up +map cmd+up scroll_line_up + +#: Scroll line down + +map kitty_mod+down scroll_line_down +map kitty_mod+j scroll_line_down +map opt+cmd+page_down scroll_line_down +map cmd+down scroll_line_down + +#: Scroll page up + +map kitty_mod+page_up scroll_page_up +map cmd+page_up scroll_page_up + +#: Scroll page down + +map kitty_mod+page_down scroll_page_down +map cmd+page_down scroll_page_down + +#: Scroll to top + +map kitty_mod+home scroll_home +map cmd+home scroll_home + +#: Scroll to bottom + +map kitty_mod+end scroll_end +map cmd+end scroll_end + +#: Scroll to previous shell prompt + +map kitty_mod+z scroll_to_prompt -1 + +#:: Use a parameter of 0 for scroll_to_prompt to scroll to the last +#:: jumped to or the last clicked position. Requires shell +#:: integration +#:: to work. + +#: Scroll to next shell prompt + +map kitty_mod+x scroll_to_prompt 1 + +#: Browse scrollback buffer in pager + +map kitty_mod+h show_scrollback + +#:: You can pipe the contents of the current screen and history +#:: buffer as STDIN to an arbitrary program using launch --stdin- +#:: source. For example, the following opens the scrollback buffer in +#:: less in an overlay window:: + +#:: map f1 launch --stdin-source=@screen_scrollback --stdin-add-formatting --type=overlay less +G -R + +#:: For more details on piping screen and buffer contents to external +#:: programs, see launch . + +#: Browse output of the last shell command in pager + +map kitty_mod+g show_last_command_output + +#:: You can also define additional shortcuts to get the command +#:: output. For example, to get the first command output on screen:: + +#:: map f1 show_first_command_output_on_screen + +#:: To get the command output that was last accessed by a keyboard +#:: action or mouse action:: + +#:: map f1 show_last_visited_command_output + +#:: You can pipe the output of the last command run in the shell +#:: using the launch action. For example, the following opens the +#:: output in less in an overlay window:: + +#:: map f1 launch --stdin-source=@last_cmd_output --stdin-add-formatting --type=overlay less +G -R + +#:: To get the output of the first command on the screen, use +#:: @first_cmd_output_on_screen. To get the output of the last jumped +#:: to command, use @last_visited_cmd_output. + +#:: Requires shell integration +#:: to work. + +#: }}} + +#: Window management {{{ + +#: New window + +map kitty_mod+enter new_window +map cmd+enter new_window + +#:: You can open a new kitty window running an arbitrary program, for +#:: example:: + +#:: map kitty_mod+y launch mutt + +#:: You can open a new window with the current working directory set +#:: to the working directory of the current window using:: + +#:: map ctrl+alt+enter launch --cwd=current + +#:: You can open a new window that is allowed to control kitty via +#:: the kitty remote control facility with launch --allow-remote- +#:: control. Any programs running in that window will be allowed to +#:: control kitty. For example:: + +#:: map ctrl+enter launch --allow-remote-control some_program + +#:: You can open a new window next to the currently active window or +#:: as the first window, with:: + +#:: map ctrl+n launch --location=neighbor +#:: map ctrl+f launch --location=first + +#:: For more details, see launch +#:: . + +#: New OS window + +map kitty_mod+n new_os_window +map cmd+n new_os_window + +#:: Works like new_window above, except that it opens a top-level OS +#:: window. In particular you can use new_os_window_with_cwd to open +#:: a window with the current working directory. + +#: Close window + +map kitty_mod+w close_window +map shift+cmd+d close_window + +#: Next window + +map kitty_mod+] next_window + +#: Previous window + +map kitty_mod+[ previous_window + +#: Move window forward + +map kitty_mod+f move_window_forward + +#: Move window backward + +map kitty_mod+b move_window_backward + +#: Move window to top + +map kitty_mod+` move_window_to_top + +#: Start resizing window + +map kitty_mod+r start_resizing_window +map cmd+r start_resizing_window + +#: First window + +map kitty_mod+1 first_window +map cmd+1 first_window + +#: Second window + +map kitty_mod+2 second_window +map cmd+2 second_window + +#: Third window + +map kitty_mod+3 third_window +map cmd+3 third_window + +#: Fourth window + +map kitty_mod+4 fourth_window +map cmd+4 fourth_window + +#: Fifth window + +map kitty_mod+5 fifth_window +map cmd+5 fifth_window + +#: Sixth window + +map kitty_mod+6 sixth_window +map cmd+6 sixth_window + +#: Seventh window + +map kitty_mod+7 seventh_window +map cmd+7 seventh_window + +#: Eight window + +map kitty_mod+8 eighth_window +map cmd+8 eighth_window + +#: Ninth window + +map kitty_mod+9 ninth_window +map cmd+9 ninth_window + +#: Tenth window + +map kitty_mod+0 tenth_window + +#: Visually select and focus window + +map kitty_mod+f7 focus_visible_window + +#:: Display overlay numbers and alphabets on the window, and switch +#:: the focus to the window when you press the key. When there are +#:: only two windows, the focus will be switched directly without +#:: displaying the overlay. You can change the overlay characters and +#:: their order with option visual_window_select_characters. + +#: Visually swap window with another + +map kitty_mod+f8 swap_with_window + +#:: Works like focus_visible_window above, but swaps the window. + +#: }}} + +#: Tab management {{{ + +#: Next tab + +map kitty_mod+right next_tab +map shift+cmd+] next_tab +map ctrl+tab next_tab + +#: Previous tab + +map kitty_mod+left previous_tab +map shift+cmd+[ previous_tab +map ctrl+shift+tab previous_tab + +#: New tab + +map kitty_mod+t new_tab +map cmd+t new_tab + +#: Close tab + +map kitty_mod+q close_tab +map cmd+w close_tab + +#: Close OS window + +map shift+cmd+w close_os_window + +#: Move tab forward + +map kitty_mod+. move_tab_forward + +#: Move tab backward + +map kitty_mod+, move_tab_backward + +#: Set tab title + +map kitty_mod+alt+t set_tab_title +map shift+cmd+i set_tab_title + + +#: You can also create shortcuts to go to specific tabs, with 1 being +#: the first tab, 2 the second tab and -1 being the previously active +#: tab, and any number larger than the last tab being the last tab:: + +#: map ctrl+alt+1 goto_tab 1 +#: map ctrl+alt+2 goto_tab 2 + +#: Just as with new_window above, you can also pass the name of +#: arbitrary commands to run when using new_tab and new_tab_with_cwd. +#: Finally, if you want the new tab to open next to the current tab +#: rather than at the end of the tabs list, use:: + +#: map ctrl+t new_tab !neighbor [optional cmd to run] +#: }}} + +#: Layout management {{{ + +#: Next layout + +map kitty_mod+l next_layout + + +#: You can also create shortcuts to switch to specific layouts:: + +#: map ctrl+alt+t goto_layout tall +#: map ctrl+alt+s goto_layout stack + +#: Similarly, to switch back to the previous layout:: + +#: map ctrl+alt+p last_used_layout + +#: There is also a toggle_layout action that switches to the named +#: layout or back to the previous layout if in the named layout. +#: Useful to temporarily "zoom" the active window by switching to the +#: stack layout:: + +#: map ctrl+alt+z toggle_layout stack +#: }}} + +#: Font sizes {{{ + +#: You can change the font size for all top-level kitty OS windows at +#: a time or only the current one. + +#: Increase font size + +map kitty_mod+equal change_font_size all +2.0 +map kitty_mod+plus change_font_size all +2.0 +map kitty_mod+kp_add change_font_size all +2.0 +map cmd+plus change_font_size all +2.0 +map cmd+equal change_font_size all +2.0 +map shift+cmd+equal change_font_size all +2.0 + +#: Decrease font size + +map kitty_mod+minus change_font_size all -2.0 +map kitty_mod+kp_subtract change_font_size all -2.0 +map cmd+minus change_font_size all -2.0 +map shift+cmd+minus change_font_size all -2.0 + +#: Reset font size + +map kitty_mod+backspace change_font_size all 0 +map cmd+0 change_font_size all 0 + + +#: To setup shortcuts for specific font sizes:: + +#: map kitty_mod+f6 change_font_size all 10.0 + +#: To setup shortcuts to change only the current OS window's font +#: size:: + +#: map kitty_mod+f6 change_font_size current 10.0 +#: }}} + +#: Select and act on visible text {{{ + +#: Use the hints kitten to select text and either pass it to an +#: external program or insert it into the terminal or copy it to the +#: clipboard. + +#: Open URL + +map kitty_mod+e open_url_with_hints + +#:: Open a currently visible URL using the keyboard. The program used +#:: to open the URL is specified in open_url_with. + +#: Insert selected path + +map kitty_mod+p>f kitten hints --type path --program - + +#:: Select a path/filename and insert it into the terminal. Useful, +#:: for instance to run git commands on a filename output from a +#:: previous git command. + +#: Open selected path + +map kitty_mod+p>shift+f kitten hints --type path + +#:: Select a path/filename and open it with the default open program. + +#: Insert selected line + +map kitty_mod+p>l kitten hints --type line --program - + +#:: Select a line of text and insert it into the terminal. Useful for +#:: the output of things like: `ls -1`. + +#: Insert selected word + +map kitty_mod+p>w kitten hints --type word --program - + +#:: Select words and insert into terminal. + +#: Insert selected hash + +map kitty_mod+p>h kitten hints --type hash --program - + +#:: Select something that looks like a hash and insert it into the +#:: terminal. Useful with git, which uses SHA1 hashes to identify +#:: commits. + +#: Open the selected file at the selected line + +map kitty_mod+p>n kitten hints --type linenum + +#:: Select something that looks like filename:linenum and open it in +#:: vim at the specified line number. + +#: Open the selected hyperlink + +map kitty_mod+p>y kitten hints --type hyperlink + +#:: Select a hyperlink (i.e. a URL that has been marked as such by +#:: the terminal program, for example, by `ls --hyperlink=auto`). + + +#: The hints kitten has many more modes of operation that you can map +#: to different shortcuts. For a full description see hints kitten +#: . +#: }}} + +#: Miscellaneous {{{ + +#: Toggle fullscreen + +map kitty_mod+f11 toggle_fullscreen +map ctrl+cmd+f toggle_fullscreen + +#: Toggle maximized + +map kitty_mod+f10 toggle_maximized + +#: Toggle macOS secure keyboard entry + +map opt+cmd+s toggle_macos_secure_keyboard_entry + +#: Unicode input + +map kitty_mod+u kitten unicode_input +map ctrl+cmd+space kitten unicode_input + +#: Edit config file + +map kitty_mod+f2 edit_config_file +map cmd+, edit_config_file + +#: Open the kitty command shell + +map kitty_mod+escape kitty_shell window + +#:: Open the kitty shell in a new window / tab / overlay / os_window +#:: to control kitty using commands. + +#: Increase background opacity + +map kitty_mod+a>m set_background_opacity +0.1 + +#: Decrease background opacity + +map kitty_mod+a>l set_background_opacity -0.1 + +#: Make background fully opaque + +map kitty_mod+a>1 set_background_opacity 1 + +#: Reset background opacity + +map kitty_mod+a>d set_background_opacity default + +#: Reset the terminal + +map kitty_mod+delete clear_terminal reset active +map opt+cmd+r clear_terminal reset active + +#:: You can create shortcuts to clear/reset the terminal. For +#:: example:: + +#:: # Reset the terminal +#:: map f1 clear_terminal reset active +#:: # Clear the terminal screen by erasing all contents +#:: map f1 clear_terminal clear active +#:: # Clear the terminal scrollback by erasing it +#:: map f1 clear_terminal scrollback active +#:: # Scroll the contents of the screen into the scrollback +#:: map f1 clear_terminal scroll active +#:: # Clear everything up to the line with the cursor +#:: map f1 clear_terminal to_cursor active + +#:: If you want to operate on all kitty windows instead of just the +#:: current one, use all instead of active. + +#:: It is also possible to remap Ctrl+L to both scroll the current +#:: screen contents into the scrollback buffer and clear the screen, +#:: instead of just clearing the screen, for example, for ZSH add the +#:: following to ~/.zshrc: + +#:: .. code-block:: zsh + +#:: scroll-and-clear-screen() { +#:: printf '\n%.0s' {1..$LINES} +#:: zle clear-screen +#:: } +#:: zle -N scroll-and-clear-screen +#:: bindkey '^l' scroll-and-clear-screen + +#: Clear up to cursor line + +map cmd+k clear_terminal to_cursor active + +#: Reload kitty.conf + +map kitty_mod+f5 load_config_file +map ctrl+cmd+, load_config_file + +#:: Reload kitty.conf, applying any changes since the last time it +#:: was loaded. Note that a handful of options cannot be dynamically +#:: changed and require a full restart of kitty. Particularly, when +#:: changing shortcuts for actions located on the macOS global menu +#:: bar, a full restart is needed. You can also map a keybinding to +#:: load a different config file, for example:: + +#:: map f5 load_config /path/to/alternative/kitty.conf + +#:: Note that all options from the original kitty.conf are discarded, +#:: in other words the new configuration *replace* the old ones. + +#: Debug kitty configuration + +map kitty_mod+f6 debug_config +map opt+cmd+, debug_config + +#:: Show details about exactly what configuration kitty is running +#:: with and its host environment. Useful for debugging issues. + +#: Send arbitrary text on key presses + +#:: E.g. map ctrl+shift+alt+h send_text all Hello World + +#:: You can tell kitty to send arbitrary (UTF-8) encoded text to the +#:: client program when pressing specified shortcut keys. For +#:: example:: + +#:: map ctrl+alt+a send_text all Special text + +#:: This will send "Special text" when you press the Ctrl+Alt+A key +#:: combination. The text to be sent is a python string literal so +#:: you can use escapes like \x1b to send control codes or \u21fb to +#:: send Unicode characters (or you can just input the Unicode +#:: characters directly as UTF-8 text). You can use `kitty +kitten +#:: show_key` to get the key escape codes you want to emulate. + +#:: The first argument to send_text is the keyboard modes in which to +#:: activate the shortcut. The possible values are normal, +#:: application, kitty or a comma separated combination of them. The +#:: modes normal and application refer to the DECCKM cursor key mode +#:: for terminals, and kitty refers to the kitty extended keyboard +#:: protocol. The special value all means all of them. + +#:: Some more examples:: + +#:: # Output a word and move the cursor to the start of the line (like typing and pressing Home) +#:: map ctrl+alt+a send_text normal Word\x1b[H +#:: map ctrl+alt+a send_text application Word\x1bOH +#:: # Run a command at a shell prompt (like typing the command and pressing Enter) +#:: map ctrl+alt+a send_text normal,application some command with arguments\r + +#: Open kitty Website + +map shift+cmd+/ open_url https://sw.kovidgoyal.net/kitty/ + +#: }}} + +#: }}} + + +tab_bar_min_tabs 2 +tab_bar_edge bottom +tab_bar_style powerline +tab_powerline_style slanted +tab_title_template {title}{' :{}:'.format(num_windows) if num_windows > 1 else ''} + + +# The basic colors +foreground #CAD3F5 +background #24273A +selection_foreground #24273A +selection_background #F4DBD6 + +# Cursor colors +cursor #F4DBD6 +cursor_text_color #24273A + +# URL underline color when hovering with mouse +url_color #F4DBD6 + +# Kitty window border colors +active_border_color #B7BDF8 +inactive_border_color #6E738D +bell_border_color #EED49F + +# OS Window titlebar colors +wayland_titlebar_color system +macos_titlebar_color system + +# Tab bar colors +active_tab_foreground #181926 +active_tab_background #C6A0F6 +inactive_tab_foreground #CAD3F5 +inactive_tab_background #1E2030 +tab_bar_background #181926 + +# Colors for marks (marked text in the terminal) +mark1_foreground #24273A +mark1_background #B7BDF8 +mark2_foreground #24273A +mark2_background #C6A0F6 +mark3_foreground #24273A +mark3_background #7DC4E4 + +# The 16 terminal colors + +# black +color0 #494D64 +color8 #5B6078 + +# red +color1 #ED8796 +color9 #ED8796 + +# green +color2 #A6DA95 +color10 #A6DA95 + +# yellow +color3 #EED49F +color11 #EED49F + +# blue +color4 #8AADF4 +color12 #8AADF4 + +# magenta +color5 #F5BDE6 +color13 #F5BDE6 + +# cyan +color6 #8BD5CA +color14 #8BD5CA + +# white +color7 #B8C0E0 +color15 #A5ADCB \ No newline at end of file diff --git a/.config/neofetch/config.conf b/.config/neofetch/config.conf new file mode 100644 index 00000000..40861288 --- /dev/null +++ b/.config/neofetch/config.conf @@ -0,0 +1,754 @@ +# https://github.com/chick2d/neofetch-themes +# Made by https://gist.github.com/Talljoe + +print_info() { + prin "┌─────────\n Hardware Information \n─────────┐" + info " ​ ​  " cpu + info " ​ ​  " model + info " ​ ​ ﬙ " gpu + # info " ​ ​  " disk + info " ​ ​ 塞" memory + info " ​ ​  " resolution + # info " ​ ​ 󱈑 " battery + prin "├─────────\n Software Information \n─────────┤" + # info " ​ ​  " users + info " ​ ​  " distro + # Just get your distro's logo off nerdfonts.com + info " ​ ​  " kernel + # info " ​ ​  " de + info " ​ ​  " de + info " ​ ​  " shell + info " ​ ​  " term + info " ​ ​  " term_font + info " ​ ​  " font + info " ​ ​  " theme + info " ​ ​  " icons + info " ​ ​  " packages + + # info " ​ ​ 󰅐 " uptime + # info " ​ ​  " gpu_driver # Linux/macOS only + # info " ​ ​  " cpu_usage + # info " ​ ​ ﱘ " song + # [[ "$player" ]] && prin "Music Player" "$player" + # info " ​ ​  " local_ip + # info " ​ ​  " public_ip + # info " ​ ​  " locale # This only works on glibc systems. + prin "└───────────────────────────────────────┘" + prin "\n \n \n \n \n ${cl3} \n \n ${cl5} \n \n ${cl2} \n \n ${cl6} \n \n ${cl4} \n \n ${cl1} \n \n ${cl7} \n \n ${cl0}" +} +# info "Disk" disk + +# info "WM Theme" wm_theme + +# info "CPU Usage" cpu_usage +# info "Battery" battery +# info "Font" font +# info "Song" song +# [[ $player ]] && prin "Music Player" "$player" +# info "Local IP" local_ip +#info "Public IP" public_ip +# info "Users" users +# info "Locale" locale # This only works on glibc systems. + +# Colors for custom colorblocks +magenta="\033[1;35m" +green="\033[1;32m" +white="\033[1;37m" +blue="\033[1;34m" +red="\033[1;31m" +black="\033[1;40;30m" +yellow="\033[1;33m" +cyan="\033[1;36m" +reset="\033[0m" +bgyellow="\033[1;43;33m" +bgwhite="\033[1;47;37m" +cl0="${reset}" +cl1="${magenta}" +cl2="${green}" +cl3="${white}" +cl4="${blue}" +cl5="${red}" +cl6="${yellow}" +cl7="${cyan}" +cl8="${black}" +cl9="${bgyellow}" +cl10="${bgwhite}" + +# Kernel + +# Shorten the output of the kernel function. +# +# Default: 'on' +# Values: 'on', 'off' +# Flag: --kernel_shorthand +# Supports: Everything except *BSDs (except PacBSD and PC-BSD) +# +# Example: +# on: '4.8.9-1-ARCH' +# off: 'Linux 4.8.9-1-ARCH' +kernel_shorthand="on" + +# Distro + +# Shorten the output of the distro function +# +# Default: 'off' +# Values: 'on', 'off', 'tiny' +# Flag: --distro_shorthand +# Supports: Everything except Windows and Haiku +distro_shorthand="off" + +# Show/Hide OS Architecture. +# Show 'x86_64', 'x86' and etc in 'Distro:' output. +# +# Default: 'on' +# Values: 'on', 'off' +# Flag: --os_arch +# +# Example: +# on: 'Arch Linux x86_64' +# off: 'Arch Linux' +os_arch="on" + +# Uptime + +# Shorten the output of the uptime function +# +# Default: 'on' +# Values: 'on', 'off', 'tiny' +# Flag: --uptime_shorthand +# +# Example: +# on: '2 days, 10 hours, 3 mins' +# off: '2 days, 10 hours, 3 minutes' +# tiny: '2d 10h 3m' +uptime_shorthand="on" + +# Memory + +# Show memory pecentage in output. +# +# Default: 'off' +# Values: 'on', 'off' +# Flag: --memory_percent +# +# Example: +# on: '1801MiB / 7881MiB (22%)' +# off: '1801MiB / 7881MiB' +memory_percent="on" + +# Packages + +# Show/Hide Package Manager names. +# +# Default: 'tiny' +# Values: 'on', 'tiny' 'off' +# Flag: --package_managers +# +# Example: +# on: '998 (pacman), 8 (flatpak), 4 (snap)' +# tiny: '908 (pacman, flatpak, snap)' +# off: '908' +package_managers="on" + +# Shell + +# Show the path to $SHELL +# +# Default: 'off' +# Values: 'on', 'off' +# Flag: --shell_path +# +# Example: +# on: '/bin/bash' +# off: 'bash' +shell_path="off" + +# Show $SHELL version +# +# Default: 'on' +# Values: 'on', 'off' +# Flag: --shell_version +# +# Example: +# on: 'bash 4.4.5' +# off: 'bash' +shell_version="on" + +# CPU + +# CPU speed type +# +# Default: 'bios_limit' +# Values: 'scaling_cur_freq', 'scaling_min_freq', 'scaling_max_freq', 'bios_limit'. +# Flag: --speed_type +# Supports: Linux with 'cpufreq' +# NOTE: Any file in '/sys/devices/system/cpu/cpu0/cpufreq' can be used as a value. +speed_type="bios_limit" + +# CPU speed shorthand +# +# Default: 'off' +# Values: 'on', 'off'. +# Flag: --speed_shorthand +# NOTE: This flag is not supported in systems with CPU speed less than 1 GHz +# +# Example: +# on: 'i7-6500U (4) @ 3.1GHz' +# off: 'i7-6500U (4) @ 3.100GHz' +speed_shorthand="on" + +# Enable/Disable CPU brand in output. +# +# Default: 'on' +# Values: 'on', 'off' +# Flag: --cpu_brand +# +# Example: +# on: 'Intel i7-6500U' +# off: 'i7-6500U (4)' +cpu_brand="on" + +# CPU Speed +# Hide/Show CPU speed. +# +# Default: 'on' +# Values: 'on', 'off' +# Flag: --cpu_speed +# +# Example: +# on: 'Intel i7-6500U (4) @ 3.1GHz' +# off: 'Intel i7-6500U (4)' +cpu_speed="on" + +# CPU Cores +# Display CPU cores in output +# +# Default: 'logical' +# Values: 'logical', 'physical', 'off' +# Flag: --cpu_cores +# Support: 'physical' doesn't work on BSD. +# +# Example: +# logical: 'Intel i7-6500U (4) @ 3.1GHz' (All virtual cores) +# physical: 'Intel i7-6500U (2) @ 3.1GHz' (All physical cores) +# off: 'Intel i7-6500U @ 3.1GHz' +cpu_cores="logical" + +# CPU Temperature +# Hide/Show CPU temperature. +# Note the temperature is added to the regular CPU function. +# +# Default: 'off' +# Values: 'C', 'F', 'off' +# Flag: --cpu_temp +# Supports: Linux, BSD +# NOTE: For FreeBSD and NetBSD-based systems, you'll need to enable +# coretemp kernel module. This only supports newer Intel processors. +# +# Example: +# C: 'Intel i7-6500U (4) @ 3.1GHz [27.2°C]' +# F: 'Intel i7-6500U (4) @ 3.1GHz [82.0°F]' +# off: 'Intel i7-6500U (4) @ 3.1GHz' +cpu_temp="on" + +# GPU + +# Enable/Disable GPU Brand +# +# Default: 'on' +# Values: 'on', 'off' +# Flag: --gpu_brand +# +# Example: +# on: 'AMD HD 7950' +# off: 'HD 7950' +gpu_brand="on" + +# Which GPU to display +# +# Default: 'all' +# Values: 'all', 'dedicated', 'integrated' +# Flag: --gpu_type +# Supports: Linux +# +# Example: +# all: +# GPU1: AMD HD 7950 +# GPU2: Intel Integrated Graphics +# +# dedicated: +# GPU1: AMD HD 7950 +# +# integrated: +# GPU1: Intel Integrated Graphics +gpu_type="all" + +# Resolution + +# Display refresh rate next to each monitor +# Default: 'off' +# Values: 'on', 'off' +# Flag: --refresh_rate +# Supports: Doesn't work on Windows. +# +# Example: +# on: '1920x1080 @ 60Hz' +# off: '1920x1080' +refresh_rate="off" + +# Gtk Theme / Icons / Font + +# Shorten output of GTK Theme / Icons / Font +# +# Default: 'off' +# Values: 'on', 'off' +# Flag: --gtk_shorthand +# +# Example: +# on: 'Numix, Adwaita' +# off: 'Numix [GTK2], Adwaita [GTK3]' +gtk_shorthand="off" + +# Enable/Disable gtk2 Theme / Icons / Font +# +# Default: 'on' +# Values: 'on', 'off' +# Flag: --gtk2 +# +# Example: +# on: 'Numix [GTK2], Adwaita [GTK3]' +# off: 'Adwaita [GTK3]' +gtk2="on" + +# Enable/Disable gtk3 Theme / Icons / Font +# +# Default: 'on' +# Values: 'on', 'off' +# Flag: --gtk3 +# +# Example: +# on: 'Numix [GTK2], Adwaita [GTK3]' +# off: 'Numix [GTK2]' +gtk3="on" + +# IP Address + +# Website to ping for the public IP +# +# Default: 'http://ident.me' +# Values: 'url' +# Flag: --ip_host +public_ip_host="http://ident.me" + +# Public IP timeout. +# +# Default: '2' +# Values: 'int' +# Flag: --ip_timeout +public_ip_timeout=2 + +# Disk + +# Which disks to display. +# The values can be any /dev/sdXX, mount point or directory. +# NOTE: By default we only show the disk info for '/'. +# +# Default: '/' +# Values: '/', '/dev/sdXX', '/path/to/drive'. +# Flag: --disk_show +# +# Example: +# disk_show=('/' '/dev/sdb1'): +# 'Disk (/): 74G / 118G (66%)' +# 'Disk (/mnt/Videos): 823G / 893G (93%)' +# +# disk_show=('/'): +# 'Disk (/): 74G / 118G (66%)' +# +disk_show=('/') + +# Disk subtitle. +# What to append to the Disk subtitle. +# +# Default: 'mount' +# Values: 'mount', 'name', 'dir' +# Flag: --disk_subtitle +# +# Example: +# name: 'Disk (/dev/sda1): 74G / 118G (66%)' +# 'Disk (/dev/sdb2): 74G / 118G (66%)' +# +# mount: 'Disk (/): 74G / 118G (66%)' +# 'Disk (/mnt/Local Disk): 74G / 118G (66%)' +# 'Disk (/mnt/Videos): 74G / 118G (66%)' +# +# dir: 'Disk (/): 74G / 118G (66%)' +# 'Disk (Local Disk): 74G / 118G (66%)' +# 'Disk (Videos): 74G / 118G (66%)' +disk_subtitle="dir" + +# Song + +# Manually specify a music player. +# +# Default: 'auto' +# Values: 'auto', 'player-name' +# Flag: --music_player +# +# Available values for 'player-name': +# +# amarok +# audacious +# banshee +# bluemindo +# clementine +# cmus +# deadbeef +# deepin-music +# dragon +# elisa +# exaile +# gnome-music +# gmusicbrowser +# guayadeque +# iTunes +# juk +# lollypop +# mocp +# mopidy +# mpd +# netease-cloud-music +# pogo +# pragha +# qmmp +# quodlibet +# rhythmbox +# sayonara +# smplayer +# spotify +# tomahawk +# vlc +# xmms2d +# yarock +music_player="auto" + +# Format to display song information. +# +# Default: '%artist% - %album% - %title%' +# Values: '%artist%', '%album%', '%title%' +# Flag: --song_format +# +# Example: +# default: 'Song: Jet - Get Born - Sgt Major' +song_format="%artist% - %album% - %title%" + +# Print the Artist, Album and Title on separate lines +# +# Default: 'off' +# Values: 'on', 'off' +# Flag: --song_shorthand +# +# Example: +# on: 'Artist: The Fratellis' +# 'Album: Costello Music' +# 'Song: Chelsea Dagger' +# +# off: 'Song: The Fratellis - Costello Music - Chelsea Dagger' +song_shorthand="off" + +# 'mpc' arguments (specify a host, password etc). +# +# Default: '' +# Example: mpc_args=(-h HOST -P PASSWORD) +mpc_args=() + +# Text Colors + +# Text Colors +# +# Default: 'distro' +# Values: 'distro', 'num' 'num' 'num' 'num' 'num' 'num' +# Flag: --colors +# +# Each number represents a different part of the text in +# this order: 'title', '@', 'underline', 'subtitle', 'colon', 'info' +# +# Example: +# colors=(distro) - Text is colored based on Distro colors. +# colors=(4 6 1 8 8 6) - Text is colored in the order above. +colors=(5 5 6 1 5 7) + +# Text Options + +# Toggle bold text +# +# Default: 'on' +# Values: 'on', 'off' +# Flag: --bold +bold="on" + +# Enable/Disable Underline +# +# Default: 'on' +# Values: 'on', 'off' +# Flag: --underline +underline_enabled="on" + +# Underline character +# +# Default: '-' +# Values: 'string' +# Flag: --underline_char +underline_char="-" + +# Info Separator +# Replace the default separator with the specified string. +# +# Default: ':' +# Flag: --separator +# +# Example: +# separator="->": 'Shell-> bash' +# separator=" =": 'WM = dwm' +separator=" ➜" + +# Color Blocks + +# Color block range +# The range of colors to print. +# +# Default: '0', '7' +# Values: 'num' +# Flag: --block_range +# +# Example: +# +# Display colors 0-7 in the blocks. (8 colors) +# neofetch --block_range 0 7 +# +# Display colors 0-15 in the blocks. (16 colors) +# neofetch --block_range 0 15 +block_range=(0 7) + +# Toggle color blocks +# +# Default: 'on' +# Values: 'on', 'off' +# Flag: --color_blocks +color_blocks="on" + +# Color block width in spaces +# +# Default: '3' +# Values: 'num' +# Flag: --block_width +block_width=3 + +# Color block height in lines +# +# Default: '1' +# Values: 'num' +# Flag: --block_height +block_height=1 + +# Progress Bars + +# Bar characters +# +# Default: '-', '=' +# Values: 'string', 'string' +# Flag: --bar_char +# +# Example: +# neofetch --bar_char 'elapsed' 'total' +# neofetch --bar_char '-' '=' +bar_char_elapsed="-" +bar_char_total="=" + +# Toggle Bar border +# +# Default: 'on' +# Values: 'on', 'off' +# Flag: --bar_border +bar_border="on" + +# Progress bar length in spaces +# Number of chars long to make the progress bars. +# +# Default: '15' +# Values: 'num' +# Flag: --bar_length +bar_length=15 + +# Progress bar colors +# When set to distro, uses your distro's logo colors. +# +# Default: 'distro', 'distro' +# Values: 'distro', 'num' +# Flag: --bar_colors +# +# Example: +# neofetch --bar_colors 3 4 +# neofetch --bar_colors distro 5 +bar_color_elapsed="distro" +bar_color_total="distro" + +# Info display +# Display a bar with the info. +# +# Default: 'off' +# Values: 'bar', 'infobar', 'barinfo', 'off' +# Flags: --cpu_display +# --memory_display +# --battery_display +# --disk_display +# +# Example: +# bar: '[---=======]' +# infobar: 'info [---=======]' +# barinfo: '[---=======] info' +# off: 'info' +cpu_display="off" +memory_display="info" +battery_display="bar" +disk_display="bar" + +# Backend Settings + +# Image backend. +# +# Default: 'ascii' +# Values: 'ascii', 'caca', 'chafa', 'jp2a', 'iterm2', 'off', +# 'termpix', 'pixterm', 'tycat', 'w3m', 'kitty' +# Flag: --backend +image_backend="kitty" + +# Image Source +# +# Which image or ascii file to display. +# +# Default: 'auto' +# Values: 'auto', 'ascii', 'wallpaper', '/path/to/img', '/path/to/ascii', '/path/to/dir/' +# 'command output (neofetch --ascii "$(fortune | cowsay -W 30)")' +# Flag: --source +# +# NOTE: 'auto' will pick the best image source for whatever image backend is used. +# In ascii mode, distro ascii art will be used and in an image mode, your +# wallpaper will be used. +image_source="/docs/Imagenes/Edicion Imagen/Trabajos/logo.png" + +# Ascii Options + +# Ascii distro +# Which distro's ascii art to display. +# +# Default: 'auto' +# Values: 'auto', 'distro_name' +# Flag: --ascii_distro +# +# NOTE: Arch and Ubuntu have 'old' logo variants. +# Change this to 'arch_old' or 'ubuntu_old' to use the old logos. +# NOTE: Ubuntu has flavor variants. +# Change this to 'Lubuntu', 'Xubuntu', 'Ubuntu-GNOME' or 'Ubuntu-Budgie' to use the flavors. +# NOTE: Arch, Crux and Gentoo have a smaller logo variant. +# Change this to 'arch_small', 'crux_small' or 'gentoo_small' to use the small logos. +ascii_distro="auto" + +# Ascii Colors +# +# Default: 'distro' +# Values: 'distro', 'num' 'num' 'num' 'num' 'num' 'num' +# Flag: --ascii_colors +# +# Example: +# ascii_colors=(distro) - Ascii is colored based on Distro colors. +# ascii_colors=(4 6 1 8 8 6) - Ascii is colored using these colors. +ascii_colors=(distro) + +# Bold ascii logo +# Whether or not to bold the ascii logo. +# +# Default: 'on' +# Values: 'on', 'off' +# Flag: --ascii_bold +ascii_bold="on" + +# Image Options + +# Image loop +# Setting this to on will make neofetch redraw the image constantly until +# Ctrl+C is pressed. This fixes display issues in some terminal emulators. +# +# Default: 'off' +# Values: 'on', 'off' +# Flag: --loop +image_loop="off" + +# Thumbnail directory +# +# Default: '~/.cache/thumbnails/neofetch' +# Values: 'dir' +thumbnail_dir="${XDG_CACHE_HOME:-${HOME}/.cache}/thumbnails/neofetch" + +# Crop mode +# +# Default: 'normal' +# Values: 'normal', 'fit', 'fill' +# Flag: --crop_mode +# +# See this wiki page to learn about the fit and fill options. +# https://github.com/dylanaraps/neofetch/wiki/What-is-Waifu-Crop%3F +crop_mode="normal" + +# Crop offset +# Note: Only affects 'normal' crop mode. +# +# Default: 'center' +# Values: 'northwest', 'north', 'northeast', 'west', 'center' +# 'east', 'southwest', 'south', 'southeast' +# Flag: --crop_offset +crop_offset="center" + +# Image size +# The image is half the terminal width by default. +# +# Default: 'auto' +# Values: 'auto', '00px', '00%', 'none' +# Flags: --image_size +# --size +image_size="300px" + +# Gap between image and text +# +# Default: '3' +# Values: 'num', '-num' +# Flag: --gap +gap=3 + +# Image offsets +# Only works with the w3m backend. +# +# Default: '0' +# Values: 'px' +# Flags: --xoffset +# --yoffset +yoffset=0 +xoffset=0 + +# Image background color +# Only works with the w3m backend. +# +# Default: '' +# Values: 'color', 'blue' +# Flag: --bg_color +background_color= + +# Misc Options + +# Stdout mode +# Turn off all colors and disables image backend (ASCII/Image). +# Useful for piping into another command. +# Default: 'off' +# Values: 'on', 'off' +stdout="off" diff --git a/.config/rofi/config.rasi b/.config/rofi/config.rasi new file mode 100644 index 00000000..60db4f13 --- /dev/null +++ b/.config/rofi/config.rasi @@ -0,0 +1,87 @@ +configuration { + /*---------- General setting ----------*/ + modi: "drun,run,filebrowser,window"; + case-sensitive: false; + cycle: true; + filter: ""; + scroll-method: 0; + normalize-match: true; + show-icons: true; + icon-theme: "Catppuccin-SE"; + steal-focus: false; + + /*---------- Matching setting ----------*/ + matching: "normal"; + tokenize: true; + + /*---------- SSH settings ----------*/ + ssh-client: "ssh"; + ssh-command: "{terminal} -e {ssh-client} {host} [-p {port}]"; + parse-hosts: true; + parse-known-hosts: true; + + /*---------- Drun settings ----------*/ + drun-categories: ""; + drun-match-fields: "name,generic,exec,categories,keywords"; + drun-display-format: "{name} [({generic})]"; + drun-show-actions: false; + drun-url-launcher: "xdg-open"; + drun-use-desktop-cache: false; + drun-reload-desktop-cache: false; + drun { + /** Parse user desktop files. */ + parse-user: true; + /** Parse system desktop files. */ + parse-system: true; + } + + /*---------- Run settings ----------*/ + run-command: "{cmd}"; + run-list-command: ""; + run-shell-command: "{terminal} -e {cmd}"; + + /*---------- Fallback Icon ----------*/ + run,drun { + fallback-icon: "application-x-addon"; + } + + /*---------- Window switcher settings ----------*/ + window-match-fields: "title,class,role,name,desktop"; + window-command: "wmctrl -i -R {window}"; + window-format: "{w} - {c} - {t:0}"; + window-thumbnail: false; + + /*---------- History and Sorting ----------*/ + disable-history: false; + sorting-method: "normal"; + max-history-size: 25; + + /*---------- Display setting ----------*/ + display-window: "Windows"; + display-windowcd: "Window CD"; + display-run: "Run"; + display-ssh: "SSH"; + display-drun: "Apps"; + display-combi: "Combi"; + display-keys: "Keys"; + display-filebrowser: "Files"; + + /*---------- Misc setting ----------*/ + terminal: "rofi-sensible-terminal"; + font: "Mono 12"; + sort: false; + threads: 0; + click-to-exit: true; + + /*---------- File browser settings ----------*/ + filebrowser { + directories-first: true; + sorting-method: "name"; + } + + /*---------- Other settings ----------*/ + timeout { + action: "kb-cancel"; + delay: 0; + } +} diff --git a/.config/rofi/style.rasi b/.config/rofi/style.rasi new file mode 100644 index 00000000..0e27815d --- /dev/null +++ b/.config/rofi/style.rasi @@ -0,0 +1,175 @@ +/*****----- Configuration -----*****/ +configuration { + modi: "drun,filebrowser,window"; + show-icons: true; + display-drun: "Apps"; + display-run: "Run"; + display-filebrowser: "Files"; + display-window: "Windows"; + drun-display-format: "{name}\n[({generic})]"; + window-format: "Class : {c}\nWorkspace : {w}"; +} + +/*****----- Global Properties -----*****/ +* { + font: "JetBrains Mono Nerd Font 10"; +} + +/*****----- Main Window -----*****/ +window { + /* properties for window widget */ + transparency: "real"; + location: center; + anchor: center; + fullscreen: false; + border: 2px; + border-radius: 15px; + border-color: #B7BDF87F; + width: 500px; + x-offset: 0px; + y-offset: 0px; + + /* properties for all widgets */ + enabled: true; + margin: 0px; + padding: 0px; + border-radius: 20px; + cursor: "default"; + background-color: #24273A; +} + +/*****----- Main Box -----*****/ +mainbox { + enabled: true; + spacing: 15px; + padding: 30px; + background-color: transparent; + children: [ "inputbar", "mode-switcher", "listview" ]; +} + +/*****----- Inputbar -----*****/ +inputbar { + enabled: true; + spacing: 15px; + margin: 0px; + background-color: transparent; + children: [ "textbox-prompt-colon", "entry" ]; + +} + +textbox-prompt-colon { + enabled: true; + expand: false; + padding: 12px 16px; + border: 0px; + border-radius: 10px; + border-color: gray/30%; + background-color: gray/15%; + text-color: #CAD3F5; + str: ""; +} +entry { + enabled: true; + padding: 12px 16px; + border: 0px; + border-radius: 10px; + border-color: gray/30%; + background-color: gray/15%; + text-color: #CAD3F5; + cursor: text; + placeholder: "Search..."; + placeholder-color: inherit; + vertical-align: 0.5; + horizontal-align: 0.0; + +} + +/*****----- Listview -----*****/ +listview { + enabled: true; + columns: 1; + lines: 5; + cycle: true; + dynamic: true; + scrollbar: false; + layout: vertical; + reverse: false; + fixed-height: true; + fixed-columns: true; + + spacing: 10px; + background-color: transparent; + cursor: "default"; +} + +/*****----- Elements -----*****/ +element { + enabled: true; + spacing: 10px; + margin: 0px; + padding: 10px; + border: 0px solid; + border-radius: 15px; + background-color: transparent; + text-color: #CAD3F5; + cursor: pointer; +} +element normal.active { + background-image: linear-gradient(to right, #19B466, #7BF4B7); + text-color: #CAD3F5; +} +element selected.normal { + border-radius: 15px; + background-image: linear-gradient(to right, #363A4F, #B7BDF89F); + text-color: #CAD3F5; +} +element selected.active { + background-image: linear-gradient(to right, #EA5553, #EAACAB); + text-color: #CAD3F5; +} +element-icon { + background-color: transparent; + size: 48px; + cursor: inherit; +} +element-text { + background-color: inherit; + text-color: inherit; + cursor: inherit; + vertical-align: 0.5; + horizontal-align: 0.0; +} + +/*****----- Mode Switcher -----*****/ +mode-switcher{ + enabled: true; + expand: false; + spacing: 15px; + background-color: #24273A; +} +button { + font: "JetBrains Mono Nerd Font 10"; + padding: 10px; + border-radius: 100%; + background-image: linear-gradient(#939ab7); + text-color: #24273A; + cursor: pointer; +} +button selected { + background-image: linear-gradient(#B7BDF89F); + text-color: #24273A; +} + +/*****----- Message -----*****/ +error-message { + padding: 20px; + background-color: #24273A; + text-color: #CAD3F5; +} +textbox { + padding: 0px; + border-radius: 0px; + text-color: #CAD3F5; + vertical-align: 0.5; + horizontal-align: 0.0; +} diff --git a/.config/sway/idle.sh b/.config/sway/idle.sh new file mode 100755 index 00000000..112e49cc --- /dev/null +++ b/.config/sway/idle.sh @@ -0,0 +1,5 @@ +#!/bin/sh + +swayidle -w -d \ + timeout 600 '~/.config/sway/lock.sh -f --grace 12 --fade-in 10' \ + before-sleep 'pgrep swaylock || ~/.config/sway/lock.sh -f --fade-in 0 && true' diff --git a/.config/sway/lock.sh b/.config/sway/lock.sh new file mode 100755 index 00000000..0d367243 --- /dev/null +++ b/.config/sway/lock.sh @@ -0,0 +1,22 @@ +#!/bin/sh + +swaylock --screenshots --clock --indicator-idle-visible \ + --indicator-radius 100 \ + --indicator-thickness 12 \ + --ignore-empty-password \ + --ring-color 494d64 \ + --key-hl-color ed8796 \ + --text-color b7bdf8 \ + --line-color b7bdf8 \ + --inside-color 24273a \ + --separator-color b7bdf8 \ + --inside-ver-color 8bd5ca \ + --inside-wrong-color ed8796 \ + --line-ver-color 8bd5ca \ + --ring-ver-color 8bd5ca \ + --line-wrong-color ed8796 \ + --ring-wrong-color ed8796 \ + --fade-in 0.5 \ + --effect-scale 0.5 --effect-blur 7x3 --effect-scale 2 \ + --effect-vignette 0.5:0.9 \ + "$@" diff --git a/.config/waybar/config b/.config/waybar/config new file mode 100644 index 00000000..3654f9fd --- /dev/null +++ b/.config/waybar/config @@ -0,0 +1,711 @@ +[ + { + "height": 50, + "layer": "top", + "output": "DP-1", + "mod": "dock", + "exclusive": true, + "passtrough": false, + "margin-top": 10, + "margin-left": 17, + "margin-bottom": 0, + "margin-right": 17, + "modules-left": [ + "custom/arch", + "wlr/workspaces" + ], + "modules-center": [ + "custom/music" + ], + "modules-right": [ + "clock", + "pulseaudio", + "custom/notifications" + ], + "custom/arch": { + "format": "  ", + "tooltip": false, + "on-click": "wleave", + "on-click-right": "wleave" + }, + "custom/weather": { + "exec": "python3 ~/.config/waybar/scripts/weather.py", + "restart-interval": 300, + "return-type": "json", + "on-click": "xdg-open https://www.eltiempo.es/alicante.html" + }, + "custom/updates": { + "format": "{} {icon}", + "return-type": "json", + "format-icons": { + "has-updates": "󱍷", + "updated": "󰂪" + }, + "exec-if": "which waybar-module-pacman-updates", + "exec": "waybar-module-pacman-updates" + }, + "custom/notifications": { + "tooltip": false, + "format": "{} {icon}", + "format-icons": { + "notification": "", + "none": "", + "dnd-notification": "", + "dnd-none": "", + "inhibited-notification": "", + "inhibited-none": "", + "dnd-inhibited-notification": "", + "dnd-inhibited-none": "" + }, + "return-type": "json", + "exec-if": "which swaync-client", + "exec": "swaync-client -swb", + "on-click": "swaync-client -t -sw", + "on-click-right": "swaync-client -d -sw", + "escape": true + }, + "wlr/workspaces": { + "disable-scroll": true, + "all-outputs": false, + "enable-bar-scroll": true, + "format": "{icon}", + "format-icons": { + "1": "", + "2": "", + "3": "🖵", + "4": "", + "5": "", + "6": "🎜", + "7": "", + "8": "", + "9": "", + "10": "", + "11": "", + "12": "", + "13": "🖵", + "14": "", + "15": "", + "16": "🎜", + "17": "", + "18": "", + "19": "", + "20": "", + "21": "", + "22": "󰍨", + "23": "✉", + "24": "🖵", + "25": "", + "26": "", + "27": "", + "28": "", + "29": "", + "30": "", + "urgent": " ", + "focused": " ", + "default": " " + }, + "on-scroll-up": "hyprctl dispatch workspace m-1", + "on-scroll-down": "hyprctl dispatch workspace m+1", + "on-click": "activate", + "sort-by-number": true + }, + "sway/mode": { + "format": "{}" + }, + "sway/language": { + "format": "{short} ⠀⠀" + }, + "idle_inhibitor": { + "format": "{icon}", + "format-icons": { + "activated": " ", + "deactivated": " " + } + }, + "tray": { + "spacing": 10 + }, + "clock": { + "tooltip-format": "{:%Y %B \t week: %V }\n{calendar}", + "format": "{:%H:%M}  ", + "format-alt": "{:%A, %B %d, %Y}  " + }, + "cpu": { + "on-click": "kitty btop", + "format": "{usage}%  ", + "tooltip": false, + "interval": 2 + }, + "memory": { + "format": "{}%  ", + "on-click": "kitty btop", + "tooltip": true, + "interval": 2 + }, + "temperature": { + "critical-threshold": 80, + "format-critical": "{icon} {temperatureC}°C", + "format": "{icon} {temperatureC}°C", + "format-icons": [ + "", + "", + "" + ], + "tooltip": true, + "on-click": "kitty btop", + "interval": 2 + }, + "backlight": { + "format": "{icon} {percent}%", + "format-icons": [ + " ", + " " + ], + "on-scroll-up": "light -A 1", + "on-scroll-down": "light -U 1" + }, + "battery": { + "states": { + "warning": 30, + "critical": 15 + }, + "format": "{icon} {capacity}%", + "tooltip-format": "{timeTo}, {capacity}%", + "format-charging": " {capacity}%", + "format-plugged": " ", + "format-alt": "{time} {icon}", + "format-icons": [ + "", + "", + "", + "", + "" + ] + }, + "network": { + "format-wifi": "直 ", + "format-ethernet": "{ifname}: {ipaddr}/{cidr}  ", + "format-linked": "{ifname} (No IP)  ", + "format-disconnected": "睊 ", + "format-alt": "{ifname}: {ipaddr}/{cidr}", + "tooltip-format": "{essid} {signalStrength}%" + }, + "pulseaudio": { + "format": "{icon} {volume}% {format_source}", + "format-bluetooth": "{icon} {volume}% {format_source}", + "format-bluetooth-muted": "  {volume}% {format_source}", + "format-muted": " {format_source}", + "format-source": " ", + "format-source-muted": " ", + "format-icons": { + "headphone": " ", + "hands-free": " ", + "headset": " ", + "phone": " ", + "portable": " ", + "car": " ", + "default": [ + " ", + " ", + " " + ] + }, + "tooltip-format": "{desc}, {volume}%", + "on-click": "pactl set-sink-mute @DEFAULT_SINK@ toggle", + "on-click-right": "pactl set-source-mute @DEFAULT_SOURCE@ toggle", + "on-click-middle": "pavucontrol" + }, + "custom/music": { + "format": "{icon} {}", + "return-type": "json", + "max-length": 100, + "format-icons": { + "spotify": " ", + "default": " " + }, + "escape": true, + "exec": "$HOME/.config/waybar/scripts/mediaplayer.py 2> /dev/null", + "on-click": "playerctl play-pause", + "on-scroll-up": "playerctl next", + "on-scroll-down": "playerctl previous" + }, + "custom/fans": { + "format": "{}", + "exec": "$HOME/.config/waybar/scripts/fans.sh", + "escape": true, + "restart-interval": 10 + } + }, + { + "height": 50, + "layer": "top", + "output": "HDMI-A-1", + "margin-top": 10, + "margin-left": 17, + "margin-bottom": 0, + "margin-right": 17, + "modules-left": [ + "custom/arch", + "wlr/workspaces" + ], + "modules-center": [ + "custom/music" + ], + "modules-right": [ + "clock", + "custom/weather", + "custom/notifications" + ], + "custom/arch": { + "format": "  ", + "tooltip": false, + "on-click": "wleave", + "on-click-right": "wleave" + }, + "custom/weather": { + "exec": "python3 ~/.config/waybar/scripts/weather.py", + "restart-interval": 300, + "return-type": "json", + "on-click": "xdg-open https://www.eltiempo.es/alicante.html" + }, + "custom/notifications": { + "tooltip": false, + "format": "{} {icon}", + "format-icons": { + "notification": "", + "none": "", + "dnd-notification": "", + "dnd-none": "", + "inhibited-notification": "", + "inhibited-none": "", + "dnd-inhibited-notification": "", + "dnd-inhibited-none": "" + }, + "return-type": "json", + "exec-if": "which swaync-client", + "exec": "swaync-client -swb", + "on-click": "swaync-client -t -sw", + "on-click-right": "swaync-client -d -sw", + "escape": true + }, + "wlr/workspaces": { + "disable-scroll": true, + "all-outputs": false, + "enable-bar-scroll": true, + "format": "{icon}", + "format-icons": { + "1": "", + "2": "", + "3": "🖵", + "4": "", + "5": "", + "6": "🎜", + "7": "", + "8": "", + "9": "", + "10": "", + "11": "", + "12": "", + "13": "🖵", + "14": "", + "15": "", + "16": "🎜", + "17": "", + "18": "", + "19": "", + "20": "", + "21": "", + "22": "󰍨", + "23": "✉", + "24": "🖵", + "25": "", + "26": "", + "27": "", + "28": "", + "29": "", + "30": "", + "urgent": "", + "focused": "", + "default": "" + }, + "on-scroll-up": "hyprctl dispatch workspace m-1", + "on-scroll-down": "hyprctl dispatch workspace m+1", + "on-click": "activate", + "sort-by-number": true + }, + "sway/mode": { + "format": "{}" + }, + "sway/language": { + "format": "{short} ⠀⠀" + }, + "idle_inhibitor": { + "format": "{icon}", + "format-icons": { + "activated": " ", + "deactivated": " " + } + }, + "tray": { + "spacing": 10 + }, + "clock": { + "format": "{:%H:%M}  ", + "format-alt": " {:%A %B %d %Y (%V) | %r}", + "tooltip-format": "{:%Y %B}\n{calendar}", + "calendar-weeks-pos": "right", + "today-format": "{}", + "format-calendar": "{}", + "format-calendar-weeks": "W{:%U}", + "format-calendar-weekdays": "{}", + }, + "cpu": { + "on-click": "kitty btop", + "format": "{usage}%  ", + "tooltip": false, + "interval": 2 + }, + "memory": { + "format": "{}%  ", + "on-click": "kitty btop", + "tooltip": true, + "interval": 2 + }, + "temperature": { + "critical-threshold": 80, + "format-critical": "{icon} {temperatureC}°C", + "format": "{icon} {temperatureC}°C", + "format-icons": [ + "", + "", + "" + ], + "tooltip": true, + "on-click": "kitty btop", + "interval": 2 + }, + "backlight": { + "format": "{icon} {percent}%", + "format-icons": [ + " ", + " " + ], + "on-scroll-up": "light -A 1", + "on-scroll-down": "light -U 1" + }, + "battery": { + "states": { + "warning": 30, + "critical": 15 + }, + "format": "{icon} {capacity}%", + "tooltip-format": "{timeTo}, {capacity}%", + "format-charging": " {capacity}%", + "format-plugged": " ", + "format-alt": "{time} {icon}", + "format-icons": [ + "", + "", + "", + "", + "" + ] + }, + "network": { + "format-wifi": "直 ", + "format-ethernet": "{ifname}: {ipaddr}/{cidr}  ", + "format-linked": "{ifname} (No IP)  ", + "format-disconnected": "睊 ", + "format-alt": "{ifname}: {ipaddr}/{cidr}", + "tooltip-format": "{essid} {signalStrength}%" + }, + "pulseaudio": { + "format": "{icon} {volume}% {format_source}", + "format-bluetooth": "{icon} {volume}% {format_source}", + "format-bluetooth-muted": "  {volume}% {format_source}", + "format-muted": " {format_source}", + "format-source": " ", + "format-source-muted": " ", + "format-icons": { + "headphone": " ", + "hands-free": " ", + "headset": " ", + "phone": " ", + "portable": " ", + "car": " ", + "default": [ + " ", + " ", + " " + ] + }, + "tooltip-format": "{desc}, {volume}%", + "on-click": "pactl set-sink-mute @DEFAULT_SINK@ toggle", + "on-click-right": "pactl set-source-mute @DEFAULT_SOURCE@ toggle", + "on-click-middle": "pavucontrol" + }, + "custom/music": { + "format": "{icon} {}", + "return-type": "json", + "max-length": 100, + "format-icons": { + "spotify": " ", + "default": " " + }, + "escape": true, + "exec": "$HOME/.config/waybar/scripts/mediaplayer.py 2> /dev/null", + "on-click": "playerctl play-pause", + "on-scroll-up": "playerctl next", + "on-scroll-down": "playerctl previous", + }, + "custom/fans": { + "format": "{}", + "exec": "$HOME/.config/waybar/scripts/fans.sh", + "escape": true, + "restart-interval": 10, + } + }, + { + "height": 50, + "layer": "top", + "output": "DP-3", + "margin-top": 10, + "margin-left": 17, + "margin-bottom": 0, + "margin-right": 17, + "modules-left": [ + "custom/arch", + "wlr/workspaces" + ], + "modules-center": [ + "custom/music" + ], + "modules-right": [ + "memory", + "cpu", + "temperature", + "custom/gpu-usage", + "custom/gpu-temp", + "tray" + ], + "custom/arch": { + "format": "  ", + "tooltip": false, + "on-click": "wleave", + "on-click-right": "wleave", + }, + "custom/weather": { + "exec": "python3 ~/.config/waybar/scripts/weather.py", + "restart-interval": 300, + "return-type": "json", + "on-click": "xdg-open https://www.eltiempo.es/alicante.html" + }, + "custom/notifications": { + "tooltip": false, + "format": "{} {icon}", + "format-icons": { + "notification": "", + "none": "", + "dnd-notification": "", + "dnd-none": "", + "inhibited-notification": "", + "inhibited-none": "", + "dnd-inhibited-notification": "", + "dnd-inhibited-none": "" + }, + "return-type": "json", + "exec-if": "which swaync-client", + "exec": "swaync-client -swb", + "on-click": "swaync-client -t -sw", + "on-click-right": "swaync-client -d -sw", + "escape": true + }, + "wlr/workspaces": { + "disable-scroll": true, + "active-only": false, + "all-outputs": false, + "enable-bar-scroll": true, + "format": "{icon}", + "format-icons": { + "1": "", + "2": "", + "3": "🖵", + "4": "", + "5": "", + "6": "🎜", + "7": "", + "8": "", + "9": "", + "10": "", + "11": "", + "12": "", + "13": "🖵", + "14": "", + "15": "", + "16": "🎜", + "17": "", + "18": "", + "19": "", + "20": "", + "21": "", + "22": "󰍨", + "23": "✉", + "24": "🖵", + "25": "", + "26": "", + "27": "", + "28": "", + "29": "", + "30": "", + "urgent": "", + "focused": "", + "default": "" + }, + "on-scroll-up": "hyprctl dispatch workspace m-1", + "on-scroll-down": "hyprctl dispatch workspace m+1", + "on-click": "activate", + "sort-by-number": true + }, + "sway/mode": { + "format": "{}" + }, + "sway/language": { + "format": "{short} ⠀⠀" + }, + "idle_inhibitor": { + "format": "{icon}", + "format-icons": { + "activated": " ", + "deactivated": " " + } + }, + "tray": { + "spacing": 10 + }, + "clock": { + "tooltip-format": "{:%Y %B}\n{calendar}", + "format": "{:%H:%M}  ", + "format-alt": "{:%A, %B %d, %Y}  " + }, + "cpu": { + "on-click": "kitty --class btop-kitty btop", + "format": "CPU: {usage}%", + "tooltip": false, + "interval": 2 + }, + "custom/gpu-usage": { + "exec": "cat /sys/class/hwmon/hwmon1/device/gpu_busy_percent", + "on-click": "kitty --class nvtop-kitty nvtop", + "format": "GPU: {}%", + "return-type": "", + "interval": 2 + }, + "memory": { + "format": "{}%  ", + "on-click": "kitty --class btop-kitty btop", + "tooltip": true, + "interval": 2 + }, + "temperature": { + "critical-threshold": 80, + "on-click": "kitty --class btop-kitty btop", + "hwmon-path": "/sys/class/hwmon/hwmon2/temp1_input", + "format-critical": "{icon} {temperatureC}°C", + "format": "{icon} {temperatureC}°C", + "format-icons": [ + "", + "", + "" + ], + "tooltip": true, + "interval": 2 + }, + "custom/gpu-temp": { + "exec": "cat /sys/class/hwmon/hwmon1/temp1_input | cut -b 1-2", + "on-click": "kitty --class nvtop-kitty nvtop", + "format": " {}°C", + "return-type": "", + "interval": 2 + }, + "backlight": { + "format": "{icon} {percent}%", + "format-icons": [ + " ", + " " + ], + "on-scroll-up": "light -A 1", + "on-scroll-down": "light -U 1" + }, + "battery": { + "states": { + "warning": 30, + "critical": 15 + }, + "format": "{icon} {capacity}%", + "tooltip-format": "{timeTo}, {capacity}%", + "format-charging": " {capacity}%", + "format-plugged": " ", + "format-alt": "{time} {icon}", + "format-icons": [ + "", + "", + "", + "", + "" + ] + }, + "network": { + "format-wifi": "直 ", + "format-ethernet": "{ifname}: {ipaddr}/{cidr}  ", + "format-linked": "{ifname} (No IP)  ", + "format-disconnected": "睊 ", + "format-alt": "{ifname}: {ipaddr}/{cidr}", + "tooltip-format": "{essid} {signalStrength}%" + }, + "pulseaudio": { + "format": "{icon} {volume}% {format_source}", + "format-bluetooth": "{icon} {volume}% {format_source}", + "format-bluetooth-muted": "  {volume}% {format_source}", + "format-muted": " {format_source}", + "format-source": " ", + "format-source-muted": " ", + "format-icons": { + "headphone": " ", + "hands-free": " ", + "headset": " ", + "phone": " ", + "portable": " ", + "car": " ", + "default": [ + " ", + " ", + " " + ] + }, + "tooltip-format": "{desc}, {volume}%", + "on-click": "pactl set-sink-mute @DEFAULT_SINK@ toggle", + "on-click-right": "pactl set-source-mute @DEFAULT_SOURCE@ toggle", + "on-click-middle": "pavucontrol" + }, + "custom/music": { + "format": "{icon} {}", + "return-type": "json", + "max-length": 100, + "format-icons": { + "spotify": " ", + "default": " " + }, + "escape": true, + "exec": "$HOME/.config/waybar/scripts/mediaplayer.py 2> /dev/null", + "on-click": "playerctl play-pause", + "on-scroll-up": "playerctl next", + "on-scroll-down": "playerctl previous" + }, + "custom/fans": { + "format": "{}", + "exec": "$HOME/.config/waybar/scripts/fans.sh", + "escape": true, + "restart-interval": 10 + } + } +] \ No newline at end of file diff --git a/.config/waybar/scripts/caway b/.config/waybar/scripts/caway new file mode 100755 index 00000000..d20ee431 --- /dev/null +++ b/.config/waybar/scripts/caway @@ -0,0 +1,115 @@ +#!/usr/bin/bash + +# Nuke all internal spawns when script dies +trap "trap - SIGTERM && kill -- -$$" SIGINT SIGTERM + +BARS=8; +FRAMERATE=60; +EQUILIZER=1; + +# Get script options +while getopts 'b:f:m:eh' flag; do + case "${flag}" in + b) BARS="${OPTARG}" ;; + f) FRAMERATE="${OPTARG}" ;; + e) EQUILIZER=0 ;; + h) + echo "caway usage: caway [ options ... ]" + echo "where options include:" + echo + echo " -b (Number of bars to display. Default 8)" + echo " -f (Framerate of the equilizer. Default 60)" + echo " -e (Disable equilizer. Default enabled)" + echo " -h (Show help message)" + exit 0 + ;; + esac +done + +bar="▁▂▃▄▅▆▇█" +dict="s/;//g;" + +# creating "dictionary" to replace char with bar + thin space " " +i=0 +while [ $i -lt ${#bar} ] +do + dict="${dict}s/$i/${bar:$i:1} /g;" + i=$((i=i+1)) +done + +# Remove last extra thin space +dict="${dict}s/.$//;" + +clean_create_pipe() { + if [ -p $1 ]; then + unlink $1 + fi + mkfifo $1 +} + +kill_pid_file() { + if [[ -f $1 ]]; then + while read pid; do + { kill "$pid" && wait "$pid"; } 2>/dev/null + done < $1 + fi +} + +# PID of the cava process and while loop launched from the script +cava_waybar_pid="/tmp/cava_waybar_pid" + +# Clean pipe for cava +cava_waybar_pipe="/tmp/cava_waybar.fifo" +clean_create_pipe $cava_waybar_pipe + +# Custom cava config +cava_waybar_config="/tmp/cava_waybar_config" +echo " +[general] +mode = normal +framerate = $FRAMERATE +bars = $BARS + +[output] +method = raw +raw_target = $cava_waybar_pipe +data_format = ascii +ascii_max_range = 7 +" > $cava_waybar_config + +# Clean pipe for playerctl +playerctl_waybar_pipe="/tmp/playerctl_waybar.fifo" +clean_create_pipe $playerctl_waybar_pipe + +# playerctl output into playerctl_waybar_pipe +playerctl -a metadata --format '{"text": "{{artist}} - {{title}}", "tooltip": "{{playerName}} : {{markup_escape(artist)}} - {{markup_escape(title)}}", "alt": "{{status}}", "class": "{{status}}"}' -F >$playerctl_waybar_pipe & + +# Read the playerctl o/p via its fifo pipe +while read -r line; do + # Kill the cava process to stop the input to cava_waybar_pipe + kill_pid_file $cava_waybar_pid + + echo "$line" | jq --unbuffered --compact-output + + # If the class says "Playing" and equilizer is enabled + # then show the cava equilizer + if [[ $EQUILIZER == 1 && $(echo $line | jq -r '.class') == 'Playing' ]]; then + # Show the playing title for 2 seconds + sleep 2 + + # cava output into cava_waybar_pipe + cava -p $cava_waybar_config >$cava_waybar_pipe & + + # Save the PID of child process + echo $! > $cava_waybar_pid + + # Read the cava o/p via its fifo pipe + while read -r cmd2; do + # Change the "text" key to bars + echo "$line" | jq --arg a $(echo $cmd2 | sed "$dict") '.text = $a' --unbuffered --compact-output + done < $cava_waybar_pipe & # Do this fifo read in background + + # Save the while loop PID into the file as well + echo $! >> $cava_waybar_pid + fi +done < $playerctl_waybar_pipe diff --git a/.config/waybar/scripts/color-picker b/.config/waybar/scripts/color-picker new file mode 100644 index 00000000..dfc680db --- /dev/null +++ b/.config/waybar/scripts/color-picker @@ -0,0 +1,19 @@ +#!/usr/bin/env bash + +## Simple Script To Pick Color Quickly. + +# pick and autocopy +hyprpicker -n -a + +# get the value +color=$(wl-paste) + +image=/tmp/${color}.png + +if [[ "$color" ]]; then + # generate preview + convert -size 48x48 xc:"$color" ${image} + # notify the color + notify-send -u low -i ${image} "$color" "Copied to clipboard." +fi + diff --git a/.config/waybar/scripts/fans.sh b/.config/waybar/scripts/fans.sh new file mode 100755 index 00000000..3c72e4c0 --- /dev/null +++ b/.config/waybar/scripts/fans.sh @@ -0,0 +1,2 @@ +#!/usr/bin/env bash +echo "$(cat /sys/devices/platform/asus-nb-wmi/hwmon/hwmon[[:print:]]*/fan1_input) RPM  " diff --git a/.config/waybar/scripts/launch_waybar b/.config/waybar/scripts/launch_waybar new file mode 100644 index 00000000..f4cccca1 --- /dev/null +++ b/.config/waybar/scripts/launch_waybar @@ -0,0 +1,6 @@ +#!/usr/bin/bash + +killall -q waybar + +# env GTK_DEBUG=interactive +waybar -l info -c ~/.config/waybar/config.jsonc -s ~/.config/waybar/style.css > /tmp/waybar.log 2>&1 & disown diff --git a/.config/waybar/scripts/lock b/.config/waybar/scripts/lock new file mode 100644 index 00000000..06131aa9 --- /dev/null +++ b/.config/waybar/scripts/lock @@ -0,0 +1,24 @@ +#!/usr/bin/bash +swaylockd \ +--screenshots \ +--indicator \ +--clock \ +--inside-wrong-color f38ba8 \ +--ring-wrong-color 161925 \ +--inside-clear-color a6e3a1 \ +--ring-clear-color 161925 \ +--inside-ver-color 89b4fa \ +--ring-ver-color 161925 \ +--text-color f5c2e7 \ +--indicator-radius 100 \ +--indicator-thickness 5 \ +--effect-blur 8x5 \ +--effect-vignette 0.4:0.4 \ +--ring-color 161925 \ +--key-hl-color f5c2e7 \ +--line-color 313244 \ +--inside-color 00161925 \ +--separator-color 00000000 \ +--fade-in 0.2 & + +# sleep 2; ~/.config/hypr/scripts/screenshot_full diff --git a/.config/waybar/scripts/mediaplayer.py b/.config/waybar/scripts/mediaplayer.py new file mode 100755 index 00000000..1630d97c --- /dev/null +++ b/.config/waybar/scripts/mediaplayer.py @@ -0,0 +1,128 @@ +#!/usr/bin/env python3 +import argparse +import logging +import sys +import signal +import gi +import json +gi.require_version('Playerctl', '2.0') +from gi.repository import Playerctl, GLib + +logger = logging.getLogger(__name__) + + +def write_output(text, player): + logger.info('Writing output') + + output = {'text': text, + 'class': 'custom-' + player.props.player_name, + 'alt': player.props.player_name} + + sys.stdout.write(json.dumps(output) + '\n') + sys.stdout.flush() + + +def on_play(player, status, manager): + logger.info('Received new playback status') + on_metadata(player, player.props.metadata, manager) + + +def on_metadata(player, metadata, manager): + logger.info('Received new metadata') + track_info = '' + + if player.props.player_name == 'spotify' and \ + 'mpris:trackid' in metadata.keys() and \ + ':ad:' in player.props.metadata['mpris:trackid']: + track_info = 'AD PLAYING' + elif player.get_artist() != '' and player.get_title() != '': + track_info = '{artist} - {title}'.format(artist=player.get_artist(), + title=player.get_title()) + else: + track_info = player.get_title() + + if player.props.status != 'Playing' and track_info: + track_info = ' ' + track_info + write_output(track_info, player) + + +def on_player_appeared(manager, player, selected_player=None): + if player is not None and (selected_player is None or player.name == selected_player): + init_player(manager, player) + else: + logger.debug("New player appeared, but it's not the selected player, skipping") + + +def on_player_vanished(manager, player): + logger.info('Player has vanished') + sys.stdout.write('\n') + sys.stdout.flush() + + +def init_player(manager, name): + logger.debug('Initialize player: {player}'.format(player=name.name)) + player = Playerctl.Player.new_from_name(name) + player.connect('playback-status', on_play, manager) + player.connect('metadata', on_metadata, manager) + manager.manage_player(player) + on_metadata(player, player.props.metadata, manager) + + +def signal_handler(sig, frame): + logger.debug('Received signal to stop, exiting') + sys.stdout.write('\n') + sys.stdout.flush() + # loop.quit() + sys.exit(0) + + +def parse_arguments(): + parser = argparse.ArgumentParser() + + # Increase verbosity with every occurrence of -v + parser.add_argument('-v', '--verbose', action='count', default=0) + + # Define for which player we're listening + parser.add_argument('--player') + + return parser.parse_args() + + +def main(): + arguments = parse_arguments() + + # Initialize logging + logging.basicConfig(stream=sys.stderr, level=logging.DEBUG, + format='%(name)s %(levelname)s %(message)s') + + # Logging is set by default to WARN and higher. + # With every occurrence of -v it's lowered by one + logger.setLevel(max((3 - arguments.verbose) * 10, 0)) + + # Log the sent command line arguments + logger.debug('Arguments received {}'.format(vars(arguments))) + + manager = Playerctl.PlayerManager() + loop = GLib.MainLoop() + + manager.connect('name-appeared', lambda *args: on_player_appeared(*args, arguments.player)) + manager.connect('player-vanished', on_player_vanished) + + signal.signal(signal.SIGINT, signal_handler) + signal.signal(signal.SIGTERM, signal_handler) + signal.signal(signal.SIGPIPE, signal.SIG_DFL) + + for player in manager.props.player_names: + if arguments.player is not None and arguments.player != player.name: + logger.debug('{player} is not the filtered player, skipping it' + .format(player=player.name) + ) + continue + + init_player(manager, player) + + loop.run() + + +if __name__ == '__main__': + main() diff --git a/.config/waybar/scripts/updates b/.config/waybar/scripts/updates new file mode 100755 index 00000000..c0d3ea78 --- /dev/null +++ b/.config/waybar/scripts/updates @@ -0,0 +1,39 @@ +#!/usr/bin/env bash + +# Original script by @speltriao on GitHub +# https://github.com/speltriao/Pacman-Update-for-GNOME-Shell + +# If the operating system is not Arch Linux, exit the script successfully +if [ ! -f /etc/arch-release ]; then + exit 0 +fi + +# Calculate updates for each service +AUR=$(yay -Qua | wc -l) + +# Case/switch for each service updates +case $1 in + aur) echo " $AUR";; +esac + +# If the parameter is "update", update all services +if [ "$1" = "update" ]; then + kitty --start-as=fullscreen --title all_is_kitty sh -c 'yay -Syu' +fi + +# If there aren't any parameters, return the total number of updates +if [ "$1" = "" ]; then + # Calculate total number of updates + COUNT=$((AUR)) + # If there are updates, the script will output the following:  Updates + # If there are no updates, the script will output nothing. + + if [[ "$COUNT" = "0" ]] + then + echo "" + else + # This Update symbol is RTL. So ‭ is left-to-right override. + echo " $COUNT" + fi + exit 0 +fi diff --git a/.config/waybar/scripts/weather.py b/.config/waybar/scripts/weather.py new file mode 100755 index 00000000..8e2690b8 --- /dev/null +++ b/.config/waybar/scripts/weather.py @@ -0,0 +1,115 @@ +#!/usr/bin/env python + +import json +import requests +from datetime import datetime + +WEATHER_CODES = { + '113': '🌈', + '116': '⛅️', + '119': '☁️', + '122': '☁️', + '143': '🌫', + '176': '🌦', + '179': '🌧', + '182': '🌧', + '185': '🌧', + '200': '⛈', + '227': '🌨', + '230': '❄️', + '248': '🌫', + '260': '🌫', + '263': '🌦', + '266': '🌦', + '281': '🌧', + '284': '🌧', + '293': '🌦', + '296': '🌦', + '299': '🌧', + '302': '🌧', + '305': '🌧', + '308': '🌧', + '311': '🌧', + '314': '🌧', + '317': '🌧', + '320': '🌨', + '323': '🌨', + '326': '🌨', + '329': '❄️', + '332': '❄️', + '335': '❄️', + '338': '❄️', + '350': '🌧', + '353': '🌦', + '356': '🌧', + '359': '🌧', + '362': '🌧', + '365': '🌧', + '368': '🌨', + '371': '❄️', + '374': '🌧', + '377': '🌧', + '386': '⛈', + '389': '🌩', + '392': '⛈', + '395': '❄️' +} + +data = {} + + +weather = requests.get("https://wttr.in/Alicante?format=j1").json() + + +def format_time(time): + return time.replace("00", "").zfill(2) + + +def format_temp(temp): + return (hour['FeelsLikeC']+"°").ljust(3) + + +def format_chances(hour): + chances = { + "chanceoffog": "Fog", + "chanceoffrost": "Frost", + "chanceofovercast": "Overcast", + "chanceofrain": "Rain", + "chanceofsnow": "Snow", + "chanceofsunshine": "Sunshine", + "chanceofthunder": "Thunder", + "chanceofwindy": "Wind" + } + + conditions = [] + for event in chances.keys(): + if int(hour[event]) > 0: + conditions.append(chances[event]+" "+hour[event]+"%") + return ", ".join(conditions) + + +data['text'] = WEATHER_CODES[weather['current_condition'][0]['weatherCode']] + \ + " "+weather['current_condition'][0]['FeelsLikeC']+"°C" + +data['tooltip'] = f"{weather['current_condition'][0]['weatherDesc'][0]['value']} {weather['current_condition'][0]['temp_C']}°C\n" +data['tooltip'] += f"Feels like: {weather['current_condition'][0]['FeelsLikeC']}°C\n" +data['tooltip'] += f"Wind: {weather['current_condition'][0]['windspeedKmph']}Km/h\n" +data['tooltip'] += f"Humidity: {weather['current_condition'][0]['humidity']}%\n" +for i, day in enumerate(weather['weather']): + data['tooltip'] += f"\n" + if i == 0: + data['tooltip'] += "Today, " + if i == 1: + data['tooltip'] += "Tomorrow, " + data['tooltip'] += f"{day['date']}\n" + data['tooltip'] += f"⬆️ {day['maxtempC']}° ⬇️ {day['mintempC']}° " + data['tooltip'] += f"🌅 {day['astronomy'][0]['sunrise']} 🌇 {day['astronomy'][0]['sunset']}\n" + for hour in day['hourly']: + if i == 0: + if int(format_time(hour['time'])) < datetime.now().hour-2: + continue + data['tooltip'] += f"{format_time(hour['time'])} {WEATHER_CODES[hour['weatherCode']]} {format_temp(hour['FeelsLikeC'])} {hour['weatherDesc'][0]['value']}, {format_chances(hour)}\n" + + +print(json.dumps(data)) + diff --git a/.config/waybar/scripts/wttr b/.config/waybar/scripts/wttr new file mode 100644 index 00000000..0ec52958 --- /dev/null +++ b/.config/waybar/scripts/wttr @@ -0,0 +1,122 @@ +#!/usr/bin/env python + +import json +import requests +from datetime import datetime +WEATHER_CODES = { + '113': '☀️ ', + '116': '⛅ ', + '119': '☁️ ', + '122': '☁️ ', + '143': '☁️ ', + '176': '🌧️', + '179': '🌧️', + '182': '🌧️', + '185': '🌧️', + '200': '⛈️ ', + '227': '🌨️', + '230': '🌨️', + '248': '☁️ ', + '260': '☁️ ', + '263': '🌧️', + '266': '🌧️', + '281': '🌧️', + '284': '🌧️', + '293': '🌧️', + '296': '🌧️', + '299': '🌧️', + '302': '🌧️', + '305': '🌧️', + '308': '🌧️', + '311': '🌧️', + '314': '🌧️', + '317': '🌧️', + '320': '🌨️', + '323': '🌨️', + '326': '🌨️', + '329': '❄️ ', + '332': '❄️ ', + '335': '❄️ ', + '338': '❄️ ', + '350': '🌧️', + '353': '🌧️', + '356': '🌧️', + '359': '🌧️', + '362': '🌧️', + '365': '🌧️', + '368': '🌧️', + '371': '❄️', + '374': '🌨️', + '377': '🌨️', + '386': '🌨️', + '389': '🌨️', + '392': '🌧️', + '395': '❄️ ' +} + +data = {} + +try: + weather = requests.get("https://wttr.in/?format=j1").json() +except Exception: + data['text'] = '🪐' + data['tooltip'] = 'Weather data unavailable' + print(json.dumps(data)) + exit() + +def format_time(time): + return time.replace("00", "").zfill(2) + + +def format_temp(temp): + return (hour['FeelsLikeC']+"°").ljust(3) + + +def format_chances(hour): + chances = { + "chanceoffog": "Fog", + "chanceoffrost": "Frost", + "chanceofovercast": "Overcast", + "chanceofrain": "Rain", + "chanceofsnow": "Snow", + "chanceofsunshine": "Sunshine", + "chanceofthunder": "Thunder", + "chanceofwindy": "Wind" + } + + conditions = [] + for event in chances.keys(): + if int(hour[event]) > 0: + conditions.append(chances[event]+" "+hour[event]+"%") + return ", ".join(conditions) + +tempint = int(weather['current_condition'][0]['FeelsLikeC']) +extrachar = '' +if tempint > 0 and tempint < 10: + extrachar = '+' + + +data['text'] = ' '+WEATHER_CODES[weather['current_condition'][0]['weatherCode']] + \ + extrachar+weather['current_condition'][0]['FeelsLikeC']+"°" + +data['tooltip'] = f"{weather['current_condition'][0]['weatherDesc'][0]['value']} {weather['current_condition'][0]['temp_C']}°\n" +data['tooltip'] += f"Feels like: {weather['current_condition'][0]['FeelsLikeC']}°\n" +data['tooltip'] += f"Wind: {weather['current_condition'][0]['windspeedKmph']}Km/h\n" +data['tooltip'] += f"Humidity: {weather['current_condition'][0]['humidity']}%\n" +for i, day in enumerate(weather['weather']): + data['tooltip'] += f"\n" + if i == 0: + data['tooltip'] += "Today, " + if i == 1: + data['tooltip'] += "Tomorrow, " + data['tooltip'] += f"{day['date']}\n" + data['tooltip'] += f"⬆️ {day['maxtempC']}° ⬇️ {day['mintempC']}° " + data['tooltip'] += f"🌅 {day['astronomy'][0]['sunrise']} 🌇 {day['astronomy'][0]['sunset']}\n" + for hour in day['hourly']: + if i == 0: + if int(format_time(hour['time'])) < datetime.now().hour-2: + continue + data['tooltip'] += f"{format_time(hour['time'])} {WEATHER_CODES[hour['weatherCode']]} {format_temp(hour['FeelsLikeC'])} {hour['weatherDesc'][0]['value']}, {format_chances(hour)}\n" + + +print(json.dumps(data)) diff --git a/.config/waybar/style.css b/.config/waybar/style.css new file mode 100644 index 00000000..d268ffe0 --- /dev/null +++ b/.config/waybar/style.css @@ -0,0 +1,301 @@ +* { + font-family: JetBrainsMono Nerd Font; + font-size: 13px; + min-height: 0; +} + +/* General Settings */ +#custom-clipboard, +#custom-notifications, +#custom-arch, +#custom-gpu-temp, +#custom-gpu-usage, +#custom-updates, +#mode, +#cpu, +#memory, +#temperature, +#custom-music, +#custom-fans, +#clock, +#idle_inhibitor, +#language, +#pulseaudio, +#backlight, +#battery, +#network, +#tray, +#custom-power-menu, +#custom-weather, +#custom-weather.severe, +#custom-weather.sunnyDay, +#custom-weather.clearNight, +#custom-weather.cloudyFoggyDay, +#custom-weather.cloudyFoggyNight, +#custom-weather.rainyDay, +#custom-weather.rainyNight, +#custom-weather.showyIcyDay, +#custom-weather.snowyIcyNight, +#custom-weather.default { + background-color: #24273a; + padding: 0 10px; + margin: 2px 4px 5px 4px; + border-radius: 15px; + border: 2px solid rgba(183, 189, 248, 0.5); + box-shadow: 3px 3px 1px 1px #101010; + background-clip: padding-box; + +} + +/* Window */ +window#waybar { + color: #cad3f5; + background: transparent; + color: #cdd6f4; + +} + +window#waybar.hidded { + opacity: 0.0; +} + +/* Workspaces */ +#workspaces * { + font-size: 13px; +} +#workspaces button label{ + color: #b7bdf8 ; + font-weight: bolder; + transition: all 0.5s cubic-bezier(.55,-0.68,.48,1.68); +} + +#workspaces button.active label{ + color: #24273a; + font-weight: bolder; +} + +#workspaces button.urgent label{ + color: #e06c75; + font-weight: bolder; +} + +#workspaces{ + background-color: #24273a; + padding: 0 10px; + margin: 2px 4px 5px 4px; + border-radius: 15px; + border: 2px solid rgba(183, 189, 248, 0.5); + box-shadow: 3px 3px 1px 1px #101010; + background-clip: padding-box; +} + +#workspaces button{ + box-shadow: rgba(0, 0, 0, 0.116) 2 2 5 2px; + background-color: #24273a ; + border-radius: 15px; + margin-right: 3px; + margin-left: 3px; + padding: 0 5px; + font-weight: bolder; + min-width: 20px; + color: #24273a; + transition: all 0.5s cubic-bezier(.55,-0.68,.48,1.68); +} + +#workspaces button.active{ + padding-right: 6px; + padding-left: 6px; + box-shadow: rgba(0, 0, 0, 0.288) 2 2 5 2px; + padding-bottom: 3px; + margin-top: 5px; + margin-bottom: 5px; + background: #cad3f5; + background-size: 100% 200%; + animation: gradient_f 20s ease-in-out infinite; + transition: all 0.3s cubic-bezier(.55,-0.68,.48,1.682); + color: #c678dd; +} + +#workspaces button:hover { + background-color: #363a4f; +} + +#workspaces button.focused:hover { + background-color: #24273a; +} + +#workspaces button.focused:hover label{ + color: #cad3f5; +} + +/* Individual Modules */ +#cpu { + background-color: #24273a; + color: #8aadf4; + transition: all 0.5s cubic-bezier(.55,-0.68,.48,1.68); +} + +#memory { + background-color: #24273a; + color: #a6da95; + transition: all 0.5s cubic-bezier(.55,-0.68,.48,1.68); +} + +#custom-notifications { + background-color: #24273a; + color: #eed49f; +} + +#custom-updates { + background-color: #24273a; + color: #8bd5ca; +} + +#custom-gpu-temp { + background-color: #24273a; + color: #f5a97f; +} + +#custom-gpu-usage { + background-color: #24273a; + color: #8bd5ca; +} + +#custom-power-menu { + color: #e06c75; +} + +#temperature { + background-color: #24273a; + color: #f5a97f; +} + +#temperature.critical { + background-color: #ed8796; + color: #1e2030; +} + +#custom-music { + background: #b7bdf8; + /*background: radial-gradient(circle, rgb(139, 213, 202) 0%, rgb(145, 215, 227) 21%, rgb(238, 212, 159) 34%, rgb(139, 213, 202) 35%, rgb(166, 218, 149) 59%, rgb(145, 215, 227) 74%, rgb(166, 218, 149) 74%, rgb(125, 196, 228) 100%, rgb(245, 169, 127) 0%, rgb(238, 153, 160) 30%, rgb(237, 135, 150) 48%, rgb(245, 169, 127) 77%, rgb(238, 212, 159) 100%, rgb(145, 215, 227) 0%, rgb(125, 196, 228) 19%, rgb(138, 173, 244) 43%, rgb(145, 215, 227) 56%, rgb(125, 196, 228) 80%, rgb(183, 189, 248) 100%);*/ + background-size: 400% 400%; + animation: gradient_f 14s ease infinite; + text-shadow: 0px 0px 5px rgba(0, 0, 0, 0.377); + font-weight: bold; + color: #1e2030; + transition: all 0.3s cubic-bezier(.55,-0.68,.48,1.682); +} + +#custom-fans { + color: #98c379; +} + +#clock { + color: #b7bdf8; +} + +#idle_inhibitor { + color: #abb2bf; +} + +#idle_inhibitor.activated { + background-color: #abb2bf; + color: #1e222a; +} + +#language { + color: #56b6c2; +} + +#pulseaudio { + background-color: #24273a; + color: #f5bde6; +} + +#pulseaudio.muted { + background-color: #ed8796; + color: #1e222a; +} + +#backlight { + color: #61afef; +} + +#battery { + color: #98c379; +} + +#battery.charging, #battery.plugged { + background-color: #98c379; + color: #1e222a; +} + +#battery.critical:not(.charging) { + background-color: #e06c75; + color: #1e222a; + animation-name: blink; + animation-duration: 0.5s; + animation-timing-function: linear; + animation-iteration-count: infinite; + animation-direction: alternate; +} + +#network { + background-color: #24273a; + color: #8bd5ca +} + +#network.disconnected { + background-color: #ed8796; + color: #1e222a; +} + +#custom-notifications { + padding-right: 10px; +} + +/* Animation Keyframes */ +@keyframes blink { + to { + background-color: #24273a; + color: #e06c75; + } +} + +@keyframes gradient { + 0% { + background-position: 0% 50%; + } + + 50% { + background-position: 100% 30%; + } + + 100% { + background-position: 0% 50%; + } +} + +@keyframes gradient_f { + 0% { + background-position: 0% 200%; + } + + 50% { + background-position: 200% 0%; + } + + 100% { + background-position: 400% 200%; + } +} + +@keyframes gradient_f_nh { + 0% { + background-position: 0% 200%; + } + + 100% { + background-position: 200% 200%; + } +} \ No newline at end of file diff --git a/.config/wleave/actions b/.config/wleave/actions new file mode 100755 index 00000000..43418873 --- /dev/null +++ b/.config/wleave/actions @@ -0,0 +1,32 @@ +#!/usr/bin/env bash + +if [[ "$?" == 0 ]]; then + sleep 0.25s + if [[ "$1" == 'shutdown' ]]; then + systemctl poweroff + elif [[ "$1" == 'reboot' ]]; then + systemctl reboot + elif [[ "$1" == 'hibernate' ]]; then + playerctl --all-players stop + pkill wleave + sleep 0.5s + ~/.config/sway/lock.sh + sleep 0.5s + systemctl suspend-then-hibernate + elif [[ "$1" == 'lock' ]]; then + pkill wleave + sleep 0.5s + ~/.config/sway/lock.sh + elif [[ "$1" == 'suspend' ]]; then + playerctl --all-players stop + pkill wleave + sleep 0.5s + ~/.config/sway/lock.sh + sleep 0.5s + systemctl suspend + elif [[ "$1" == 'logout' ]]; then + hyprctl dispatch exit none + fi +else + exit +fi diff --git a/.config/wleave/icons/hibernate.png b/.config/wleave/icons/hibernate.png new file mode 100644 index 0000000000000000000000000000000000000000..8304232e878e0e2b32a15e7c88ebcd079ef42513 GIT binary patch literal 34342 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 Mq^?*XZ|wX30AsGpsQ>@~ literal 0 HcmV?d00001 diff --git a/.config/wleave/icons/logout.png b/.config/wleave/icons/logout.png new file mode 100644 index 0000000000000000000000000000000000000000..6325a82986afbc13402cfb50b958f35a26a690cc GIT binary patch literal 14188 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 literal 0 HcmV?d00001 diff --git a/.config/wleave/icons/shutdown.png b/.config/wleave/icons/shutdown.png new file mode 100644 index 0000000000000000000000000000000000000000..8055dd4359063dfc80b1c5858f933be2a88ff8b5 GIT binary patch literal 30467 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 S6defoQ&G^6{~~K1^8W#Ab-8i? literal 0 HcmV?d00001 diff --git a/.config/wleave/icons/suspend.png b/.config/wleave/icons/suspend.png new file mode 100644 index 0000000000000000000000000000000000000000..01176f9abe671b34f0e89afaf62f7d6f6e311c55 GIT binary patch literal 33515 zcmZs@1yq#nw?6y~jFg0Qhtkp|AgOeBr_v45JxED|h;%58G}1LlNeI#@sdP)%e9ye^ zIsfyWvwmyMj4qu!o_+7V?`!XU?TJ!XmBYcJzybgOM?qd%697=azoGybXy6~GK9kn~ zKnEyDztHwE-OI)d(EiihH<~{1Z3FFddOGxpIn(1bn7&~3>w3>GIxdA388FPu`g%iu zBP0KMTc?T&y$X{Lj8P2Q4$U+6Uu1S89zL;WAjcdiV24;oJ&aL=C0dRI;(m9Ek+c>b z^0%f5>b&=J5njF#Uq*-w`;K^b9NuY%2g}2t|Gs$RVHs{>){zST{SQPGz!H=}5(W86 z41wALyskgztO)2J$X6a@MeN`Il0+ewhoRA-qGy|UF@@CD)^;s4I`kiowL~^wFUs{# z&W_nDiy7+F=L@I^D{37FJJjq2A}Xv_QJ0gVi+;02Klcev5YQ39LS*jdLA4o+?04i4 zw;~k}dCpg^6Y%Ruc^VzczQ`e5baceW`8``V#v5AsXU@}FUHs!STK{b2PhFsdNT%{( zY6)Okl0Yb6!xS#(x^$2#?=?D(R{w(eiOueA(N49PIJm@cfQrUnA{oj`TYDOsrv9mC z{CET`2)_4aY(w7P65Fau44H@f(YdiTRCK;Y@62zFPgZ|E4JZ2ZP9;fxU6uJXl0t#b z1oJ0Qu=~B%>@x-t(Pevkv_tGXDP>&bx@}ujLf^uQm1M4b5{IPPoV;l1I%0xJm^i{g40 z{4wvfqD6Z>aYFKAM^Z^u0#82b3Qk=d%JG{9#wId|vD3aJy(vcCPcKO?1q$3yZSycAgbDjsteM?j8YC${Tq}QE;APDd`X|!k^1~fB!0}_Fy$@)u(w;6jiA88g2QA z?$yBKgZG$VYM9qAdjXQCmD*FYiUF!Vd{oX3o5~@-=(}&nK{3hGKHjOzk_@^hNA*u} zDt=lsJLi*@6>@l5Y`x>{H?ℑZcz}<;(U`*7;on&Kb7oH^Yh}1Z2?ESK|?&VCJzI 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 HR{dChEv5v;=HySv-JXd}ZJYC&TO;t;8?eP>m@m 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 pe