mirror of
https://github.com/harryssecret/homelab-nix.git
synced 2025-10-02 06:54:49 +02:00
better ux for buldak
This commit is contained in:
parent
d10c731354
commit
a51a4b7d8c
6 changed files with 54 additions and 35 deletions
|
@ -571,6 +571,7 @@ binds {
|
|||
|
||||
// wayland support
|
||||
spawn-at-startup "xwayland-satellite"
|
||||
spawn-at-startup "poweralertd"
|
||||
spawn-at-startup "swww-daemon"
|
||||
spawn-at-startup "~/config/niri/start-bg.sh"
|
||||
|
||||
|
@ -581,7 +582,7 @@ environment {
|
|||
// apps to launch at startup
|
||||
spawn-at-startup "discord"
|
||||
spawn-at-startup "footclient" "nvim" "~/Documents/Notes"
|
||||
spawn-at-startup "cider"
|
||||
spawn-at-startup "cider-2"
|
||||
|
||||
clipboard {
|
||||
disable-primary
|
||||
|
|
|
@ -23,8 +23,7 @@
|
|||
"scroll-step": 0.2
|
||||
},
|
||||
"privacy": {
|
||||
"icon-spacing": 4,
|
||||
"icon-size": 18,
|
||||
"icon-spacing": 4, "icon-size": 18,
|
||||
"transition-duration": 250,
|
||||
"modules": [
|
||||
{
|
||||
|
@ -43,7 +42,7 @@
|
|||
"format": "{}% "
|
||||
},
|
||||
"network": {
|
||||
"interface": "wlp3s0",
|
||||
"interface": "wlo1",
|
||||
"format": "{ifname}",
|
||||
"format-wifi": " ",
|
||||
"format-ethernet": "",
|
||||
|
@ -77,7 +76,7 @@
|
|||
"exec-if": "which swaync-client",
|
||||
"exec": "swaync-client -swb",
|
||||
"on-click": "swaync-client -t -sw",
|
||||
"on-click-right": "swaync-client -d -sw",
|
||||
|
||||
"escape": true
|
||||
},
|
||||
"tray": {
|
||||
|
@ -89,7 +88,7 @@
|
|||
"warning": 20,
|
||||
"critical": 10
|
||||
},
|
||||
"format": "{capacity}% {icon}"
|
||||
"format-icons": ["", "", "", "", ""],
|
||||
"format": "{capacity}% {icon}",
|
||||
"format-icons": ["", "", "", "", ""]
|
||||
}
|
||||
}
|
||||
|
|
|
@ -56,8 +56,8 @@
|
|||
|
||||
#workspaces button {
|
||||
border-radius: 0;
|
||||
padding-left: 3px;
|
||||
padding-right: 3px;
|
||||
padding-left: 8px;
|
||||
padding-right: 8px;
|
||||
}
|
||||
|
||||
#bluetooth {
|
||||
|
@ -109,6 +109,11 @@
|
|||
margin-right: 16px;
|
||||
}
|
||||
|
||||
#battery {
|
||||
border-radius: 12px;
|
||||
margin-right: 16px;
|
||||
}
|
||||
|
||||
#window {
|
||||
margin-left: 16px;
|
||||
background-color: @surface0;
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
{
|
||||
inputs,
|
||||
config,
|
||||
pkgs,
|
||||
...
|
||||
|
@ -23,6 +24,7 @@
|
|||
home.packages =
|
||||
with pkgs;
|
||||
[
|
||||
forgejo-cli
|
||||
yt-dlp
|
||||
nerd-fonts.code-new-roman
|
||||
ffmpegthumbnailer
|
||||
|
@ -88,6 +90,8 @@
|
|||
nvimpager
|
||||
mpc
|
||||
fastfetch
|
||||
matugen
|
||||
|
||||
# # You can also create simple shell scripts directly inside your
|
||||
# # configuration. For example, this adds a command 'my-hello' to your
|
||||
# # environment:
|
||||
|
@ -114,31 +118,31 @@
|
|||
".config/mako".source = dotfiles/mako;
|
||||
};
|
||||
|
||||
programs.matugen = {
|
||||
enable = true;
|
||||
variant = "dark";
|
||||
|
||||
config = {
|
||||
wallpaper = {
|
||||
command = "swww";
|
||||
arguments = [
|
||||
"img"
|
||||
"--transition-type"
|
||||
"center"
|
||||
];
|
||||
set = true;
|
||||
};
|
||||
};
|
||||
|
||||
templates = {
|
||||
waybar = {
|
||||
input_path = "./templates/colors.css";
|
||||
output_path = "~/.config/waybar/colors.css";
|
||||
post_hook = "pkill -SIGUSR2 waybar";
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
# programs.matugen = {
|
||||
# enable = true;
|
||||
# variant = "dark";
|
||||
#
|
||||
# config = {
|
||||
# wallpaper = {
|
||||
# command = "swww";
|
||||
# arguments = [
|
||||
# "img"
|
||||
# "--transition-type"
|
||||
# "center"
|
||||
# ];
|
||||
# set = true;
|
||||
# };
|
||||
# };
|
||||
#
|
||||
# templates = {
|
||||
# waybar = {
|
||||
# input_path = "./templates/colors.css";
|
||||
# output_path = "~/.config/waybar/colors.css";
|
||||
# post_hook = "pkill -SIGUSR2 waybar";
|
||||
# };
|
||||
# };
|
||||
# };
|
||||
#
|
||||
programs.direnv = {
|
||||
enable = true;
|
||||
enableBashIntegration = true; # see note on other shells below
|
||||
|
@ -332,6 +336,7 @@
|
|||
gpsh = "git push";
|
||||
flake = "nix flake";
|
||||
develop = "nix develop";
|
||||
fj = "fj --host git.rougebordeaux.xyz";
|
||||
};
|
||||
|
||||
history.size = 10000;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue