QT Theming

This commit is contained in:
2025-12-31 21:08:19 +01:00
parent 8d448cf80d
commit e826e366d5
9 changed files with 7537 additions and 6 deletions

View File

@@ -3,6 +3,11 @@
// Check the wiki for a full description of the configuration:
// https://yalter.github.io/niri/Configuration:-Introduction
environment {
QT_QPA_PLATFORMTHEME "qt6ct"
// QT_STYLE_OVERRIDE "kvantum"
}
// Input device configuration.
// Find the full list of options on the wiki:
// https://yalter.github.io/niri/Configuration:-Input
@@ -143,7 +148,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 {}
@@ -161,7 +166,7 @@ layout {
// You can change how the focus ring looks.
focus-ring {
// Uncomment this line to disable the focus ring.
// off
off
// How many logical pixels the ring extends out from the windows.
width 4
@@ -200,7 +205,7 @@ layout {
border {
// The settings are the same as for the focus ring.
// If you enable the border, you probably want to disable the focus ring.
off
// off
width 4
active-color "#ffc87f"
@@ -278,6 +283,7 @@ spawn-at-startup "waybar"
spawn-at-startup "swaync"
spawn-at-startup "swww-daemon"
// spawn-at-startup "kwalletd6"
spawn-sh-at-startup "gnome-keyring-daemon -r -d"
spawn-at-startup "vesktop"
// To run a shell command (with variables, pipes, etc.), use spawn-sh-at-startup:
@@ -394,7 +400,7 @@ binds {
Mod+Return hotkey-overlay-title="Open a Terminal: GhosTTY" { spawn "ghostty"; }
Mod+Space hotkey-overlay-title="Run an Application: wofi" { spawn-sh "wofi --show drun"; }
Super+Alt+L hotkey-overlay-title="Lock the Screen: swaylock" { spawn "swaylock"; }
Mod+E hotkey-overlay-title="Open file manager: Dolphin" { spawn "dolphin"; }
// Use spawn-sh to run a shell command. Do this if you need pipes, multiple commands, etc.
// Note: the entire command goes as a single argument. It's passed verbatim to `sh -c`.
// For example, this is a standard bind to toggle the screen reader (orca).