Compare commits
3 Commits
04627242a8
...
97d50851f6
| Author | SHA1 | Date | |
|---|---|---|---|
| 97d50851f6 | |||
| 870c8d2df3 | |||
| 80e38516a6 |
@@ -4,8 +4,6 @@
|
||||
];
|
||||
wayland.windowManager.hyprland.settings = {
|
||||
env = [
|
||||
"HYPRCURSOR_THEME,rose-pine-hyprcursor"
|
||||
"HYPRCURSOR_SIZE,24"
|
||||
"GUM_CONFIRM_PROMPT_FOREGROUND,6"
|
||||
"GUM_CONFIRM_SELECTED_FOREGROUND,0"
|
||||
"GUM_CONFIRM_SELECTED_BACKGROUND,2"
|
||||
|
||||
@@ -47,6 +47,7 @@
|
||||
bar_button_padding = 4;
|
||||
bar_padding = 8;
|
||||
bar_precedence_over_border = true;
|
||||
on_double_click = "hyprctl dispatch fullscreen 1";
|
||||
hyprbars-button = [
|
||||
"$error, 10, , hyprctl dispatch killactive"
|
||||
"$tertiary, 10, , hyprctl dispatch fullscreen 1"
|
||||
|
||||
+13
-3
@@ -33,7 +33,7 @@
|
||||
|
||||
replace() {
|
||||
${pkgs.hyprland}/bin/hyprctl dispatch closewindow "class:''${active_popup}"
|
||||
sleep 1
|
||||
sleep 0.3
|
||||
launch
|
||||
}
|
||||
|
||||
@@ -61,6 +61,8 @@ in {
|
||||
windowrulev2 = [
|
||||
# --- POPUP RULES (Wifi, BT, Audio) ---
|
||||
"float, class:^(org\.hakase\.popup\..*)$"
|
||||
"size 900 600, class:^(org\.hakase\.popup\..*)$"
|
||||
"center, class:^(org\.hakase\.popup\..*)$"
|
||||
"animation slide right, class:^(org\.hakase\.popup\..*)$"
|
||||
"dimaround, class:^(org\.hakase\.popup\..*)$"
|
||||
];
|
||||
@@ -134,12 +136,20 @@ in {
|
||||
show-special = true;
|
||||
special-visible-only = true;
|
||||
all-outputs = true;
|
||||
ignore-workspaces = ["1" "2" "3" "4" "5" "6" "7" "8" "9" "10"];
|
||||
ignore-workspaces = ["^[0-9]+$"];
|
||||
format = "{icon}";
|
||||
format-icons = {
|
||||
"special:youtube" = "";
|
||||
"special:music" = "";
|
||||
"special:steam" = "";
|
||||
"special:custom" = "";
|
||||
"special:preload" = "";
|
||||
"youtube" = "";
|
||||
"music" = "";
|
||||
"steam" = "";
|
||||
"custom" = "";
|
||||
"preload" = "";
|
||||
"default" = "";
|
||||
};
|
||||
};
|
||||
|
||||
@@ -153,7 +163,7 @@ in {
|
||||
"cpu" = {
|
||||
interval = 5;
|
||||
format = "";
|
||||
on-click = "hakase-focus-wrapper btop";
|
||||
on-click = "hakase-popup-launch btop 800 600";
|
||||
on-click-right = "xdg-terminal-exec";
|
||||
};
|
||||
|
||||
|
||||
@@ -1,5 +1,4 @@
|
||||
{ pkgs, ... }:
|
||||
{
|
||||
{pkgs, ...}: {
|
||||
imports = [
|
||||
../../apps/matugen
|
||||
];
|
||||
@@ -10,4 +9,10 @@
|
||||
name = "rose-pine-hyprcursor";
|
||||
size = 24;
|
||||
};
|
||||
wayland.windowManager.hyprland.settings = {
|
||||
env = [
|
||||
"HYPRCURSOR_THEME,rose-pine-hyprcursor"
|
||||
"HYPRCURSOR_SIZE,24"
|
||||
];
|
||||
};
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user