Last active
January 17, 2022 09:27
-
-
Save GaussianWonder/df6882935b04f5397134c90802d13aa4 to your computer and use it in GitHub Desktop.
OpenFolder and OpenFile(s) context menu options for kde's file manager DOLPHIN
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[Desktop Entry] | |
Type=Service | |
Icon=com.visualstudio.code | |
X-KDE-ServiceTypes=KonqPopupMenu/Plugin | |
MimeType=text/plain; | |
Actions=openFilesInVSCode; | |
Encoding=UTF-8 | |
X-KDE-AuthorizeAction=shell_access | |
[Desktop Action openFilesInVSCode] | |
Name=OpenFile(s) in VSCode | |
Icon=com.visualstudio.code | |
Exec=code %f |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[Desktop Entry] | |
Type=Service | |
Icon=com.visualstudio.code | |
X-KDE-ServiceTypes=KonqPopupMenu/Plugin | |
MimeType=inode/directory; | |
Actions=openFolderInVSCode; | |
Encoding=UTF-8 | |
X-KDE-AuthorizeAction=shell_access | |
[Desktop Action openFolderInVSCode] | |
Name=OpenFolder in VSCode | |
Icon=com.visualstudio.code | |
Exec=code %f |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Place these files inside the ServiceMenu directory from within
This is almost redundant since you can always
OpenWith -> VSCode
and it works for both MimeTypes targeted here