diff options
-rw-r--r-- | nvim/lua/term.lua | 2 | ||||
-rw-r--r-- | waybar/style.css | 10 |
2 files changed, 6 insertions, 6 deletions
diff --git a/nvim/lua/term.lua b/nvim/lua/term.lua index 9f3062d..e7aac4e 100644 --- a/nvim/lua/term.lua +++ b/nvim/lua/term.lua @@ -7,7 +7,7 @@ require("toggleterm").setup{ return vim.o.columns * 0.4 end end, - open_mapping = [[<c-\>]], -- or { [[<c-\>]], [[<c-¥>]] } if you also use a Japanese keyboard. + open_mapping = [[<leader>`]], -- or { [[<c-\>]], [[<c-¥>]] } if you also use a Japanese keyboard. hide_numbers = true, -- hide the number column in toggleterm buffers shade_filetypes = {}, autochdir = false, -- when neovim changes it current directory the terminal will change it's own when next it's opened diff --git a/waybar/style.css b/waybar/style.css index 3016776..beb3d58 100644 --- a/waybar/style.css +++ b/waybar/style.css @@ -53,7 +53,7 @@ window#waybar.hidden { */ #workspaces button.active { - background: #EC0101; + background: #198844; } /* @@ -166,12 +166,12 @@ label:focus { } #backlight { - background-color: #EC0101; + background-color: #198844; color: #ffffff; } #network { - background-color: #EC0101; + background-color: #198844; color: #ffffff; } @@ -187,7 +187,7 @@ label:focus { #wireplumber.muted { background-color: #1b1d1c; - color: #EC0101; + color: #198844; } #custom-media { @@ -300,7 +300,7 @@ label:focus { } #idle_inhibitor.activated { - background-color: #EC0101; + background-color: #198844; color: #ffffff; border-radius: 20px 0px 0px 20px; |