mirror of
git://slackware.nl/current.git
synced 2025-01-11 08:01:05 +01:00
15 lines
425 B
Text
15 lines
425 B
Text
# Add a 'run dolphin as root' menu entry:
|
|||
mkdir -p $PKG/usr/share/applications
|
|||
cat <<EOT > $PKG/usr/share/applications/org.kde.dolphinsu.desktop
|
|||
[Desktop Entry]
|
|||
Name=File Manager - Super User Mode
|
|||
Exec=dbus-launch dolphin -qwindowtitle "%c" "%u"
|
|||
Icon=system-file-manager
|
|||
Type=Application
|
|||
X-DocPath=dolphin/index.html
|
|||
Categories=Qt;KDE;System;FileManager;
|
|||
Terminal=false
|
|||
MimeType=inode/directory;
|
|||
X-KDE-SubstituteUID=true
|
|||
EOT
|