new emojis :D
This commit is contained in:
@@ -13,9 +13,9 @@ Item {
|
|||||||
if (input.text.length === 0 || input.text === ":") {
|
if (input.text.length === 0 || input.text === ":") {
|
||||||
return []
|
return []
|
||||||
}
|
}
|
||||||
const searchEmojis = (input.text[0] === ':')
|
const searchEmojis = (input.text[0] === ':' || input.text[0] === ';')
|
||||||
const items = searchEmojis
|
const items = searchEmojis
|
||||||
? Emojis.emojis.emojis
|
? Emojis.emojis
|
||||||
: Array.from(DesktopEntries.applications.values)
|
: Array.from(DesktopEntries.applications.values)
|
||||||
for (let item of items) {
|
for (let item of items) {
|
||||||
item.searchPos = item.name.toLowerCase().search(input.text.slice(searchEmojis))
|
item.searchPos = item.name.toLowerCase().search(input.text.slice(searchEmojis))
|
||||||
|
|||||||
4
Wall.qml
4
Wall.qml
@@ -19,6 +19,9 @@ Variants {
|
|||||||
property var modelData
|
property var modelData
|
||||||
screen: modelData
|
screen: modelData
|
||||||
color: "#111"
|
color: "#111"
|
||||||
|
ClippingRectangle {
|
||||||
|
anchors.fill: parent
|
||||||
|
radius: 13
|
||||||
Image {
|
Image {
|
||||||
source: Quickshell.shellPath("wallpaper")
|
source: Quickshell.shellPath("wallpaper")
|
||||||
anchors.fill: parent
|
anchors.fill: parent
|
||||||
@@ -26,3 +29,4 @@ Variants {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|||||||
46749
emojis.mjs
46749
emojis.mjs
File diff suppressed because it is too large
Load Diff
@@ -9,7 +9,7 @@ ShellRoot {
|
|||||||
id: notifServer
|
id: notifServer
|
||||||
onNotification: (notif) => notif.tracked = true
|
onNotification: (notif) => notif.tracked = true
|
||||||
}
|
}
|
||||||
// Shell.Wall {}
|
Shell.Wall {}
|
||||||
Shell.TopBar {id: bar}
|
Shell.TopBar {id: bar}
|
||||||
Shell.Boateye {}
|
Shell.Boateye {}
|
||||||
Shell.Lock {
|
Shell.Lock {
|
||||||
|
|||||||
Reference in New Issue
Block a user