diff --git a/graphical/desktop/niri-config.kdl b/graphical/desktop/niri-config.kdl index c4bc981..b284aea 100755 --- a/graphical/desktop/niri-config.kdl +++ b/graphical/desktop/niri-config.kdl @@ -115,6 +115,7 @@ binds { Mod+Shift+S { screenshot; } Mod+Space { toggle-window-floating; } Mod+Shift+Space { switch-focus-between-floating-and-tiling; } + Mod+Ctrl+Space { fullscreen-window; } Mod+C { center-window; } XF86AudioLowerVolume { spawn "volumectl" "-u" "down"; } XF86AudioMute { spawn "volumectl" "toggle-mute"; } diff --git a/graphical/desktop/quickshell/logout/Logout.qml b/graphical/desktop/quickshell/logout/Logout.qml index 2f14c19..0e7f04b 100644 --- a/graphical/desktop/quickshell/logout/Logout.qml +++ b/graphical/desktop/quickshell/logout/Logout.qml @@ -8,8 +8,8 @@ import Quickshell.Wayland Singleton { id: topLevel - required property real width - required property real height + // required property real width + // required property real height property real openTime: 600 default property list buttons @@ -74,8 +74,8 @@ Singleton { } color: "transparent" - implicitWidth: topLevel.width - implicitHeight: topLevel.height + implicitWidth: logoutBase.width + implicitHeight: logoutBase.height layer: WlrLayer.Overlay namespace: "shell:logout" keyboardFocus: WlrKeyboardFocus.Exclusive @@ -121,8 +121,8 @@ Singleton { anchors { fill: parent margins: parent.width / 2.5 - topMargin: (parent.height / 8) + topLevel.height * (1.0 - logoutData.openness) - bottomMargin: (parent.height / 8) - topLevel.height * (1.0 - logoutData.openness) + topMargin: (parent.height / 8) + logoutBase.height * (1.0 - logoutData.openness) + bottomMargin: (parent.height / 8) - logoutBase.height * (1.0 - logoutData.openness) } topLeftRadius: 0 bottomRightRadius: 0 diff --git a/graphical/desktop/quickshell/shell.qml b/graphical/desktop/quickshell/shell.qml index 11a36b1..e1e1a94 100644 --- a/graphical/desktop/quickshell/shell.qml +++ b/graphical/desktop/quickshell/shell.qml @@ -47,7 +47,7 @@ ShellRoot { // rhs main Variants { - model: Quickshell.screens.filter(screen => screen.name == "DP-2") + model: Quickshell.screens.filter(screen => screen.name != "DP-1") delegate: PanelWindow { id: bink property var modelData @@ -89,7 +89,7 @@ ShellRoot { // centre main Variants { - model: Quickshell.screens.filter(screen => screen.name == "DP-2") + model: Quickshell.screens.filter(screen => screen.name != "DP-1") delegate: PanelWindow { id: windowTitle property var modelData @@ -245,8 +245,8 @@ ShellRoot { } Logout.Logout { - width: 2560 - height: 1440 + // width: 2560 + // height: 1440 Logout.LogoutButton { text: "Logout" keybind: Qt.Key_E diff --git a/hosts/adrift/media.nix b/hosts/adrift/media.nix index a0315db..2696a4b 100644 --- a/hosts/adrift/media.nix +++ b/hosts/adrift/media.nix @@ -1 +1,8 @@ -{ pkgs, scope, ... }: scope "apps.streaming" <| pkgs.stremio +{ pkgs, ... }: +{ + # apps.streaming = pkgs.stremio; + # nixpkgs.config.permittedInsecurePackages = [ + # "qtwebengine-5.15.19" + # ]; + user.packages = [ pkgs.brightnessctl ]; +}