mirror of
https://github.com/artagaz/nix-config.git
synced 2026-06-21 02:02:09 +07:00
refactor, matugen, theming, love it.
This commit is contained in:
@@ -11,6 +11,7 @@
|
||||
};
|
||||
settings = {
|
||||
confirm_os_window_close = 0;
|
||||
background_opacity = 0.85;
|
||||
};
|
||||
extraConfig = ''
|
||||
include ~/.cache/wal/colors-kitty.conf
|
||||
|
||||
@@ -168,7 +168,7 @@ layout {
|
||||
// off
|
||||
|
||||
// How many logical pixels the ring extends out from the windows.
|
||||
width 3
|
||||
width 1
|
||||
|
||||
// Colors can be set in a variety of ways:
|
||||
// - CSS named colors: "red"
|
||||
@@ -204,9 +204,9 @@ layout {
|
||||
border {
|
||||
// The settings are the same as for the focus ring.
|
||||
// If you enable the border, you probably want to disable the focus ring.
|
||||
off
|
||||
on
|
||||
|
||||
width 2
|
||||
width 1
|
||||
// active-color "#ffc87f"
|
||||
// inactive-color "#505050"
|
||||
|
||||
|
||||
@@ -23,6 +23,7 @@
|
||||
x11Support = false;
|
||||
settings = {
|
||||
setup_cmd = "${xsession-wrapper}";
|
||||
session_log = ".ly-session.log";
|
||||
};
|
||||
};
|
||||
|
||||
@@ -52,7 +53,13 @@
|
||||
{
|
||||
home.activation = {
|
||||
pywal = ''
|
||||
${pkgs.pywal}/bin/wal -i ${self.wallpaper} --saturate 0.25
|
||||
${pkgs.pywal}/bin/wal -i ${self.wallpaper}
|
||||
'';
|
||||
swaybg = ''
|
||||
${pkgs.swaybg}/bin/swaybg -i ${self.wallpaper} &
|
||||
'';
|
||||
waybar = ''
|
||||
${pkgs.procps}/bin/pkill -SIGUSR2 waybar
|
||||
'';
|
||||
};
|
||||
|
||||
|
||||
+3
-3
@@ -1,6 +1,6 @@
|
||||
{ self, ... }:
|
||||
let
|
||||
wallpaper = "/home/${self.user}/Pictures/iriza-katou.jpg";
|
||||
wallpaper = "/home/${self.user}/Pictures/da-man.png";
|
||||
|
||||
font = {
|
||||
mono = "JetBrainsMonoNerdFontMono";
|
||||
@@ -10,8 +10,8 @@ let
|
||||
};
|
||||
|
||||
border = {
|
||||
main = "0";
|
||||
small = "0";
|
||||
main = "8";
|
||||
small = "8";
|
||||
};
|
||||
in {
|
||||
flake = {
|
||||
|
||||
Reference in New Issue
Block a user