mirror of
https://git.sr.ht/~coasteen/dotfiles
synced 2025-11-04 14:47:38 +01:00
changes to top bar, nvim undodir, uwuify shebang changed, and wezterm
cursor style changed
This commit is contained in:
parent
65112394b4
commit
b8eadbb3c8
12 changed files with 36 additions and 11 deletions
1
.gitignore
vendored
1
.gitignore
vendored
|
|
@ -5,3 +5,4 @@ config/qtile/__pycache__
|
|||
etc/nixos/hardware-configuration.nix
|
||||
nixos/hardware-configuration.nix
|
||||
config/nvim/nvim
|
||||
config/nvim/undo
|
||||
|
|
|
|||
|
|
@ -12,4 +12,5 @@ config.enable_tab_bar = false
|
|||
config.font = wezterm.font("JetBrainsMono Nerd Font")
|
||||
config.window_close_confirmation = "NeverPrompt"
|
||||
config.window_background_opacity = 0.90
|
||||
config.default_cursor_style = "SteadyUnderline"
|
||||
return config
|
||||
|
|
|
|||
|
|
@ -10,6 +10,9 @@ cfg.softtabstop = 4
|
|||
cfg.smarttab = true
|
||||
cfg.smartindent = true
|
||||
|
||||
cfg.undofile = true
|
||||
cfg.undodir = vim.fn.stdpath("config") .. "/undo"
|
||||
|
||||
cfg.number = true
|
||||
cfg.relativenumber = true
|
||||
|
||||
|
|
|
|||
Binary file not shown.
Binary file not shown.
BIN
config/nvim/undo/%home%coast%.local%src%config%waybar%style.css
Normal file
BIN
config/nvim/undo/%home%coast%.local%src%config%waybar%style.css
Normal file
Binary file not shown.
BIN
config/nvim/undo/%home%coast%.local%src%local%bin%uwuify.awk
Normal file
BIN
config/nvim/undo/%home%coast%.local%src%local%bin%uwuify.awk
Normal file
Binary file not shown.
BIN
config/nvim/undo/%home%coast%.wezterm.lua
Normal file
BIN
config/nvim/undo/%home%coast%.wezterm.lua
Normal file
Binary file not shown.
Binary file not shown.
|
|
@ -3,16 +3,17 @@
|
|||
"output": "HDMI-A-1",
|
||||
"layer": "top",
|
||||
"modules-left": [
|
||||
"custom/distro",
|
||||
"niri/workspaces",
|
||||
"niri/mode",
|
||||
"niri/window"
|
||||
],
|
||||
"modules-center": [
|
||||
],
|
||||
"modules-right": [
|
||||
"network",
|
||||
"clock",
|
||||
// "battery",
|
||||
"pulseaudio",
|
||||
"network"
|
||||
"pulseaudio"
|
||||
],
|
||||
"pulseaudio": {
|
||||
"tooltip": false,
|
||||
|
|
@ -50,6 +51,10 @@
|
|||
}
|
||||
]
|
||||
},
|
||||
"custom/distro": {
|
||||
"format": "",
|
||||
"tooltip": false
|
||||
},
|
||||
"bluetooth": {
|
||||
"format": " {status}",
|
||||
"format-connected": " CONN",
|
||||
|
|
|
|||
|
|
@ -6,7 +6,7 @@
|
|||
@define-color text_dim #8c8a75;
|
||||
|
||||
@define-color blue #7fbbb3;
|
||||
@define-color green #55393D; /* changed */
|
||||
@define-color green #55393D;
|
||||
@define-color yellow #f9e2af;
|
||||
@define-color peach #e69875;
|
||||
@define-color maroon #c05a3b;
|
||||
|
|
@ -23,8 +23,14 @@
|
|||
}
|
||||
|
||||
window#waybar {
|
||||
background: @background;
|
||||
border-bottom: 2px solid @surface0;
|
||||
background: linear-gradient(
|
||||
to bottom,
|
||||
rgba(30, 30, 30, 1) 0%,
|
||||
rgba(28, 28, 28, 0.95) 68%,
|
||||
rgba(25, 25, 25, 0.75) 82%,
|
||||
rgba(20, 20, 20, 0.30) 94%,
|
||||
rgba(20, 20, 20, 0.00) 100%
|
||||
);
|
||||
}
|
||||
|
||||
#disk,
|
||||
|
|
@ -41,7 +47,7 @@ window#waybar {
|
|||
#bluetooth,
|
||||
#tray menu {
|
||||
padding: 5px 10px;
|
||||
margin: 8px 0 8px 10px;
|
||||
margin: 3px 0 13px 10px;
|
||||
background: @surface0;
|
||||
color: @text;
|
||||
transition: 0.3s;
|
||||
|
|
@ -57,8 +63,9 @@ window#waybar.empty #window {
|
|||
border: none;
|
||||
}
|
||||
|
||||
#network { margin: 8px 12px; color: @text; }
|
||||
#pulseaudio, #clock { color: @text; }
|
||||
#network { color: @text; }
|
||||
#pulseaudio { margin-right: 12px; color: @text; }
|
||||
#clock { color: @text; }
|
||||
|
||||
#workspaces {
|
||||
margin-left: 12px;
|
||||
|
|
@ -73,7 +80,7 @@ window#waybar.empty #window {
|
|||
}
|
||||
|
||||
#workspaces button.empty { color: @text_dim; }
|
||||
#workspaces button.active { color: @green; } /* now #55393D */
|
||||
#workspaces button.active { color: @green; }
|
||||
#workspaces button.urgent { color: @maroon; }
|
||||
|
||||
#workspaces button:hover {
|
||||
|
|
@ -81,3 +88,11 @@ window#waybar.empty #window {
|
|||
color: @text;
|
||||
}
|
||||
|
||||
#custom-distro {
|
||||
background-color: @accent;
|
||||
color: @text;
|
||||
font-size: 30;
|
||||
margin-bottom: 8px;
|
||||
padding-left: 12px;
|
||||
padding-right: 12px;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
#!/run/current-system/sw/bin/awk -f
|
||||
#!awk -f
|
||||
|
||||
function uwuify(s, o) {
|
||||
o = s
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue