diff options
| author | Stefan Weigl-Bosker <stefan@s00.xyz> | 2025-04-06 21:00:21 -0400 |
|---|---|---|
| committer | Stefan Weigl-Bosker <stefan@s00.xyz> | 2025-04-06 21:00:21 -0400 |
| commit | a88fbe4bc93c44dd84ec3dee2b981c46881416d6 (patch) | |
| tree | 1d84fe4fe0e62a5ac4419ba6402fd9b550e0f640 | |
| parent | da765229ee0855fee18fcb4f058413ae72850824 (diff) | |
| download | home-a88fbe4bc93c44dd84ec3dee2b981c46881416d6.tar.gz | |
new font
| -rw-r--r-- | modules/gpg/default.nix | 2 | ||||
| -rw-r--r-- | modules/i3status.nix | 11 | ||||
| -rw-r--r-- | modules/neovim/nvim/lua/config/settings.lua | 1 | ||||
| -rw-r--r-- | modules/sway/default.nix | 4 |
4 files changed, 10 insertions, 8 deletions
diff --git a/modules/gpg/default.nix b/modules/gpg/default.nix index 514f36f..c8efda9 100644 --- a/modules/gpg/default.nix +++ b/modules/gpg/default.nix @@ -11,7 +11,7 @@ in config = mkIf cfg.enable { home.packages = with pkgs; [ - pinentry-qt +# pinentry-qt # pinentry-dmenu ]; # home.packages = with pkgs; [ diff --git a/modules/i3status.nix b/modules/i3status.nix index f7b534b..68168e5 100644 --- a/modules/i3status.nix +++ b/modules/i3status.nix @@ -20,7 +20,7 @@ in enable = true; enableDefault = false; general = { - colors = true; + colors = false; color_good = "#cacaca"; color_degraded = "#aca98a"; color_bad = "#ac8a8c"; @@ -31,7 +31,7 @@ in "volume master" = { position = 1; settings = { - format = " %volume"; + format = " %volume"; format_muted = ""; device = "default"; # mixer = "Master"; @@ -42,7 +42,7 @@ in enable = cfg.wireless; position = 3; settings = { - format_up = " %quality"; + format_up = ""; format_down = ""; }; }; @@ -58,14 +58,15 @@ in format = "%status %percentage"; format_percentage = "%.00f%s"; status_chr = ""; - status_bat = ""; + status_bat = ""; status_idle = ""; }; }; "tztime local" = { position = 10; settings = { - format = " %-I:%M %P"; + format = " %-I:%M %P"; + }; }; }; diff --git a/modules/neovim/nvim/lua/config/settings.lua b/modules/neovim/nvim/lua/config/settings.lua index 47d3630..19378af 100644 --- a/modules/neovim/nvim/lua/config/settings.lua +++ b/modules/neovim/nvim/lua/config/settings.lua @@ -12,6 +12,7 @@ vim.o.termguicolors = true vim.opt.fillchars = {eob = " "} --vim.o.smd = false --vim.opt.laststatus = 3 +vim.opt.laststatus=0 vim.opt.pumheight = 6 vim.opt.expandtab = true vim.o.mouse="" diff --git a/modules/sway/default.nix b/modules/sway/default.nix index 3fe2c9f..9294688 100644 --- a/modules/sway/default.nix +++ b/modules/sway/default.nix @@ -48,7 +48,7 @@ in right = "i"; fonts = { - names = [ "ComicShannsMono Nerd Font Mono" ]; # material + names = [ "BerkeleyMonoPatched Nerd Font" ]; size = 10.0; }; @@ -116,7 +116,7 @@ in mode = "hide"; hiddenState = "hide"; fonts = { - names = [ "BerkeleyMonoPatched Nerd Font" ]; + names = [ "BerkeleyMonoPatched Nerd Font Propo" ]; size = "10.0"; }; extraConfig = '' |