Set background
This commit is contained in:
parent
790b01a533
commit
0c6da49b52
3 changed files with 171 additions and 28 deletions
|
|
@ -4,22 +4,26 @@
|
||||||
programs.foot = {
|
programs.foot = {
|
||||||
enable = true;
|
enable = true;
|
||||||
settings = {
|
settings = {
|
||||||
|
|
||||||
main = {
|
main = {
|
||||||
shell = "${pkgs.fish}/bin/fish -c 'tmux attach'";
|
shell = "${pkgs.fish}/bin/fish -c 'tmux attach'";
|
||||||
pad = "17x17";
|
pad = "18x18";
|
||||||
font = "JetBrains Mono:size=15";
|
# font = "JetBrains Mono:size=16";
|
||||||
# font = "Adwaita Mono:size=14";
|
font = "Adwaita Mono:size=16";
|
||||||
initial-window-mode = "maximized";
|
initial-window-mode = "maximized";
|
||||||
line-height = "19";
|
line-height = "20";
|
||||||
};
|
};
|
||||||
|
|
||||||
mouse.hide-when-typing = "yes";
|
mouse.hide-when-typing = "yes";
|
||||||
cursor = {
|
cursor = {
|
||||||
style = "beam";
|
style = "beam";
|
||||||
blink = true;
|
blink = true;
|
||||||
color = "eeeeee 1c1c1c";
|
|
||||||
};
|
};
|
||||||
|
|
||||||
csd.size = "0";
|
csd.size = "0";
|
||||||
|
|
||||||
colors = {
|
colors = {
|
||||||
|
cursor = "eeeeee 1c1c1c";
|
||||||
alpha = "1.0";
|
alpha = "1.0";
|
||||||
background = "eeeeee";
|
background = "eeeeee";
|
||||||
foreground = "1c1c1c";
|
foreground = "1c1c1c";
|
||||||
|
|
@ -40,10 +44,12 @@
|
||||||
regular7 = "ffffff"; # white
|
regular7 = "ffffff"; # white
|
||||||
bright7 = "bcbcbc"; # bright white
|
bright7 = "bcbcbc"; # bright white
|
||||||
};
|
};
|
||||||
|
|
||||||
key-bindings = {
|
key-bindings = {
|
||||||
show-urls-launch = "Control+Shift+g";
|
show-urls-launch = "Control+Shift+g";
|
||||||
show-urls-copy = "Control+Shift+y";
|
show-urls-copy = "Control+Shift+y";
|
||||||
};
|
};
|
||||||
|
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -19,34 +19,26 @@
|
||||||
"run-or-raise@edvard.cz"
|
"run-or-raise@edvard.cz"
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
"org/gnome/desktop/peripherals/touchpad" = {
|
|
||||||
speed = 0.5;
|
|
||||||
};
|
|
||||||
"org/gnome/mutter" = {
|
|
||||||
dynamic-workspaces = true;
|
|
||||||
};
|
|
||||||
"org/gnome/mutter/keybindings" = {
|
|
||||||
switch-monitor = ["XF86Display"];
|
|
||||||
};
|
|
||||||
"org/gnome/desktop/session" = {
|
|
||||||
idle-delay = 0;
|
|
||||||
};
|
|
||||||
"org/gnome/settings-daemon/plugins/power" = {
|
|
||||||
sleep-inactive-battery-timeout = 1200;
|
|
||||||
};
|
|
||||||
"org/gnome/settings-daemon/plugins/media-keys" = {
|
|
||||||
screenreader = [];
|
|
||||||
magnifier = ["<Super>z"];
|
|
||||||
magnifier-zoom-in = [];
|
|
||||||
magnifier-zoom-out = [];
|
|
||||||
help = [];
|
|
||||||
logout = ["<Super>q"];
|
|
||||||
};
|
|
||||||
"org/gnome/shell/keybindings" = {
|
"org/gnome/shell/keybindings" = {
|
||||||
toggle-quick-settings = ["<Super>comma"];
|
toggle-quick-settings = ["<Super>comma"];
|
||||||
toggle-message-tray = ["<Super>n"];
|
toggle-message-tray = ["<Super>n"];
|
||||||
toggle-overview = ["<Super>a"];
|
toggle-overview = ["<Super>a"];
|
||||||
};
|
};
|
||||||
|
"org/gnome/desktop/peripherals/touchpad" = {
|
||||||
|
speed = 0.5;
|
||||||
|
};
|
||||||
|
"org/gnome/desktop/session" = {
|
||||||
|
idle-delay = 0;
|
||||||
|
};
|
||||||
|
"org/gnome/desktop/interface" = {
|
||||||
|
cursor-theme = "Adwaita";
|
||||||
|
icon-theme = "Adwaita";
|
||||||
|
gtk-theme = "Adwaita";
|
||||||
|
};
|
||||||
|
"org/gnome/desktop/background" = {
|
||||||
|
picture-uri = "file://" + ./wallpaper_nix_paper_gray.svg;
|
||||||
|
picture-options = "zoom";
|
||||||
|
};
|
||||||
"org/gnome/desktop/wm/keybindings" = {
|
"org/gnome/desktop/wm/keybindings" = {
|
||||||
move-to-monitor-down = [];
|
move-to-monitor-down = [];
|
||||||
move-to-monitor-left = [];
|
move-to-monitor-left = [];
|
||||||
|
|
@ -95,6 +87,23 @@
|
||||||
toggle-fullscreen = ["<Shift><Super>f"];
|
toggle-fullscreen = ["<Shift><Super>f"];
|
||||||
begin-resize = ["<Super>r"];
|
begin-resize = ["<Super>r"];
|
||||||
};
|
};
|
||||||
|
"org/gnome/mutter" = {
|
||||||
|
dynamic-workspaces = true;
|
||||||
|
};
|
||||||
|
"org/gnome/mutter/keybindings" = {
|
||||||
|
switch-monitor = ["XF86Display"];
|
||||||
|
};
|
||||||
|
"org/gnome/settings-daemon/plugins/media-keys" = {
|
||||||
|
screenreader = [];
|
||||||
|
magnifier = ["<Super>z"];
|
||||||
|
magnifier-zoom-in = [];
|
||||||
|
magnifier-zoom-out = [];
|
||||||
|
help = [];
|
||||||
|
logout = ["<Super>q"];
|
||||||
|
};
|
||||||
|
"org/gnome/settings-daemon/plugins/power" = {
|
||||||
|
sleep-inactive-battery-timeout = 1200;
|
||||||
|
};
|
||||||
};
|
};
|
||||||
xdg.configFile."run-or-raise/shortcuts.conf".source = ./run-or-raise.conf;
|
xdg.configFile."run-or-raise/shortcuts.conf".source = ./run-or-raise.conf;
|
||||||
}
|
}
|
||||||
|
|
|
||||||
128
home/gnome/wallpaper_nix_paper_gray.svg
Normal file
128
home/gnome/wallpaper_nix_paper_gray.svg
Normal file
|
|
@ -0,0 +1,128 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||||
|
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||||
|
|
||||||
|
<svg
|
||||||
|
width="3840"
|
||||||
|
height="2160"
|
||||||
|
viewBox="0 0 3600.0001 2025"
|
||||||
|
id="svg2"
|
||||||
|
version="1.1"
|
||||||
|
inkscape:version="1.4 (e7c3feb100, 2024-10-09)"
|
||||||
|
sodipodi:docname="papercolor_grey.svg"
|
||||||
|
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||||
|
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||||
|
xmlns="http://www.w3.org/2000/svg"
|
||||||
|
xmlns:svg="http://www.w3.org/2000/svg"
|
||||||
|
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||||
|
xmlns:cc="http://creativecommons.org/ns#"
|
||||||
|
xmlns:dc="http://purl.org/dc/elements/1.1/">
|
||||||
|
<defs
|
||||||
|
id="defs4" />
|
||||||
|
<sodipodi:namedview
|
||||||
|
id="base"
|
||||||
|
pagecolor="#ffffff"
|
||||||
|
bordercolor="#666666"
|
||||||
|
borderopacity="1.0"
|
||||||
|
inkscape:pageopacity="0.0"
|
||||||
|
inkscape:pageshadow="2"
|
||||||
|
inkscape:zoom="0.25780956"
|
||||||
|
inkscape:cx="500.36934"
|
||||||
|
inkscape:cy="1068.6182"
|
||||||
|
inkscape:document-units="px"
|
||||||
|
inkscape:current-layer="layer3"
|
||||||
|
showgrid="false"
|
||||||
|
inkscape:window-width="1920"
|
||||||
|
inkscape:window-height="1014"
|
||||||
|
inkscape:window-x="0"
|
||||||
|
inkscape:window-y="0"
|
||||||
|
inkscape:window-maximized="1"
|
||||||
|
inkscape:snap-global="true"
|
||||||
|
fit-margin-top="0"
|
||||||
|
fit-margin-left="0"
|
||||||
|
fit-margin-right="0"
|
||||||
|
fit-margin-bottom="0"
|
||||||
|
inkscape:showpageshadow="2"
|
||||||
|
inkscape:pagecheckerboard="0"
|
||||||
|
inkscape:deskcolor="#d1d1d1" />
|
||||||
|
<metadata
|
||||||
|
id="metadata7">
|
||||||
|
<rdf:RDF>
|
||||||
|
<cc:Work
|
||||||
|
rdf:about="">
|
||||||
|
<dc:format>image/svg+xml</dc:format>
|
||||||
|
<dc:type
|
||||||
|
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||||
|
</cc:Work>
|
||||||
|
</rdf:RDF>
|
||||||
|
</metadata>
|
||||||
|
<g
|
||||||
|
inkscape:groupmode="layer"
|
||||||
|
id="layer7"
|
||||||
|
inkscape:label="bg"
|
||||||
|
style="display:inline">
|
||||||
|
<rect
|
||||||
|
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#bcbcbc;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
|
||||||
|
id="rect5389"
|
||||||
|
width="3600"
|
||||||
|
height="2024.7382"
|
||||||
|
x="132.5822"
|
||||||
|
y="-957.77832"
|
||||||
|
transform="translate(-132.5822,958.04022)" />
|
||||||
|
</g>
|
||||||
|
<g
|
||||||
|
inkscape:groupmode="layer"
|
||||||
|
id="layer3"
|
||||||
|
inkscape:label="gradient-logo"
|
||||||
|
style="display:inline;opacity:1"
|
||||||
|
transform="translate(-132.5822,958.04022)">
|
||||||
|
<g
|
||||||
|
id="g4"
|
||||||
|
transform="matrix(1.8009416,0,0,1.8009416,-1547.8855,-43.619081)"
|
||||||
|
style="stroke-width:0.555265">
|
||||||
|
<g
|
||||||
|
id="g2"
|
||||||
|
style="fill:#9d9da1;fill-opacity:1;stroke-width:0.555265">
|
||||||
|
<path
|
||||||
|
sodipodi:nodetypes="cccccccccc"
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
id="use3439-6"
|
||||||
|
d="m 1864.6278,-49.22711 -154.8754,268.22157 -36.1595,-61.29501 41.7398,-71.834875 -82.8948,-0.217865 -17.667,-30.627963 18.0405,-31.326737 117.9921,0.372571 42.4056,-73.105854 z"
|
||||||
|
style="fill:#9d9da1;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2.11091;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||||
|
<path
|
||||||
|
sodipodi:nodetypes="cccccccccc"
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
id="use3445-0"
|
||||||
|
d="m 1876.5091,165.18522 309.7244,0.0152 -35.0032,61.96257 -83.0808,-0.23034 41.2588,71.89798 -17.6911,30.61406 -36.15,0.0398 -58.6734,-102.37043 -84.5144,-0.17145 z"
|
||||||
|
style="fill:#9d9da1;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2.11091;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||||
|
<path
|
||||||
|
sodipodi:nodetypes="cccccccccc"
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
id="use3449-5"
|
||||||
|
d="m 2056.7797,47.657079 -154.849,-268.236809 71.1628,-0.66757 41.3409,72.06522 41.6361,-71.68011 35.3581,0.0139 18.1095,31.2869 -59.3187,101.99786 42.1087,73.2773 z"
|
||||||
|
style="fill:#9d9da1;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2.11091;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||||
|
</g>
|
||||||
|
<g
|
||||||
|
id="g3"
|
||||||
|
style="fill:#87878c;fill-opacity:1;stroke-width:0.555265">
|
||||||
|
<path
|
||||||
|
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#87878c;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2.11091;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
|
||||||
|
d="m 1808.7367,61.262431 154.849,268.236809 -71.1628,0.66757 -41.3409,-72.06522 -41.6361,71.68011 -35.3581,-0.0139 -18.1095,-31.2869 59.3187,-101.99786 -42.1087,-73.27717 z"
|
||||||
|
id="path4260-0"
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
sodipodi:nodetypes="cccccccccc" />
|
||||||
|
<path
|
||||||
|
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#87878c;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2.11091;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
|
||||||
|
d="m 1988.3675,-56.881714 -309.7243,-0.01524 35.0032,-61.962576 83.0808,0.23034 -41.2588,-71.89797 17.6911,-30.61407 36.15,-0.0398 58.6734,102.37043 84.5143,0.17138 z"
|
||||||
|
id="use4354-5"
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
sodipodi:nodetypes="cccccccccc" />
|
||||||
|
<path
|
||||||
|
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#87878c;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2.11091;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
|
||||||
|
d="m 2000.5368,158.10537 154.8754,-268.22158 36.1595,61.295012 -41.7398,71.83488 82.8948,0.217865 17.667,30.627963 -18.0405,31.326737 -117.9921,-0.372571 -42.4055,73.105794 z"
|
||||||
|
id="use4362-2"
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
sodipodi:nodetypes="cccccccccc" />
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 7.1 KiB |
Loading…
Add table
Add a link
Reference in a new issue