Compare commits

...

2 Commits

Author SHA1 Message Date
18edb31aa1 waybar 2025-06-21 10:23:29 +02:00
a20d463a17 zsh, waybar, dig 2025-06-21 10:20:30 +02:00
5 changed files with 17 additions and 23 deletions

View File

@ -48,6 +48,8 @@
packages = with pkgs; [];
};
users.defaultUserShell = pkgs.zsh;
services.xserver.xkb = {
layout = "fr";
variant = "";
@ -87,10 +89,14 @@
wl-clipboard
libnotify
hyprpaper
font-awesome
dig
];
programs.firefox.enable = true;
programs.zsh.enable = true;
programs.nh = {
enable = true;
clean.enable = true;

View File

@ -33,7 +33,7 @@ bind = ,XF86AudioLowerVolume, exec, virt-manager
bind = $mainMod SHIFT, B, exec, killall waybar && waybar &
# Hide waybar
bind = $mainMod, X, exec, killall waybar || waybar &
bind = $mainMod, X, exec, pkill waybar || waybar &
# Clipboard history
bind = $mainMod, V, exec, cliphist list | wofi -dmenu | cliphist decode | wl-copy

View File

@ -5,9 +5,6 @@
"output": "DP-1",
"modules-left": [
"custom/launcher",
"custom/right-arrow-dark",
"custom/right-arrow-light",
"hyprland/workspaces",
"custom/right-arrow-dark"
],
@ -23,9 +20,6 @@
"custom/right-arrow-dark"
],
"modules-right": [
"custom/left-arrow-dark",
"custom/updates",
"custom/left-arrow-light",
"custom/left-arrow-dark",
"cpu",
"custom/left-arrow-light",
@ -111,18 +105,8 @@
"tray": {
"icon-size": 20
},
"custom/launcher":{
"format": "  ",
"on-click": "wofi --show drun",
"on-click-right": "killall wofi"
},
"custom/power":{
"format": "  ",
"on-click": "wlogout"
},
"custom/updates":{
"format": " {} Update(s) ",
"exec": "checkupdates | wc -l",
"interval": 1800
}
}

View File

@ -18,15 +18,10 @@ window#waybar {
background: #1a1a1a;
}
#custom-updates {
color: #F3881F;
background: #1a1a1a;
}
#custom-power {
color: #ff8080;
background: #1a1a1a;
}
#custom-launcher,
#workspaces,
#clock.1,
#clock.2,
@ -74,7 +69,6 @@ window#waybar {
#memory,
#cpu,
#tray,
#custom-launcher,
#disk {
padding: 0 10px;
}

View File

@ -58,6 +58,16 @@
EDITOR = "vim";
};
programs.zsh = {
enable = true;
enableCompletion = true;
autosuggestion.enable = true;
syntaxHighlighting.enable = true;
history.size = 100000;
shellAliases = {
};
};
programs.neovim = {
enable = true;
viAlias = true;