proper hyprland tracing
This commit is contained in:
parent
7a8372ffb6
commit
856620a387
1 changed files with 9 additions and 4 deletions
|
@ -7,11 +7,16 @@ let
|
||||||
hyprland-plugins = inputs.hyprland-plugins.packages.${system};
|
hyprland-plugins = inputs.hyprland-plugins.packages.${system};
|
||||||
hy3 = inputs.hy3.packages.${system};
|
hy3 = inputs.hy3.packages.${system};
|
||||||
|
|
||||||
|
debug = true;
|
||||||
|
|
||||||
in
|
in
|
||||||
|
|
||||||
{
|
{
|
||||||
environment = {
|
environment = {
|
||||||
variables = {
|
variables = {
|
||||||
|
HYPRLAND_TRACE = if debug then "1" else "0";
|
||||||
|
AQ_TRACE = if debug then "1" else "0";
|
||||||
|
|
||||||
XDG_CURRENT_DESKTOP = "Hyprland";
|
XDG_CURRENT_DESKTOP = "Hyprland";
|
||||||
XDG_SESSION_TYPE = "wayland";
|
XDG_SESSION_TYPE = "wayland";
|
||||||
XDG_SESSION_DESKTOP = "Hyprland";
|
XDG_SESSION_DESKTOP = "Hyprland";
|
||||||
|
@ -43,7 +48,7 @@ in
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
|
|
||||||
programs.xwayland.enable = true;
|
#programs.xwayland.enable = true;
|
||||||
|
|
||||||
home-manager.users.${config.user} = {
|
home-manager.users.${config.user} = {
|
||||||
wayland.windowManager.hyprland = {
|
wayland.windowManager.hyprland = {
|
||||||
|
@ -64,9 +69,9 @@ in
|
||||||
settings = {
|
settings = {
|
||||||
|
|
||||||
# Debug
|
# Debug
|
||||||
debug.disable_logs = false;
|
debug.disable_logs = ! debug;
|
||||||
debug.disable_time = false;
|
debug.disable_time = ! debug;
|
||||||
debug.enable_stdout_logs = true;
|
debug.enable_stdout_logs = debug;
|
||||||
|
|
||||||
# Monitors
|
# Monitors
|
||||||
monitor = map (monitor:
|
monitor = map (monitor:
|
||||||
|
|
Loading…
Reference in a new issue