fullscreen key, shell fixes, temp remove stremio

This commit is contained in:
atagen 2025-09-23 17:52:40 +10:00
parent a001eda458
commit a0f1298174
4 changed files with 19 additions and 11 deletions

View file

@ -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"; }

View file

@ -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<LogoutButton> 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

View file

@ -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

View file

@ -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 ];
}