This commit is contained in:
Michael Chalupiak 2025-03-24 16:17:40 -04:00
parent 3d1ff7934a
commit bc3bb4ed16
22 changed files with 565 additions and 183 deletions

View File

@ -173,7 +173,7 @@ tinty_source_shell_theme() {
if [ -n "$(command -v tmux)" ] && [ -n "$(command -v kak)" ] && [ -z "$TMUX" ]; then
SESH="$((tmux list-sessions 2>/dev/null || echo '-1') | cut -d' ' -f1 | tr -d : | sort -r | head -n1 | xargs -I{} echo '{} + 1' | bc)"
SESH="$((tmux list-sessions 2>/dev/null || echo '-1') | cut -d' ' -f1 | tr -d ':-' | sort -r | head -n1 | xargs -I{} echo '{} + 1' | bc)"
alias kak='tmux new-session -e "EDITOR=\"kak -c $SESH\"" -s $SESH kak -s $SESH > /dev/null'
elif [ -n "$(command -v tmux)" ] && [ -n "$(command -v kak)" ]; then
SESH="$(tmux display-message -p '#S')"
@ -195,8 +195,9 @@ alias csi='rlwrap csi'
alias chicken-csi='rlwrap chicken-csi'
alias icyc='rlwrap icyc'
export DCONF_PROFILE
export FZF_DEFAULT_OPTS=$FZF_DEFAULT_OPTS'
--color=fg:#e5e9f0,bg:#3b4252,hl:#81a1c1
--color=fg+:#e5e9f0,bg+:#3b4252,hl+:#81a1c1
--color=info:#eacb8a,prompt:#bf6069,pointer:#b48dac
--color=marker:#a3be8b,spinner:#b48dac,header:#a3be8b'
export FZF_DEFAULT_OPTS="
--color=fg:#908caa,bg:#191724,hl:#ebbcba
--color=fg+:#e0def4,bg+:#26233a,hl+:#ebbcba
--color=border:#403d52,header:#31748f,gutter:#191724
--color=spinner:#f6c177,info:#9ccfd8
--color=pointer:#c4a7e7,marker:#eb6f92,prompt:#908caa"

View File

@ -1,6 +1,5 @@
[general]
import = ["nord.toml"]
import = ["rose-pine.toml"]
[font]
size = 14

View File

@ -1,24 +1,23 @@
font:
# normal:
# family: Cascadia Code
# style: Regular
#
# bold:
# family: Cascadia Code
# style: Bold
#
# italic:
# family: Cascadia Code
# style: Italic
#
# bold_italic:
# family: Cascadia Code
# style: Bold Italic
#
normal:
family: Olympe Mono Hacked
family: Cascadia Code
style: Regular
bold:
family: Cascadia Code
style: Bold
italic:
family: Cascadia Code
style: Italic
bold_italic:
family: Cascadia Code
style: Bold Italic
size: 12
# draw_bold_text_with_bright_colors: true
# shell:
# program: /bin/zsh
# args:
@ -190,59 +189,3 @@ font:
# Visual Bell
# ...
# background_opacity: 0.90
# Colors (Terminal.app)
# colors:
# # Default colors
# primary:
# background: '0x000000'
# foreground: '0xb6b6b6'
#
# # Normal colors
# normal:
# black: '0x000000'
# red: '0x990000'
# green: '0x00a600'
# yellow: '0x999900'
# blue: '0x0000b2'
# magenta: '0xb200b2'
# cyan: '0x00a6b2'
# white: '0xbfbfbf'
#
# # Bright colors
# bright:
# black: '0x666666'
# red: '0xe50000'
# green: '0x00d900'
# yellow: '0xe5e500'
# blue: '0x0000ff'
# magenta: '0xe500e5'
# cyan: '0x00e5e5'
# white: '0xe5e5e5'
# Gnome (Gnome Terminal Default)
colors:
# Default colors
primary:
background: '0x1e1e1e'
foreground: '0xffffff'
# Normal colors
normal:
black: '0x171421'
red: '0xc01c28'
green: '0x26a269'
yellow: '0xa2734c'
blue: '0x12488b'
magenta: '0xa347ba'
cyan: '0x2aa1b3'
white: '0xd0cfcc'
# Bright colors
bright:
black: '0x535c64'
red: '0xf66151'
green: '0x33d17a'
yellow: '0xe9ad0c'
blue: '0x2a7bde'
magenta: '0xc061cb'
cyan: '0x33c7de'
white: '0xffffff'

View File

@ -1,37 +1,37 @@
# Base16 Nord - alacritty color config
# arcticicestudio
# Base16 Monokai - alacritty color config
# Wimer Hazenberg (http://www.monokai.nl)
[colors]
draw_bold_text_with_bright_colors = false
# Default colors
[colors.primary]
background = '0x2e3440'
foreground = '0xe5e9f0'
background = '0x272822'
foreground = '0xf8f8f2'
# Colors the cursor will use if `custom_cursor_colors` is true
[colors.cursor]
text = '0x2e3440'
cursor = '0xe5e9f0'
text = '0x272822'
cursor = '0xf8f8f2'
# Normal colors
[colors.normal]
black = '0x2e3440'
red = '0xbf616a'
green = '0xa3be8c'
yellow = '0xebcb8b'
blue = '0x81a1c1'
magenta = '0xb48ead'
cyan = '0x88c0d0'
white = '0xe5e9f0'
black = '0x272822'
red = '0xf92672'
green = '0xa6e22e'
yellow = '0xf4bf75'
blue = '0x66d9ef'
magenta = '0xae81ff'
cyan = '0xa1efe4'
white = '0xf8f8f2'
# Bright colors
[colors.bright]
black = '0x4c566a'
red = '0xd08770'
green = '0x3b4252'
yellow = '0x434c5e'
blue = '0xd8dee9'
magenta = '0xeceff4'
cyan = '0x5e81ac'
white = '0x8fbcbb'
black = '0x75715e'
red = '0xfd971f'
green = '0x383830'
yellow = '0x49483e'
blue = '0xa59f85'
magenta = '0xf5f4f1'
cyan = '0xcc6633'
white = '0xf9f8f5'

View File

@ -0,0 +1,75 @@
# Colors section of "Alacritty - TOML configuration file format"
# https://github.com/alacritty/alacritty/blob/master/extra/man/alacritty.5.scd#colors
[colors.primary]
foreground = "#575279"
background = "#faf4ed"
dim_foreground = "#797593"
bright_foreground = "#575279"
[colors.cursor]
text = "#575279"
cursor = "#cecacd"
[colors.vi_mode_cursor]
text = "#575279"
cursor = "#cecacd"
[colors.search.matches]
foreground = "#797593"
background = "#f2e9e1"
[colors.search.focused_match]
foreground = "#faf4ed"
background = "#d7827e"
[colors.hints.start]
foreground = "#797593"
background = "#fffaf3"
[colors.hints.end]
foreground = "#9893a5"
background = "#fffaf3"
[colors.line_indicator]
foreground = "None"
background = "None"
[colors.footer_bar]
foreground = "#575279"
background = "#fffaf3"
[colors.selection]
text = "#575279"
background = "#dfdad9"
[colors.normal]
black = "#f2e9e1"
red = "#b4637a"
green = "#286983"
yellow = "#ea9d34"
blue = "#56949f"
magenta = "#907aa9"
cyan = "#d7827e"
white = "#575279"
[colors.bright]
black = "#9893a5"
red = "#b4637a"
green = "#286983"
yellow = "#ea9d34"
blue = "#56949f"
magenta = "#907aa9"
cyan = "#d7827e"
white = "#575279"
[colors.dim]
black = "#9893a5"
red = "#b4637a"
green = "#286983"
yellow = "#ea9d34"
blue = "#56949f"
magenta = "#907aa9"
cyan = "#d7827e"
white = "#575279"

View File

@ -0,0 +1,75 @@
# Colors section of "Alacritty - TOML configuration file format"
# https://github.com/alacritty/alacritty/blob/master/extra/man/alacritty.5.scd#colors
[colors.primary]
foreground = "#e0def4"
background = "#232136"
dim_foreground = "#908caa"
bright_foreground = "#e0def4"
[colors.cursor]
text = "#e0def4"
cursor = "#56526e"
[colors.vi_mode_cursor]
text = "#e0def4"
cursor = "#56526e"
[colors.search.matches]
foreground = "#908caa"
background = "#393552"
[colors.search.focused_match]
foreground = "#232136"
background = "#ea9a97"
[colors.hints.start]
foreground = "#908caa"
background = "#2a273f"
[colors.hints.end]
foreground = "#6e6a86"
background = "#2a273f"
[colors.line_indicator]
foreground = "None"
background = "None"
[colors.footer_bar]
foreground = "#e0def4"
background = "#2a273f"
[colors.selection]
text = "#e0def4"
background = "#44415a"
[colors.normal]
black = "#393552"
red = "#eb6f92"
green = "#3e8fb0"
yellow = "#f6c177"
blue = "#9ccfd8"
magenta = "#c4a7e7"
cyan = "#ea9a97"
white = "#e0def4"
[colors.bright]
black = "#6e6a86"
red = "#eb6f92"
green = "#3e8fb0"
yellow = "#f6c177"
blue = "#9ccfd8"
magenta = "#c4a7e7"
cyan = "#ea9a97"
white = "#e0def4"
[colors.dim]
black = "#6e6a86"
red = "#eb6f92"
green = "#3e8fb0"
yellow = "#f6c177"
blue = "#9ccfd8"
magenta = "#c4a7e7"
cyan = "#ea9a97"
white = "#e0def4"

View File

@ -0,0 +1,75 @@
# Colors section of "Alacritty - TOML configuration file format"
# https://github.com/alacritty/alacritty/blob/master/extra/man/alacritty.5.scd#colors
[colors.primary]
foreground = "#e0def4"
background = "#191724"
dim_foreground = "#908caa"
bright_foreground = "#e0def4"
[colors.cursor]
text = "#e0def4"
cursor = "#524f67"
[colors.vi_mode_cursor]
text = "#e0def4"
cursor = "#524f67"
[colors.search.matches]
foreground = "#908caa"
background = "#26233a"
[colors.search.focused_match]
foreground = "#191724"
background = "#ebbcba"
[colors.hints.start]
foreground = "#908caa"
background = "#1f1d2e"
[colors.hints.end]
foreground = "#6e6a86"
background = "#1f1d2e"
[colors.line_indicator]
foreground = "None"
background = "None"
[colors.footer_bar]
foreground = "#e0def4"
background = "#1f1d2e"
[colors.selection]
text = "#e0def4"
background = "#403d52"
[colors.normal]
black = "#26233a"
red = "#eb6f92"
green = "#31748f"
yellow = "#f6c177"
blue = "#9ccfd8"
magenta = "#c4a7e7"
cyan = "#ebbcba"
white = "#e0def4"
[colors.bright]
black = "#6e6a86"
red = "#eb6f92"
green = "#31748f"
yellow = "#f6c177"
blue = "#9ccfd8"
magenta = "#c4a7e7"
cyan = "#ebbcba"
white = "#e0def4"
[colors.dim]
black = "#6e6a86"
red = "#eb6f92"
green = "#31748f"
yellow = "#f6c177"
blue = "#9ccfd8"
magenta = "#c4a7e7"
cyan = "#ebbcba"
white = "#e0def4"

1
config/.config/cmus/rc Normal file
View File

@ -0,0 +1 @@

View File

@ -0,0 +1,51 @@
# Rosé Pine colorscheme
# by: Boris Petrov (https://github.com/Iorvethe)
# colors from: https://rosepinetheme.com/
#
# Blue: 67
# Red: 166
# Yellow: 227
# Pink: 217
# White: 254
# Black: 233
# Window
set color_cmdline_bg=default
set color_cmdline_fg=default
set color_win_title_bg=67
set color_win_title_fg=254
set color_win_bg=default
set color_win_fg=default
set color_separator=67
# Bottom status
set color_titleline_bg=67
set color_titleline_fg=254
set color_statusline_bg=default
set color_statusline_fg=default
# Text
set color_win_cur=227
set color_win_dir=default
# Menu
set color_win_sel_bg=67
set color_win_sel_fg=254
set color_win_inactive_sel_bg=default
set color_win_inactive_sel_fg=67
set color_win_cur_sel_bg=67
set color_win_cur_sel_fg=227
set color_win_inactive_cur_sel_bg=default
set color_win_inactive_cur_sel_fg=227
# Messages
set color_error=166
set color_info=227

View File

@ -0,0 +1,51 @@
# Rosé Pine colorscheme
# by: Boris Petrov (https://github.com/Iorvethe)
# colors from: https://rosepinetheme.com/
#
# Blue: 67
# Red: 166
# Yellow: 227
# Pink: 181
# White: 254
# Black: 233
# Window
set color_cmdline_bg=default
set color_cmdline_fg=default
set color_win_title_bg=181
set color_win_title_fg=233
set color_win_bg=default
set color_win_fg=default
set color_separator=181
# Bottom status
set color_titleline_bg=181
set color_titleline_fg=233
set color_statusline_bg=default
set color_statusline_fg=default
# Text
set color_win_cur=227
set color_win_dir=default
# Menu
set color_win_sel_bg=181
set color_win_sel_fg=233
set color_win_inactive_sel_bg=default
set color_win_inactive_sel_fg=181
set color_win_cur_sel_bg=181
set color_win_cur_sel_fg=227
set color_win_inactive_cur_sel_bg=default
set color_win_inactive_cur_sel_fg=227
# Messages
set color_error=166
set color_info=227

View File

@ -902,8 +902,8 @@ enable-hot-corners=true
font-antialiasing='rgba'
font-hinting='slight'
font-name='Ubuntu 10'
gtk-theme='Ambiance-RW'
icon-theme='Humanity'
gtk-theme='rose-pine-gtk'
icon-theme='rose-pine-icons'
monospace-font-name='BigBlueTermPlus Nerd Font 12'
show-battery-percentage=true
toolbar-style='text'
@ -2608,3 +2608,12 @@ enabled=true
[com/worldwidemann/plotinus/usr.bin.pcmanfm]
enabled=true
[com/github/GradienceTeam/Gradience]
last-opened-version='0.4.1'
user-flatpak-theming-gtk4=true
first-run=false
window-width=1000
window-fullscreen=false
window-height=700
window-maximized=false

View File

@ -25,6 +25,10 @@ plug "gustavo-hms/luar" %{
}
}
plug "your-tools/kak-subvert" do %{
cargo install --locked --force --path .
}
plug "https://git.sr.ht/~nasmevka/repl.kak"
plug "caksoylar/kakoune-smooth-scroll"
@ -134,7 +138,6 @@ define-command disable-autofmt -docstring 'disable autoformatting of buffer' %{
enable-autofmt
## Indentation ##
set global tabstop 4
set global indentwidth 4
@ -227,7 +230,7 @@ set-option global lsp_config %{
define-command fzf-buffer -docstring 'Invoke fzf to select a buffer' %{
evaluate-commands %sh{
tmux split-window -l 30% "(echo $kak_buflist | tr ' ' '\n' | fzf --color=fg:#e5e9f0,bg:#3b4252,hl:#81a1c1 --color=fg+:#e5e9f0,bg+:#3b4252,hl+:#81a1c1 --color=info:#eacb8a,prompt:#bf6069,pointer:#b48dac --color=marker:#a3be8b,spinner:#b48dac,header:#a3be8b --bind 'focus:execute-silent(echo \"eval -client $kak_client %{ e {} }\" | kak -p $kak_session)' || echo \"$kak_buffile\") | xargs -I{} echo \"eval -client $kak_client %{ e {} }\" | /usr/bin/kak -p $kak_session"
tmux split-window -l 30% "(echo $kak_buflist | tr ' ' '\n' | fzf --bind 'focus:execute-silent(echo \"eval -client $kak_client %{ e {} }\" | kak -p $kak_session)' || echo \"$kak_buffile\") | xargs -I{} echo \"eval -client $kak_client %{ e {} }\" | /usr/bin/kak -p $kak_session"
}
}
@ -440,16 +443,25 @@ map -docstring 'new terminal tab' global tmux T ':tmux-repl-window<ret>'
map -docstring 'new git window' global tmux g ':tmux-terminal-window lazygit<ret>'
declare-user-mode project
map -docstring 'enter project mode' global user P ':enter-user-mode project<ret>'
map -docstring 'enter project mode' global user p ':enter-user-mode project<ret>'
map -docstring 'open project' global project o ':switch-project<ret>'
map -docstring 'enter man mode' global user m ':enter-user-mode man<ret>'
declare-user-mode general
map -docstring 'enter general keybinds mode' global user g ':enter-user-mode general<ret>'
#map -docstring 'clipboard yank' global user y '<a-|>clip.exe<ret>'
map -docstring 'clipboard yank' global user y ':xcopy<ret>'
map -docstring 'clipboard yank' global general y ':xcopy<ret>'
#map -docstring 'clipboard paste' global user p '|powershell.exe -C Get-Clipboard | tr -d "\r"<ret>'
map -docstring 'clipboard paste' global user p ':xpaste<ret>'
map -docstring 'clipboard paste' global general p ':xpaste<ret>'
map -docstring 'quit kakoune' global general q ':q<ret>'
map -docstring 'toggle comments' global general c ':comment-line<ret>'
map -docstring 'quit kakoune' global user q ':q<ret>'
map -docstring 'toggle comments' global user c ':comment-line<ret>'
declare-user-mode spell
map -docstring 'enter spell mode' global general s ':enter-user-mode spell<ret>'
map -docstring 'enable spell check' global spell s ':spell<ret>'
map -docstring 'clear spell check' global spell c ':spell-clear<ret>'
map -docstring 'next spell check' global spell n ':spell-next<ret>'
map -docstring 'spell check replacements' global spell r ':spell-replace<ret>'
colorscheme base16-rose-pine

View File

@ -1,6 +1,6 @@
function colors(color, theme)
color = os.getenv("BASE16_THEME")
alt_color = 'gruvbox' or color
alt_color = 'nord' or color
-- Available values: `'hard'`, `'medium'`, `'soft'`
vim.g.gruvbox_material_background = 'medium'
-- Available values: `'material'`, `'mix'`, `'original'`

View File

@ -1,7 +1,7 @@
[Appearance]
color_scheme_path=/home/mikec/.config/qt5ct/style-colors.conf
custom_palette=true
icon_theme=Humanity
icon_theme=breeze-dark
standard_dialogs=xdgdesktopportal
style=kvantum
@ -25,7 +25,7 @@ underline_shortcut=1
wheel_scroll_lines=3
[SettingsWindow]
geometry=@ByteArray(\x1\xd9\xd0\xcb\0\x3\0\0\0\0\0\0\0\0\0\0\0\0\t\xe7\0\0\x5r\0\0\0\0\0\0\0\0\0\0\t\xe3\0\0\x5\x83\0\0\0\0\x2\0\0\0\n\0\0\0\0\0\0\0\0\0\0\0\t\xe7\0\0\x5r)
geometry=@ByteArray(\x1\xd9\xd0\xcb\0\x3\0\0\0\0\0\0\0\0\0\0\0\0\t\xe3\0\0\x5\x65\0\0\0\0\0\0\0\0\0\0\t\xe3\0\0\x5\x65\0\0\0\0\0\0\0\0\n\0\0\0\0\0\0\0\0\0\0\0\t\xe3\0\0\x5\x65)
[Troubleshooting]
force_raster_widgets=1

View File

@ -1,4 +1,4 @@
[ColorScheme]
active_colors=#ff000000, #ffe6e5e4, #ffffffff, #ffececec, #ffbebebe, #ffd9d9d9, #ff000000, #ffffffff, #ff000000, #fffafafa, #ffe6e5e4, #ff000000, #ffdc6434, #ffffffff, #ff0057ae, #ff452886, #fff0f0f0, #ff000000, #ff000000, #ffffffff, #80000000
disabled_colors=#ff787878, #ffe6e5e4, #ffffffff, #ffececec, #ffbebebe, #ffd9d9d9, #ff787878, #ffffffff, #ff787878, #fffafafa, #ffe6e5e4, #ff000000, #ffdc6434, #66ffffff, #ff0057ae, #ff452886, #fff0f0f0, #ff000000, #ff000000, #ffffffff, #80000000
inactive_colors=#ff000000, #ffe6e5e4, #ffffffff, #ffececec, #ffbebebe, #ffd9d9d9, #ff000000, #ffffffff, #ff000000, #fffafafa, #ffe6e5e4, #ff000000, #ffdc6434, #ffffffff, #ff0057ae, #ff452886, #fff0f0f0, #ff000000, #ff000000, #ffffffff, #80000000
active_colors=#ffe0def4, #ff26233a, #ff6e6a86, #ff6e6a86, #ff191724, #ff191724, #ffe0def4, #ffffffff, #ffe0def4, #ff191724, #ff1f1d2e, #ff000000, #fff07746, #ff191724, #ff9ccfd8, #ffc4a7e7, #ff191724, #ff000000, #ff000000, #ffe0def4, #80e0def4
disabled_colors=#ff787878, #ffe9e9e9, #ffffffff, #ffececec, #ffbebebe, #ffd9d9d9, #ff787878, #ffffffff, #ff787878, #ffffffff, #fff2f1f0, #ff000000, #fff07746, #66fcfcfc, #ff0057ae, #ff452886, #fff4f4f4, #ff000000, #ff000000, #ffffffff, #804c4c4c
inactive_colors=#ffe0def4, #ff26233a, #ff6e6a86, #ff6e6a86, #ff191724, #ff191724, #ffe0def4, #ffffffff, #ffe0def4, #ff191724, #ff1f1d2e, #ff000000, #fff07746, #ff191724, #ff9ccfd8, #ffc4a7e7, #ff191724, #ff000000, #ff000000, #ffe0def4, #80e0def4

View File

@ -1,7 +1,7 @@
[Appearance]
color_scheme_path=/home/mikec/.config/qt6ct/colors/Chicago95.conf
custom_palette=false
icon_theme=Humanity
icon_theme=rose-pine-icons
standard_dialogs=xdgdesktopportal
style=kvantum-dark
@ -28,7 +28,7 @@ wheel_scroll_lines=3
geometry=@ByteArray(\x1\xd9\xd0\xcb\0\x3\0\0\0\0\x3\xad\0\0\x1\x86\0\0\x6#\0\0\x3\x96\0\0\x3\xad\0\0\x1\x86\0\0\x6#\0\0\x3\x96\0\0\0\0\0\0\0\0\n\0\0\0\x3\xad\0\0\x1\x86\0\0\x6#\0\0\x3\x96)
[SettingsWindow]
geometry=@ByteArray(\x1\xd9\xd0\xcb\0\x3\0\0\0\0\0\0\0\0\0\0\0\0\t\xe7\0\0\x5r\0\0\0\0\0\0\0\0\0\0\t\xe7\0\0\x5r\0\0\0\0\0\0\0\0\n\0\0\0\0\0\0\0\0\0\0\0\t\xe7\0\0\x5r)
geometry=@ByteArray(\x1\xd9\xd0\xcb\0\x3\0\0\0\0\0\0\0\0\0\0\0\0\t\xe3\0\0\x5\x65\0\0\0\0\0\0\0\0\0\0\t\xe3\0\0\x5\x65\0\0\0\0\0\0\0\0\n\0\0\0\0\0\0\0\0\0\0\0\t\xe3\0\0\x5\x65)
[Troubleshooting]
force_raster_widgets=1

View File

@ -8,8 +8,10 @@
##
## Documentation:
## qute://help/configuring.html
## qute://help/settings.html
config.source('theme.py')
## qute://help/settings.htm
##
import rosepine
rosepine.setup(c, 'rose-pine-moon', True)
## This is here so configs done via the GUI are still loaded.
## Remove it to not load settings done via the GUI.
@ -721,7 +723,7 @@ c.url.searchengines = { "DEFAULT" : "searx.mchalupiak.com/search?q={}" }
## given page, use the `content.blocking.enabled` setting with a URL
## pattern instead.
## Type: List of UrlPattern
# c.content.blocking.whitelist = []
c.content.blocking.whitelist = []
## Enable support for the HTML 5 web application cache feature. An
## application cache acts like an HTTP cache in some sense. For documents

View File

@ -169,7 +169,7 @@ riverctl focus-follows-cursor normal
riverctl map normal Super+Control O spawn 'mumble rpc starttalking'
riverctl map normal Super O spawn 'mumble rpc stoptalking'
riverctl map normal Super Escape spawn 'swaylock -f -c 000000'
riverctl map normal Super Escape spawn 'swaylock -f -C ~/.config/sway/rose-pine'
swaybg -m fill -i $HOME/Pictures/wallpapers/wallpaper &
# pgrep creek || ( while $HOME/.config/river/bar.sh; do sleep 1; done ) | creek -fn 'Ubuntu:size=14' -nf 0xb8b8b8 -nb 0x282828 -ff 0x181818 -fb 0x7cafc2
pipewire-launch &

View File

@ -0,0 +1,45 @@
# Background color
color=#191724
# Layout text colors
layout-bg-color=#00000000
layout-border-color=#00000000
layout-text-color=#e0def4
# Text color
text-color=#31748f
text-clear-color=#9ccfd8
text-caps-lock-color=#f6c177
text-ver-color=#c4a7e7
text-wrong-color=#eb6f92
# Highlight segments
bs-hl-color=#19172466
key-hl-color=#31748f
caps-lock-bs-hl-color=#19172466
caps-lock-key-hl-color=#f6c177
# Highlight segments separator
separator-color=#00000000
# Inside of the indicator
inside-color=#31748f55
inside-clear-color=#9ccfd855
inside-caps-lock-color=#f6c17755
inside-ver-color=#c4a7e755
inside-wrong-color=#eb6f9255
# Line between the inside and ring
line-color=#31748f11
line-clear-color=#9ccfd811
line-caps-lock-color=#f6c17711
line-ver-color=#c4a7e711
line-wrong-color=#eb6f9211
# Indicator ring
ring-color=#31748faa
ring-clear-color=#9ccfd8aa
ring-caps-lock-color=#f6c177aa
ring-ver-color=#c4a7e7aa
ring-wrong-color=#eb6f92aa

View File

@ -0,0 +1,41 @@
# https://github.com/rose-pine/rose-pine-theme
# Soho vibes for Zathura: Rosé Pine
#
# Usage:
# Copy contents of this file to ~/.config/zathura/zathurarc
#
# Change 'recolor' and 'recolor-keephue' to true to change
# the document colors for a more uniform viewing experience.
set default-bg "#191724"
set default-fg "#e0def4"
set statusbar-fg "#e0def4"
set statusbar-bg "#555169"
set inputbar-bg "#6e6a86"
set inputbar-fg "#ebbcba"
set notification-bg "#e0def4"
set notification-fg "#555169"
set notification-error-bg "#f6c177"
set notification-error-fg "#555169"
set notification-warning-bg "#ebbcba"
set notification-warning-fg "#555169"
set highlight-color "rgba(0xeb, 0xbc, 0xba, 0.5)"
set highlight-active-color "rgba(0xeb, 0x6f, 0x92, 0.5)"
set completion-bg "#6e6a86"
set completion-fg "#ebbcba"
set completion-highlight-fg "#26233a"
set completion-highlight-bg "#ebbcba"
set recolor-lightcolor "#191724"
set recolor-darkcolor "#e0def4"
set recolor "false"
set recolor-keephue "false"

View File

@ -1,4 +1,4 @@
include colors
set font "BigBlueTermPlus Nerd Font 12"
include rose-pine
set font "Iosevka Term SS12 12"
set database "sqlite"
set recolor true

View File

@ -1,7 +1,9 @@
set -g @rose_pine_variant 'main' # Options are 'main', 'moon' or 'dawn'
# List of plugins
set -g @plugin 'tmux-plugins/tpm'
#set -g @plugin 'tmux-plugins/tmux-sensible'
set -g @plugin 'arcticicestudio/nord-tmux'
#set -g @plugin 'arcticicestudio/nord-tmux'
set -g @plugin 'rose-pine/tmux'
set -g @plugin 'tmux-plugins/tpm'
set -g default-terminal "xterm-256color"
set -ga terminal-overrides ",xterm*:Tc"
set -g mouse on
@ -23,7 +25,7 @@ bind-key l select-pane -R
# set -g @plugin 'git@bitbucket.com:user/plugin'
# Initialize TMUX plugin manager (keep this line at the very bottom of tmux.conf)
run '~/.tmux/plugins/tpm/tpm'
run-shell "tmux source-file ~/.local/share/tinted-theming/tinty/repos/tinted-tmux/colors/base16-$BASE16_THEME.conf"
#run-shell "tmux source-file ~/.local/share/tinted-theming/tinty/repos/tinted-tmux/colors/base16-$BASE16_THEME.conf"
set -g prefix None
bind -Troot C-a switchc -Tprefix