aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAkshay <[email protected]>2023-01-22 03:55:24 +0000
committerAkshay <[email protected]>2023-01-22 03:55:24 +0000
commitd328d8acc452f1d22dd6395e82e616aa4605fd38 (patch)
tree9b1fc5f3b5fc355cdd179e203f522ea528f8ea6b
parent563855b35d41305eb9647d687f5e57af6e66ac14 (diff)
rework sizing; enable powertop
-rw-r--r--home.nix2
-rw-r--r--hosts/myrtle/configuration.nix4
-rw-r--r--programs/st/config.h2
-rw-r--r--services/dunst.nix2
-rw-r--r--x/xft.nix2
5 files changed, 7 insertions, 5 deletions
diff --git a/home.nix b/home.nix
index 322e99a..2cd58a5 100644
--- a/home.nix
+++ b/home.nix
@@ -87,7 +87,7 @@
87 windowManager.command = "2bwm"; 87 windowManager.command = "2bwm";
88 initExtra = '' 88 initExtra = ''
89 ${pkgs.hsetroot}/bin/hsetroot -solid "${theme.base00}" 89 ${pkgs.hsetroot}/bin/hsetroot -solid "${theme.base00}"
90 xrandr --dpi 288 90 xrandr --dpi 192
91 xrdb -load $HOME/.Xresources 91 xrdb -load $HOME/.Xresources
92 ''; 92 '';
93 }; 93 };
diff --git a/hosts/myrtle/configuration.nix b/hosts/myrtle/configuration.nix
index 8803649..2f47776 100644
--- a/hosts/myrtle/configuration.nix
+++ b/hosts/myrtle/configuration.nix
@@ -103,7 +103,9 @@
103 enable = true; 103 enable = true;
104 enableUserService = true; 104 enableUserService = true;
105 }; 105 };
106 services.supergfxd.enable = true; 106 services.supergfxd.enable = false;
107
108 powerManagement.powertop.enable = true;
107 109
108 users.users.np = { 110 users.users.np = {
109 isNormalUser = true; 111 isNormalUser = true;
diff --git a/programs/st/config.h b/programs/st/config.h
index a0811fa..c9fca58 100644
--- a/programs/st/config.h
+++ b/programs/st/config.h
@@ -6,7 +6,7 @@
6 * 6 *
7 * font: see http://freedesktop.org/software/fontconfig/fontconfig-user.html 7 * font: see http://freedesktop.org/software/fontconfig/fontconfig-user.html
8 */ 8 */
9static char *font = "Nerd Input:pixelsize=30:antialias=true:autohint=true"; 9static char *font = "Nerd Input:pixelsize=44:antialias=true:autohint=true";
10static int borderpx = 30; 10static int borderpx = 30;
11 11
12/* 12/*
diff --git a/services/dunst.nix b/services/dunst.nix
index 570beba..b8bda7f 100644
--- a/services/dunst.nix
+++ b/services/dunst.nix
@@ -10,7 +10,7 @@ with theme;
10 enable = true; 10 enable = true;
11 settings = { 11 settings = {
12 global = { 12 global = {
13 font = "Input 9"; 13 font = "Nerd Input 12";
14 allow_markup = "no"; 14 allow_markup = "no";
15 format = ''%s\n%b''; 15 format = ''%s\n%b'';
16 sort = "yes"; 16 sort = "yes";
diff --git a/x/xft.nix b/x/xft.nix
index 30fed14..32a1957 100644
--- a/x/xft.nix
+++ b/x/xft.nix
@@ -11,6 +11,6 @@
11 "Xft.hintstyle" = "hintslight"; 11 "Xft.hintstyle" = "hintslight";
12 "Xft.hinting" = true; 12 "Xft.hinting" = true;
13 "Xft.rgba" = "rgb"; 13 "Xft.rgba" = "rgb";
14 "Xft.dpi" = 288; 14 "Xft.dpi" = 192;
15 }; 15 };
16} 16}