overheating: set scale of login screen to 2.0
This commit is contained in:
parent
fcf4fc3064
commit
d79f636669
6 changed files with 30 additions and 6 deletions
|
|
@ -45,7 +45,7 @@ in
|
|||
environment.etc."greetd/hyprgreet.conf".text = ''
|
||||
exec-once=gsettings set org.gnome.desktop.interface color-scheme 'prefer-dark'
|
||||
|
||||
monitor=${config.programs.ironbar.monitor},3440x1440@180,0x0,1
|
||||
monitor=${config.programs.ironbar.monitor},3440x1440@180,0x0,${config.programs.ironbar.scale}
|
||||
monitor=_,disable
|
||||
|
||||
input {
|
||||
|
|
|
|||
|
|
@ -7,7 +7,7 @@
|
|||
"eDP-1,2944x1840@90,0x0,2"
|
||||
|
||||
# all others
|
||||
",highrr,auto,1"
|
||||
",highres,auto,1"
|
||||
];
|
||||
programs.ironbar.monitor = "eDP-1";
|
||||
programs.ironbar.battery = [
|
||||
|
|
|
|||
|
|
@ -7,5 +7,8 @@
|
|||
boot.kernelPackages = pkgs.linuxPackages_latest;
|
||||
networking.hostName = "overheating";
|
||||
programs.ironbar.monitor = "eDP-1";
|
||||
programs.boot.boot_params = [];
|
||||
programs.ironbar.scale = "2.0";
|
||||
programs.boot.boot_params = [ ];
|
||||
hardware.bluetooth.enable = true;
|
||||
hardware.bluetooth.powerOnBoot = true;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -5,13 +5,21 @@
|
|||
example = "eDP-1";
|
||||
type = lib.types.str;
|
||||
description = ''
|
||||
Extra settings for foo.
|
||||
main monitor
|
||||
'';
|
||||
};
|
||||
scale = lib.mkOption {
|
||||
default = "1.0";
|
||||
example = "1.0";
|
||||
type = lib.types.str;
|
||||
description = ''
|
||||
Scale for the monitor
|
||||
'';
|
||||
};
|
||||
|
||||
battery = lib.mkOption {
|
||||
default = [];
|
||||
example = [];
|
||||
default = [ ];
|
||||
example = [ ];
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
|
|||
|
|
@ -25,6 +25,13 @@
|
|||
#yaml
|
||||
yamlfmt
|
||||
yamllint
|
||||
yaml-language-server
|
||||
|
||||
#markdown
|
||||
marksman
|
||||
|
||||
#html
|
||||
html-tidy
|
||||
|
||||
#json
|
||||
jsonfmt
|
||||
|
|
@ -32,6 +39,7 @@
|
|||
#css
|
||||
tailwindcss
|
||||
tailwindcss-language-server
|
||||
nodePackages_latest.vscode-css-languageserver-bin
|
||||
|
||||
#editors
|
||||
neovide
|
||||
|
|
@ -74,6 +82,7 @@
|
|||
dotnet-sdk_8
|
||||
omnisharp-roslyn
|
||||
csharpier
|
||||
netcoredbg
|
||||
|
||||
#zig
|
||||
zig
|
||||
|
|
|
|||
|
|
@ -118,6 +118,10 @@ return {
|
|||
yamlls = {
|
||||
mason = false,
|
||||
},
|
||||
cssls = {
|
||||
mason = false,
|
||||
cmd = { "css-languageserver", '--stdio' },
|
||||
},
|
||||
lua_ls = {
|
||||
mason = false,
|
||||
{
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue