update
This commit is contained in:
parent
45383a0d8b
commit
e925f586a1
8 changed files with 133 additions and 166 deletions
|
@ -5,29 +5,35 @@ let
|
|||
in
|
||||
{
|
||||
services.kanshi = {
|
||||
profiles = {
|
||||
sedetary = {
|
||||
outputs = [
|
||||
{
|
||||
settings = [
|
||||
{
|
||||
profile = {
|
||||
name = "sedetary";
|
||||
outputs = [
|
||||
{
|
||||
criteria = "eDP-1";
|
||||
status = "disable";
|
||||
position = "1920,312";
|
||||
}
|
||||
{
|
||||
criteria = "HDMI-A-1";
|
||||
position = "0,0";
|
||||
}
|
||||
];
|
||||
exec = [ "xrdb .Xresources" ];
|
||||
};
|
||||
}
|
||||
{
|
||||
profile = {
|
||||
name = "nomad";
|
||||
outputs = [{
|
||||
criteria = "eDP-1";
|
||||
status = "disable";
|
||||
status = "enable";
|
||||
position = "1920,312";
|
||||
}
|
||||
{
|
||||
criteria = "HDMI-A-1";
|
||||
position = "0,0";
|
||||
}
|
||||
];
|
||||
exec = [ "xrdb .Xresources" ];
|
||||
};
|
||||
nomad = {
|
||||
outputs = [{
|
||||
criteria = "eDP-1";
|
||||
status = "enable";
|
||||
position = "1920,312";
|
||||
}];
|
||||
exec = [ "xrdb .Xresources" ];
|
||||
};
|
||||
};
|
||||
}];
|
||||
exec = [ "xrdb .Xresources" ];
|
||||
};
|
||||
}
|
||||
];
|
||||
};
|
||||
}
|
||||
|
|
|
@ -5,7 +5,7 @@ let
|
|||
in
|
||||
{
|
||||
programs.swaylock.settings = {
|
||||
image = theme.background;
|
||||
image = toString theme.background;
|
||||
font = font.interface;
|
||||
font-size = font.size.medium;
|
||||
indicator-thickness = 20;
|
||||
|
|
|
@ -35,7 +35,7 @@ lib.mkIf (desktop == "sway")
|
|||
);
|
||||
qt = {
|
||||
enable = true;
|
||||
platformTheme = "qtct";
|
||||
platformTheme.name = "qtct";
|
||||
};
|
||||
|
||||
dconf.settings = {
|
||||
|
|
|
@ -27,7 +27,7 @@ let
|
|||
icon_theme = "Papirus-Dark";
|
||||
cursor_theme = "Bibata-Modern-Classic";
|
||||
|
||||
background = "~/.local/share/backgrounds/nixos-dark-pattern.png";
|
||||
background = ./backgrounds/nixos-dark-pattern.png;
|
||||
opacity = 95;
|
||||
opacityHex = "ee";
|
||||
color = {
|
||||
|
@ -58,7 +58,7 @@ let
|
|||
icon_theme = "Papirus-Light";
|
||||
cursor_theme = "Bibata-Modern-Classic";
|
||||
|
||||
background = "~/.local/share/backgrounds/nixos-light-pattern.png";
|
||||
background = ./backgrounds/nixos-light-pattern.png;
|
||||
opacity = 95;
|
||||
opacityHex = "ee";
|
||||
color = {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue