This commit is contained in:
Miguel Palhas
2025-06-15 09:45:47 +01:00
parent bc8a219f16
commit 1aea9ec423
4 changed files with 32 additions and 17 deletions
+7 -2
View File
@@ -1,7 +1,12 @@
{ config, pkgs, ... }:
{
config,
pkgs,
inputs,
...
}:
{
home.packages = with pkgs; [
quickshell
inputs.quickshell.packages.x86_64-linux.quickshell
];
xdg.configFile."quickshell".source = ./quickshell;
@@ -1,17 +1,6 @@
import Quickshell
import QtQuick
PanelWindow {
anchors {
top: true
left: true
right: true
}
implicitHeight: 30
Text {
anchors.centerIn: parent
text: "hello world"
}
Scope {
Bar {}
}