1
0
mirror of https://github.com/kmein/niveum synced 2026-03-17 18:41:09 +01:00
+ scripts as derivations
~ move home-mananger stuff to the right modules / dot
+ home-manager ssh config
- vim: powerline symbols
~ toggle keyboard with alt+shift
+ ssh agent at startup
~ retiolum ipv6
~ texlive packages
~ shell: vim mode
+ THEMING
~ i3 minimaler + q
~ terminal: use urxvt
This commit is contained in:
Kierán Meinhardt
2018-12-30 14:34:39 +01:00
parent 9f55b9fe69
commit d4af2f2eee
21 changed files with 735 additions and 811 deletions

34
dot/rofi.nix Normal file
View File

@@ -0,0 +1,34 @@
{ config }:
with import ../theme.nix;
{
enable = true;
separator = "solid";
scrollbar = false;
terminal = config.defaultApplications.terminal;
borderWidth = 0;
lines = 5;
font = "${uiFont.name} ${toString (uiFont.size + 1)}";
colors = rec {
window = { background = invertedColorScheme.background; border = invertedColorScheme.background; separator = invertedColorScheme.black.light; };
rows = {
normal = {
background = window.background;
backgroundAlt = window.background;
foreground = invertedColorScheme.foreground;
highlight = { foreground = invertedColorScheme.cyan.dark; inherit (window) background; };
};
active = {
background = window.background;
backgroundAlt = window.background;
foreground = invertedColorScheme.yellow.dark;
highlight = { foreground = invertedColorScheme.green.dark; inherit (window) background; };
};
urgent = {
background = window.background;
backgroundAlt = window.background;
foreground = invertedColorScheme.red.dark;
highlight = { foreground = invertedColorScheme.magenta.dark; inherit (window) background; };
};
};
};
}