Homer: Improve styling.
This commit is contained in:
parent
43de7ea325
commit
ded12ad5f5
|
@ -1,8 +1,4 @@
|
|||
{
|
||||
config,
|
||||
lib,
|
||||
...
|
||||
}:
|
||||
{ config, lib, ... }:
|
||||
let
|
||||
cfg = config.module.sway;
|
||||
in
|
||||
|
|
|
@ -12,7 +12,8 @@
|
|||
isDefault = true;
|
||||
withExternalGnupg = true;
|
||||
};
|
||||
settings = let
|
||||
settings =
|
||||
let
|
||||
dayEnd = 19;
|
||||
dayStart = 10;
|
||||
fontSize = config.module.style.font.size.application;
|
||||
|
|
|
@ -62,7 +62,8 @@ let
|
|||
(mkVideoLink "LiveWallpaperPc" "https://livewallpaperpc.com")
|
||||
(mkVideoLink "MoeWalls" "https://moewalls.com")
|
||||
(mkVideoLink "Motion Backgrounds" "https://motionbgs.com")
|
||||
] ++ [
|
||||
]
|
||||
++ [
|
||||
(mkImageLink "Unsplash" "https://unsplash.com")
|
||||
(mkImageLink "Wallhaven" "https://wallhaven.cc")
|
||||
]
|
||||
|
@ -102,6 +103,7 @@ let
|
|||
theme = "default";
|
||||
title = "Dashboard";
|
||||
columns = "auto"; # 1, 2, 3, 4, 6, 12 or auto.
|
||||
stylesheet = [ "assets/custom.css" ];
|
||||
defaults = {
|
||||
colorTheme = "dark";
|
||||
layout = "columns"; # columns or list.
|
||||
|
|
4
package/homer/Custom.css
Normal file
4
package/homer/Custom.css
Normal file
|
@ -0,0 +1,4 @@
|
|||
.search-label {
|
||||
display: none;
|
||||
visibility: hidden;
|
||||
}
|
|
@ -6,6 +6,7 @@
|
|||
}@args:
|
||||
let
|
||||
cfg = (import ./Config.nix args).file;
|
||||
css = ./Custom.css;
|
||||
in
|
||||
stdenv.mkDerivation (finalAttrs: {
|
||||
dontUnpack = true;
|
||||
|
@ -23,6 +24,7 @@ stdenv.mkDerivation (finalAttrs: {
|
|||
pushd $out
|
||||
unzip $src
|
||||
cp ${cfg} $out/assets/config.yml
|
||||
cp ${css} $out/assets/custom.css
|
||||
|
||||
runHook postInstall
|
||||
'';
|
||||
|
|
Loading…
Reference in a new issue