ags steal

This commit is contained in:
2023-10-29 15:05:17 +01:00
parent e7416f5bdf
commit 912479c43d
101 changed files with 10639 additions and 1 deletions

View File

@@ -18,6 +18,17 @@
"swww init"
"swww img ~/Pictures/Wallpapers/wallpaper.jpg --transition-type center"
];
general = {
gaps_in = 4;
gaps_out = 5;
border_size = 1;
"col.active_border" = "rgba(0DB7D4FF)";
"col.inactive_border" = "rgba(31313600)";
layout = "dwindle";
};
dwindle.preserve_split = true;
input = {
accel_profile = "flat";
};
@@ -28,14 +39,22 @@
];
monitor = import ./monitors.nix;
windowrule = [
"pseudo,^(alacritty)$"
"pseudo,^(Alacritty)$"
];
layerrule = import ./layerrules.nix;
decoration = import ./decoration.nix;
};
};
services.dunst = import ./dunst.nix;
programs.ags = {
enable = true;
configDir = ./ags;
};
programs.fuzzel = import ./fuzzel.nix;
programs.alacritty.enable = true;
programs.foot = import ./foot.nix;
programs.waybar = import ./waybar.nix;
programs.wofi = import ./wofi.nix;
programs.swaylock = import ./swaylock.nix;
@@ -43,8 +62,14 @@
home.packages = with pkgs; [
xwaylandvideobridge
hyprpicker
wl-clipboard
wttrbar
swww
# ags
glib
brightnessctl
ydotool
sassc
];
gtk = {
@@ -73,5 +98,10 @@
|| echo "not on tty1, letting in"
'';
};
home.file.".config/hypr/shaders" = {
source = ./hypr/shaders;
recursive = true;
};
}