mirror of
https://github.com/harryssecret/homelab-nix.git
synced 2025-08-08 06:30:18 +02:00
darker colors because you feel like it
This commit is contained in:
parent
55f4153e63
commit
eaf0d4b4e1
3 changed files with 2532 additions and 3 deletions
|
@ -337,7 +337,7 @@ binds {
|
||||||
// Suggested binds for running programs: terminal, app launcher, screen locker.
|
// Suggested binds for running programs: terminal, app launcher, screen locker.
|
||||||
Mod+Return { spawn "footclient"; }
|
Mod+Return { spawn "footclient"; }
|
||||||
Mod+D { spawn "fuzzel"; }
|
Mod+D { spawn "fuzzel"; }
|
||||||
Super+Alt+L { spawn "swaylock --screenshots --clock --indicator --effect-blur 7x5 --effect-vignette 0.5:0.5 --fade-in 0.2"; }
|
Super+Alt+L { spawn "swaylock" "--screenshots" "--clock" "--indicator" "--effect-blur" "7x5" "--effect-vignette" "0.5:0.5" "--fade-in" "0.2"; }
|
||||||
|
|
||||||
// You can also use a shell. Do this if you need pipes, multiple commands, etc.
|
// You can also use a shell. Do this if you need pipes, multiple commands, etc.
|
||||||
// Note: the entire command goes as a single argument in the end.
|
// Note: the entire command goes as a single argument in the end.
|
||||||
|
@ -580,9 +580,9 @@ environment {
|
||||||
|
|
||||||
// apps to launch at startup
|
// apps to launch at startup
|
||||||
spawn-at-startup "zen-beta"
|
spawn-at-startup "zen-beta"
|
||||||
spawn-at-startup "obsidian"
|
|
||||||
spawn-at-startup "vesktop"
|
spawn-at-startup "vesktop"
|
||||||
spawn-at-startup "beeper"
|
spawn-at-startup "beeper"
|
||||||
|
spawn-at-startup "cinny"
|
||||||
|
|
||||||
clipboard {
|
clipboard {
|
||||||
disable-primary
|
disable-primary
|
||||||
|
@ -599,7 +599,19 @@ window-rule {
|
||||||
open-on-workspace "chat"
|
open-on-workspace "chat"
|
||||||
}
|
}
|
||||||
|
|
||||||
|
window-rule {
|
||||||
|
match app-id=r#"^discord$"#
|
||||||
|
match is-active=true
|
||||||
|
open-maximized true
|
||||||
|
}
|
||||||
|
|
||||||
window-rule {
|
window-rule {
|
||||||
match at-startup=true app-id=r#"zen-beta$"#
|
match at-startup=true app-id=r#"zen-beta$"#
|
||||||
|
match at-startup=true app-id=r#"org.qutebrowser.qutebrowser$"#
|
||||||
open-on-workspace "internet"
|
open-on-workspace "internet"
|
||||||
}
|
}
|
||||||
|
|
||||||
|
window-rule {
|
||||||
|
match app-id=r#"mpv$"#
|
||||||
|
open-floating true
|
||||||
|
}
|
||||||
|
|
2513
home-manager/dotfiles/qutebrowser/config.py
Normal file
2513
home-manager/dotfiles/qutebrowser/config.py
Normal file
File diff suppressed because it is too large
Load diff
|
@ -254,7 +254,7 @@
|
||||||
};
|
};
|
||||||
|
|
||||||
catppuccin = {
|
catppuccin = {
|
||||||
flavor = "latte";
|
flavor = "mocha";
|
||||||
mpv.enable = true;
|
mpv.enable = true;
|
||||||
mako.enable = true;
|
mako.enable = true;
|
||||||
lazygit.enable = true;
|
lazygit.enable = true;
|
||||||
|
@ -283,6 +283,7 @@
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
);
|
);
|
||||||
|
|
||||||
config = {
|
config = {
|
||||||
profile = "high-quality";
|
profile = "high-quality";
|
||||||
ytdl-format = "bestvideo+bestaudio";
|
ytdl-format = "bestvideo+bestaudio";
|
||||||
|
@ -300,6 +301,9 @@
|
||||||
ll = "ls -l";
|
ll = "ls -l";
|
||||||
edit = "sudo -e";
|
edit = "sudo -e";
|
||||||
update = "sudo nixos-rebuild switch";
|
update = "sudo nixos-rebuild switch";
|
||||||
|
lg = "lazygit";
|
||||||
|
gpl = "git pull";
|
||||||
|
gpsh = "git push";
|
||||||
};
|
};
|
||||||
|
|
||||||
history.size = 10000;
|
history.size = 10000;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue