diff --git a/nixos/home/desktop/wayland/config/hypr/hyprland.conf b/nixos/home/desktop/wayland/config/hypr/hyprland.conf index a26addf0..43dfa82e 100644 --- a/nixos/home/desktop/wayland/config/hypr/hyprland.conf +++ b/nixos/home/desktop/wayland/config/hypr/hyprland.conf @@ -101,10 +101,6 @@ windowrule = float, ^(marktext)$ windowrule = center, ^(marktext)$ windowrule = float, ^(Nxplayer.bin)$ windowrule = center, ^(Nxplayer.bin)$ -windowrule = float, ^(foot)$ -windowrule = center, ^(foot)$ -windowrule = dimaround, ^(foot)$ -windowrule = opacity 0.8 override 0.5 override, ^(foot)$ windowrule = float, ^(otpclient)$ windowrule = move 2% 6%, ^(otpclient)$ @@ -116,6 +112,7 @@ windowrule = workspace 4, ^(thunderbird)$ windowrule = workspace 4, ^(Mailspring)$ windowrule = workspace 5, ^(Element)$ windowrule = workspace 5, ^(Signal)$ +windowrule = workspace 5, ^(discord)$ windowrule = workspace 6, ^(Steam)$ windowrule = workspace 7, ^(Bitwarden)$ windowrule = workspace 8, ^(Nxplayer.bin)$ @@ -123,11 +120,9 @@ windowrule = workspace 8, ^(Nxplayer.bin)$ # See https://wiki.hyprland.org/Configuring/Keywords/ for more $mainMod = SUPER $term = wezterm -$term2 = foot # Example binds, see https://wiki.hyprland.org/Configuring/Binds/ for more bind = $mainMod, Return, exec, $term -bind = $mainMod SHIFT, Return, exec, $term2 bind = $mainMod, Q, killactive, bind = $mainMod, E, exec, neovide --multigrid --maximized # bind = $mainMod, E, exec, ~/.dotfiles/scripts/power-profiles diff --git a/nixos/home/gui/terminal/config/wezterm/status.lua b/nixos/home/gui/terminal/config/wezterm/status.lua index 26ccd427..c97662c9 100644 --- a/nixos/home/gui/terminal/config/wezterm/status.lua +++ b/nixos/home/gui/terminal/config/wezterm/status.lua @@ -23,7 +23,7 @@ M.setup = function(scheme) -- table.insert(cells, time) -- Get current hostname to track which device I'm on - -- table.insert(cells, wezterm.hostname()) + table.insert(cells, wezterm.hostname()) -- An entry for each battery (typically 0 or 1 battery) for _, b in ipairs(wezterm.battery_info()) do diff --git a/nixos/home/gui/terminal/config/wezterm/wezterm.lua b/nixos/home/gui/terminal/config/wezterm/wezterm.lua index 0ea95b26..fd6df17d 100644 --- a/nixos/home/gui/terminal/config/wezterm/wezterm.lua +++ b/nixos/home/gui/terminal/config/wezterm/wezterm.lua @@ -3,7 +3,7 @@ local tab_bar_style = require "tab_bar_style" local scheme_name = "Catppuccin Macchiato" local scheme = wezterm.color.get_builtin_schemes()[scheme_name] tab_bar_style.setup(scheme) -require("status").setup(scheme) +-- require("status").setup(scheme) require "navigator" return { @@ -14,7 +14,7 @@ return { use_fancy_tab_bar = false, tab_max_width = 79, tab_bar_style = { new_tab = tab_bar_style.new_tab(scheme), new_tab_hover = tab_bar_style.new_tab_hover(scheme) }, - hide_tab_bar_if_only_one_tab = false, + hide_tab_bar_if_only_one_tab = true, disable_default_key_bindings = true, keys = require "keys", key_tables = require "key_tables",