changed to pulsemixer TUI

This commit is contained in:
Bryan Ramos 2024-12-14 22:51:23 -05:00
parent 09e5d22e2d
commit 651f6979b4
Signed by: bryan
GPG key ID: 6ABDCD144D6643C8
4 changed files with 6 additions and 3 deletions

View file

@ -108,7 +108,7 @@
"default": ["","",""] "default": ["","",""]
}, },
"justify": "center", "justify": "center",
"on-click": "pavucontrol", "on-click": "alacritty -e pulsemixer",
"tooltip-format": "{volume}%" "tooltip-format": "{volume}%"
}, },

View file

@ -135,7 +135,7 @@ in
}; };
packages = with pkgs; [ packages = with pkgs; [
pavucontrol pulsemixer
xdg-utils xdg-utils
wl-clipboard wl-clipboard
cliphist cliphist

View file

@ -1,3 +1,4 @@
-- https://github.com/neovim/nvim-lspconfig/blob/master/doc/configs.md
local servers = { local servers = {
"ts_ls", "ts_ls",
"pyright", "pyright",
@ -10,7 +11,8 @@ local servers = {
"bashls", "bashls",
"clangd", "clangd",
"jsonls", "jsonls",
"vuels" "vuels",
"rust_analyzer"
--"arduino-language-server" --"arduino-language-server"
} }

View file

@ -8,6 +8,7 @@ let
nodePackages."@tailwindcss/language-server" nodePackages."@tailwindcss/language-server"
pyright pyright
clang-tools clang-tools
rust-analyzer
#arduino-language-server #arduino-language-server
]; ];