mirror of
https://github.com/kmein/niveum
synced 2026-03-20 12:01:06 +01:00
feat(i3): larger font on homeros, more monospace
This commit is contained in:
@@ -18,7 +18,7 @@ in with config.niveum; {
|
|||||||
home-manager.users.me.xsession.windowManager.i3 = {
|
home-manager.users.me.xsession.windowManager.i3 = {
|
||||||
enable = true;
|
enable = true;
|
||||||
config = rec {
|
config = rec {
|
||||||
fonts = [ "Sans ${toString config.niveum.fonts.size}" ];
|
fonts = [ "Monospace ${toString config.niveum.fonts.size}" ];
|
||||||
modifier = "Mod4";
|
modifier = "Mod4";
|
||||||
window = {
|
window = {
|
||||||
titlebar = false;
|
titlebar = false;
|
||||||
@@ -66,7 +66,7 @@ in with config.niveum; {
|
|||||||
};
|
};
|
||||||
bars = [{
|
bars = [{
|
||||||
workspaceButtons = false;
|
workspaceButtons = false;
|
||||||
fonts = [ "Sans ${toString config.niveum.fonts.size}" ];
|
fonts = [ "Monospace ${toString (config.niveum.fonts.size - 3)}" ];
|
||||||
mode = "hide";
|
mode = "hide";
|
||||||
colors = rec {
|
colors = rec {
|
||||||
background = colours.background;
|
background = colours.background;
|
||||||
|
|||||||
@@ -6,7 +6,7 @@ with config.niveum; {
|
|||||||
scrollbar = false;
|
scrollbar = false;
|
||||||
borderWidth = 0;
|
borderWidth = 0;
|
||||||
lines = 5;
|
lines = 5;
|
||||||
font = "Monospace ${toString (fonts.size + 1)}";
|
font = "Monospace ${toString (fonts.size - 1)}";
|
||||||
colors = rec {
|
colors = rec {
|
||||||
window = rec {
|
window = rec {
|
||||||
background = colours.foreground;
|
background = colours.foreground;
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
{ config, pkgs, ... }:
|
{ config, pkgs, lib, ... }:
|
||||||
{
|
{
|
||||||
imports = [
|
imports = [
|
||||||
<niveum/configs/default.nix>
|
<niveum/configs/default.nix>
|
||||||
@@ -13,6 +13,7 @@
|
|||||||
batteryBlocks.default = "BAT1";
|
batteryBlocks.default = "BAT1";
|
||||||
networkInterfaces.wireless = "wlp3s0";
|
networkInterfaces.wireless = "wlp3s0";
|
||||||
promptColours.success = "green";
|
promptColours.success = "green";
|
||||||
|
fonts.size = lib.mkForce 11;
|
||||||
};
|
};
|
||||||
|
|
||||||
boot.loader.systemd-boot = {
|
boot.loader.systemd-boot = {
|
||||||
|
|||||||
Reference in New Issue
Block a user