diff --git a/home-manager/modules/alacritty.nix b/home-manager/modules/alacritty.nix
index 4b986c6..07e58fb 100644
--- a/home-manager/modules/alacritty.nix
+++ b/home-manager/modules/alacritty.nix
@@ -2,7 +2,10 @@
programs.alacritty = {
enable = true;
settings = {
- window.opacity = 0.95;
+ window = {
+ opacity = 0.5;
+ blur = true;
+ };
font = {
size = 13.0;
diff --git a/home-manager/modules/wms/hyprland.nix b/home-manager/modules/wms/hyprland.nix
index 206db7f..8fa767c 100644
--- a/home-manager/modules/wms/hyprland.nix
+++ b/home-manager/modules/wms/hyprland.nix
@@ -87,7 +87,8 @@
dwindle = {
pseudotile = true; # master switch for pseudotiling. Enabling is bound to mainMod + P in the keybinds section below
- preserve_split = true; # you probably want this
+ smart_split = true;
+ no_gaps_when_only = 1;
};
master = {
@@ -97,7 +98,7 @@
gestures = {
workspace_swipe = true;
workspace_swipe_fingers = 3;
- workspace_swipe_invert = false;
+ workspace_swipe_invert = true;
workspace_swipe_distance = 200;
workspace_swipe_forever = true;
};
@@ -107,11 +108,12 @@
animate_mouse_windowdragging = true;
enable_swallow = true;
render_ahead_of_time = false;
- disable_hyprland_logo = true;
+ disable_hyprland_logo = false;
};
windowrule = [
"float, ^(imv)$"
+ "float, ^(feh)$"
"float, ^(mpv)$"
];
diff --git a/home-manager/modules/wms/waybar.nix b/home-manager/modules/wms/waybar.nix
index ab8afde..7baec22 100644
--- a/home-manager/modules/wms/waybar.nix
+++ b/home-manager/modules/wms/waybar.nix
@@ -15,8 +15,8 @@
margin = "9 13 -10 18";
modules-left = ["hyprland/workspaces" "hyprland/language" "keyboard-state" "hyprland/submap"];
- modules-center = ["clock" "custom/weather"];
- modules-right = ["pulseaudio" "backlight" "network" "battery" "tray"];
+ modules-center = ["mpris"];
+ modules-right = ["backlight" "network" "battery" "pulseaudio" "clock" "tray"];
"hyprland/workspaces" = {
disable-scroll = true;
@@ -42,7 +42,7 @@
"clock" = {
# timezone = "America/New_York";
tooltip-format = "{:%Y %B}\n{calendar}";
- format = "{:%a; %d %b, %R}";
+ format = "{:%R}";
};
"custom/weather" = {
@@ -241,9 +241,10 @@ window#waybar.hidden {
}
#clock {
+ margin-right: 8px;
padding-left: 16px;
padding-right: 16px;
- border-radius: 10px 0px 0px 10px;
+ border-radius: 10px;
transition: none;
color: #ffffff;
background: #383c4a;