File tree 5 files changed +57
-3
lines changed
desktop/hyprland/settings
5 files changed +57
-3
lines changed Original file line number Diff line number Diff line change
1
+ {
2
+ wallpaper = ./wallpapers/min_forest.png ;
3
+
4
+ neovim = pkgs : ( let
5
+ decay-nvim = pkgs . vimUtils . buildVimPlugin {
6
+ name = "decay.nvim" ;
7
+ src = pkgs . decay-nvim-src ;
8
+ } ;
9
+ in {
10
+ extraPlugins = [ decay-nvim ] ;
11
+ colorscheme = "decay-dark" ;
12
+ opts . background = "dark" ;
13
+ } ) ;
14
+
15
+ palette = {
16
+ scheme = "dark" ;
17
+
18
+ accents = {
19
+ primary = "blue" ;
20
+ secondary = "cyan" ;
21
+ } ;
22
+
23
+ primary = {
24
+ background = "#101419" ;
25
+ foreground = "#b6beca" ;
26
+ } ;
27
+
28
+ normal = {
29
+ black = "#1c252c" ;
30
+ red = "#e05f65" ;
31
+ green = "#78dba9" ;
32
+ yellow = "#f1cf8a" ;
33
+ blue = "#70a5eb" ;
34
+ magenta = "#c68aee" ;
35
+ cyan = "#74bee9" ;
36
+ white = "#dee1e6" ;
37
+ } ;
38
+
39
+ bright = {
40
+ black = "#384148" ;
41
+ blue = "#8cc1ff" ;
42
+ cyan = "#90daff" ;
43
+ green = "#94f7c5" ;
44
+ magenta = "#e2a6ff" ;
45
+ red = "#fc7b81" ;
46
+ white = "#fafdff" ;
47
+ yellow = "#ffeba6" ;
48
+ } ;
49
+ } ;
50
+ }
Original file line number Diff line number Diff line change 46
46
} ;
47
47
48
48
# select a colorscheme definition from `./colorschemes/*.nix`.
49
- metacolorscheme = import ./colorschemes/light -decay.nix ;
49
+ metacolorscheme = import ./colorschemes/dark -decay.nix ;
50
50
51
51
# exports the palette attribute of metacolorscheme to be able to call
52
52
# the colors from the themeable applications, even the awm one.
Original file line number Diff line number Diff line change 20
20
21
21
# blur for unfocused windows
22
22
windowrulev2 = [
23
- "opacity 1.0 override 0.8 override 1.0 override,title:^(.*)$"
23
+ "opacity 1.0 override 0.9 override 1.0 override,title:^(.*)$"
24
24
] ;
25
25
26
26
general = let
Original file line number Diff line number Diff line change 23
23
} ;
24
24
25
25
window = {
26
+ opacity = 0.95 ;
26
27
padding = rec {
27
28
x = 8 ;
28
29
y = x ;
34
35
in {
35
36
size = 10.5 ;
36
37
offset . y = offset ;
37
- glyph_offset . y = if offset == 0 then 0 else offset ;
38
+ glyph_offset . y =
39
+ if offset == 0
40
+ then 0
41
+ else offset ;
38
42
39
43
normal = {
40
44
family = "monospace" ;
You can’t perform that action at this time.
0 commit comments