diff --git a/niri/config.kdl b/niri/config.kdl index 7e0899e..68ad363 100644 --- a/niri/config.kdl +++ b/niri/config.kdl @@ -136,6 +136,12 @@ output "ViewSonic Corporation VX2758-Series VVF190100000" { focus-at-startup } +output "AU Optronics 0x583D Unknown" { + mode "1920x1080" + scale 1.25 + transform "normal" +} + // Settings that influence how windows are positioned and sized. // Find more information on the wiki: // https://github.com/YaLTeR/niri/wiki/Configuration:-Layout @@ -169,7 +175,7 @@ layout { // preset-window-heights { } // You can change the default width of the new windows. - default-column-width { proportion 0.5; } + default-column-width { proportion 0.66667; } // If you leave the brackets empty, the windows themselves will decide their initial width. // default-column-width {} @@ -295,8 +301,6 @@ layout { spawn-at-startup "waybar" spawn-at-startup "/home/danmac/.config/niri/sway_startup" "/home/danmac/Pictures/Nextcloud/IMG_8826-Enhanced-NR.jpg" spawn-at-startup "xwayland-satellite" -spawn-at-startup "swayidle" "-w" "timeout" "601" "niri msg action power-off-monitors" "timeout" "600" "swaylock -f -i /usr/share/backgrounds/gnome/swoosh-l.jxl" "before-sleep" "swaylock -f -i /usr/share/backgrounds/gnome/swoosh-l.jxl" -spawn-at-startup "xrdb" "/home/danmac/.Xresources" spawn-at-startup "flatpak" "run" "com.nextcloud.desktopclient.nextcloud" spawn-at-startup "cosmic-app-library" @@ -340,7 +344,7 @@ animations { // since this is the default config, and we want no false positives. // You can get away with just app-id="wezterm" if you want. // match app-id=r#"^org\.wezfurlong\.wezterm$"# - // default-column-width {} + // default-column-width { } // } // Open the Firefox picture-in-picture player as floating by default. diff --git a/waybar/config.jsonc b/waybar/config.jsonc index 53cb1ed..4ef7de1 100644 --- a/waybar/config.jsonc +++ b/waybar/config.jsonc @@ -117,8 +117,8 @@ "critical": 15 }, "format": "{capacity}% {icon}", - "format-charging": "󱐋", - "format-plugged": "", + "format-charging": "{capacity}% 󱐋", + "format-plugged": "{capacity}% ", "format-alt": "{capacity}% {time}", "format-icons": ["", "", "", "", ""] }, diff --git a/wezterm/wezterm.lua b/wezterm/wezterm.lua index f4e8c57..430a6f2 100644 --- a/wezterm/wezterm.lua +++ b/wezterm/wezterm.lua @@ -1,17 +1,17 @@ -local wezterm = require 'wezterm' +local wezterm = require("wezterm") local c = {} -- Display Configuration -c.font = wezterm.font 'NotoMono Nerd Font' -c.color_scheme = 'Catppuccin Macchiato' +c.font = wezterm.font("NotoMono Nerd Font") +c.color_scheme = "Catppuccin Macchiato" c.window_background_opacity = 0.7 -c.window_decorations = 'RESIZE' +c.window_decorations = "NONE" c.visual_bell = { - fade_in_function = 'EaseIn', - fade_in_duration_ms = 150, - fade_out_function = 'EaseOut', - fade_out_duration_ms = 150, + fade_in_function = "EaseIn", + fade_in_duration_ms = 150, + fade_out_function = "EaseOut", + fade_out_duration_ms = 150, } -- Tab Configuration @@ -23,6 +23,6 @@ c.switch_to_last_active_tab_when_closing_tab = true -- Stop Confirming shit please -c.window_close_confirmation = 'NeverPrompt' +c.window_close_confirmation = "NeverPrompt" return c