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