quickshell restruct and work
This commit is contained in:
8
quickshell/bar/widgets/common/Dot.qml
Normal file
8
quickshell/bar/widgets/common/Dot.qml
Normal file
@@ -0,0 +1,8 @@
|
||||
import Quickshell
|
||||
import QtQuick
|
||||
|
||||
Text {
|
||||
text: "•"
|
||||
color: "white"
|
||||
font.pointSize: 12.5
|
||||
}
|
||||
9
quickshell/bar/widgets/common/Meow.qml
Normal file
9
quickshell/bar/widgets/common/Meow.qml
Normal file
@@ -0,0 +1,9 @@
|
||||
import Quickshell
|
||||
import QtQuick
|
||||
|
||||
Item {
|
||||
function iconFromDesktopfile(location): String { // testing // serves no purpose atm
|
||||
return "/usr/share/pixmaps/spotify-client.png"
|
||||
return "/usr/share/pixmaps/" + DesktopEntries.byId(location).icon + ".png"
|
||||
}
|
||||
}
|
||||
13
quickshell/bar/widgets/common/VerticalSeprator.qml
Normal file
13
quickshell/bar/widgets/common/VerticalSeprator.qml
Normal file
@@ -0,0 +1,13 @@
|
||||
import Quickshell
|
||||
import QtQml
|
||||
import QtQuick
|
||||
|
||||
Rectangle {
|
||||
id: a
|
||||
anchors {
|
||||
top: parent.top
|
||||
bottom: parent.bottom
|
||||
}
|
||||
width: 2
|
||||
color: "#8d8d8d"
|
||||
}
|
||||
Reference in New Issue
Block a user