Finalised tweaks to waybar niri and wezterm
This commit is contained in:
@@ -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.
|
||||
|
||||
@@ -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": ["", "", "", "", ""]
|
||||
},
|
||||
|
||||
@@ -1,16 +1,16 @@
|
||||
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_function = "EaseIn",
|
||||
fade_in_duration_ms = 150,
|
||||
fade_out_function = 'EaseOut',
|
||||
fade_out_function = "EaseOut",
|
||||
fade_out_duration_ms = 150,
|
||||
}
|
||||
|
||||
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user