Jibril, Swap hypr for niri, disable some apps

Disables rofi, musescore, and timer notifications
This commit is contained in:
Julia Lange 2025-06-11 13:48:57 -07:00
parent 27f8479346
commit 5862d41d9e
Signed by: Julia
SSH key fingerprint: SHA256:5DJcfxa5/fKCYn57dcabJa2vN2e6eT0pBerYi5SUbto

View file

@ -1,55 +1,12 @@
{ config, pkgs, ... }:
{ config, ... }:
{
hypr.enable = true;
hypr.monitor = {
details = [
"eDP-2,2256x1504@60,0x0,1"
];
};
hypr.workspace = {
workspaces = {
"eDP-1" = [
"home"
"web"
"chat"
"med"
];
};
scratchpad.enable = true;
defaults = {
"name:web" = [ "class:(librewolf)" ];
"name:med" = [ "class:(librewolf),title:Picture-in-Picture" ];
"name:chat" = [ "class:(Beeper)" ];
};
};
hypr.windows.opaque = [
"initialTitle:^(Discord Popout)$"
"class:^(firefox)$"
"class:^(Gimp)$"
"class:^(feh)$"
"class:^(mpv)$"
];
hypr.background = {
niri = {
enable = true;
path = "${config.home.homeDirectory}/med/pix/bg.png";
mouse.accel = -0.53;
outputs."eDP-2".mode = { width = 2256; height = 1504; refresh = 60.000; };
};
hypr.cursor = {
enable = true;
theme = "miku";
};
hypr = {
screenshot.enable = true;
mouse.sensitivity = -0.52;
polkit.enable = true;
master.mfact = 0.53;
xwayland.videobridge.enable = true;
};
# ags.enable = true;
rofi.enable = true;
timer.enableHourly = true;
timer.enableQuarterly = true;
colors.enable = true;
manpages.enable = true;
trash.enable = true;
@ -104,8 +61,4 @@
beeper.enable = true;
discord.enable = true;
extraPkgs = with pkgs; [
# Applications
musescore
];
}