- spawn floating terminal with super+shift+enter - indicate that the system prefers dark themes via gsettings and the QT6 envvar - set no_focus_fallback to false so that we always try to fallback to a focus-able window so we don't occasionally have to click on windows manually when shifting workspaces or other weird situations
This commit is contained in:
parent
5a123f274c
commit
81344afdba
1 changed files with 9 additions and 2 deletions
|
@ -11,6 +11,7 @@ in {
|
||||||
# TODO: Hyprland seems to sometimes use a ton of CPU?
|
# TODO: Hyprland seems to sometimes use a ton of CPU?
|
||||||
|
|
||||||
home.packages = with pkgs; [
|
home.packages = with pkgs; [
|
||||||
|
glib
|
||||||
swayosd
|
swayosd
|
||||||
];
|
];
|
||||||
|
|
||||||
|
@ -47,8 +48,14 @@ in {
|
||||||
"hypridle"
|
"hypridle"
|
||||||
];
|
];
|
||||||
|
|
||||||
|
exec = [
|
||||||
|
''gsettings set org.gnome.desktop.interface gtk-theme "Adwaita-dark"''
|
||||||
|
''gsettings set org.gnome.desktop.interface color-scheme "prefer-dark"''
|
||||||
|
];
|
||||||
|
|
||||||
env = [
|
env = [
|
||||||
"XCURSOR_SIZE,24"
|
"XCURSOR_SIZE,24"
|
||||||
|
"QT_QPA_PLATFORMTHEME,qt6ct"
|
||||||
];
|
];
|
||||||
|
|
||||||
input = {
|
input = {
|
||||||
|
@ -96,7 +103,7 @@ in {
|
||||||
gaps_out = 6;
|
gaps_out = 6;
|
||||||
border_size = 2;
|
border_size = 2;
|
||||||
resize_on_border = true;
|
resize_on_border = true;
|
||||||
no_focus_fallback = true;
|
no_focus_fallback = false;
|
||||||
|
|
||||||
layout = "dwindle";
|
layout = "dwindle";
|
||||||
};
|
};
|
||||||
|
@ -129,7 +136,7 @@ in {
|
||||||
"$mod SHIFT, return, exec, wezterm"
|
"$mod SHIFT, return, exec, wezterm"
|
||||||
*/
|
*/
|
||||||
"$mod, return, exec, wezterm"
|
"$mod, return, exec, wezterm"
|
||||||
"$mod SHIFT, return, exec, kitty"
|
"$mod SHIFT, return, exec, [float] wezterm start --always-new-process"
|
||||||
"$mod, U, exec, firefox"
|
"$mod, U, exec, firefox"
|
||||||
"$mod, space, exec, tofi-run | xargs hyprctl dispatch exec --"
|
"$mod, space, exec, tofi-run | xargs hyprctl dispatch exec --"
|
||||||
"$mod, C, killactive,"
|
"$mod, C, killactive,"
|
||||||
|
|
Loading…
Reference in a new issue