Tweak hyprland terminal setup
Remove status line from wezterm, not needed in hyprland
This commit is contained in:
parent
6212336a85
commit
d2135c314e
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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",
|
||||
|
|
Loading…
Reference in a new issue