feat: Added vscode colorscheme and added rule to set proton pass desktop app as floating in i3
Signed-off-by: erick-alcachofa <erick@artichoke.dev>
This commit is contained in:
parent
f594fee252
commit
2d5bce37f4
@ -119,6 +119,7 @@ for_window [window_role="task_dialog"] floating enable
|
||||
for_window [class="vol"] floating enable, resize set 800 500, move to scratchpad
|
||||
for_window [class="ttrm|sys"] floating enable, resize set 1000 680, move to scratchpad
|
||||
for_window [class="scrcpy"] floating enable, move to scratchpad
|
||||
for_window [class="Proton Pass"] floating enable, resize set 900 680, move position center
|
||||
|
||||
for_window [class="iwgtk"] floating enable, position center
|
||||
for_window [class="Gpick"] floating enable, move position center
|
||||
|
||||
34
gui/wezterm/config/colors/vscode.toml
Normal file
34
gui/wezterm/config/colors/vscode.toml
Normal file
@ -0,0 +1,34 @@
|
||||
[colors]
|
||||
ansi = [
|
||||
'#1f1f1f',
|
||||
'#f44747',
|
||||
'#608b4e',
|
||||
'#dcdcaa',
|
||||
'#569cd6',
|
||||
'#c678dd',
|
||||
'#56b6c2',
|
||||
'#d4d4d4',
|
||||
]
|
||||
background = '#1f1f1f'
|
||||
brights = [
|
||||
'#808080',
|
||||
'#f44747',
|
||||
'#608b4e',
|
||||
'#dcdcaa',
|
||||
'#569cd6',
|
||||
'#c678dd',
|
||||
'#56b6c2',
|
||||
'#d4d4d4',
|
||||
]
|
||||
cursor_bg = '#d4d4d4'
|
||||
cursor_border = '#d4d4d4'
|
||||
cursor_fg = '#1f1f1f'
|
||||
foreground = '#d4d4d4'
|
||||
selection_bg = '#dcdcaa'
|
||||
selection_fg = '#1f1f1f'
|
||||
|
||||
[colors.indexed]
|
||||
|
||||
[metadata]
|
||||
name = 'vscode'
|
||||
origin_url = 'https://github.com/Mofiqul/vscode.nvim'
|
||||
@ -12,7 +12,7 @@ config.harfbuzz_features = {
|
||||
'cv32', 'ss06', 'ss04'
|
||||
}
|
||||
|
||||
config.color_scheme = 'OldWorld'
|
||||
config.color_scheme = 'vscode'
|
||||
|
||||
config.hide_tab_bar_if_only_one_tab = true
|
||||
config.use_fancy_tab_bar = false
|
||||
|
||||
@ -48,9 +48,25 @@ local oldworld = {
|
||||
end
|
||||
}
|
||||
|
||||
local vscode = {
|
||||
"Mofiqul/vscode.nvim",
|
||||
name = "vscode",
|
||||
lazy = false,
|
||||
priority = 1000,
|
||||
config = function(_, opts)
|
||||
require("vscode").setup(opts or {})
|
||||
vim.cmd.colorscheme("vscode")
|
||||
end,
|
||||
opts = {
|
||||
transparent = true,
|
||||
disable_nvimtree_bg = true,
|
||||
}
|
||||
}
|
||||
|
||||
local specs = {
|
||||
bamboo,
|
||||
oldworld
|
||||
oldworld,
|
||||
vscode
|
||||
}
|
||||
|
||||
vim.api.nvim_create_user_command(
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user