How to create a custom app shortcut on desktop with an adjustable icon position? #604
Answered
by
DustinBrett
reyrockstreet
asked this question in
Q&A
-
|
Hi everyone, Is there a way to achieve this? Thank you in advance for your help! |
Beta Was this translation helpful? Give feedback.
Answered by
DustinBrett
Aug 29, 2025
Replies: 1 comment 4 replies
-
|
You can find examples of shortcuts in Desktop. As for the position, this can be set and is controlled in session.json. An example would be: Example.url session.json {
"iconPositions": {
"/Users/Public/Desktop/Example.url": {
"gridColumnStart": 5,
"gridRowStart": 2
}
}
} |
Beta Was this translation helpful? Give feedback.
4 replies
Answer selected by
reyrockstreet
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
You can find examples of shortcuts in Desktop.
As for the position, this can be set and is controlled in session.json.
An example would be:
Example.url
session.json
{ "iconPositions": { "/Users/Public/Desktop/Example.url": { "gridColumnStart": 5, "gridRowStart": 2 } } }