I found a (lengthy) guide to doing this but it is for gksu which is gone. I have to imagine there’s an easy way. I am running Ubuntu. There is no specific use case, it is just a feature I miss from windows.

  • boredsquirrel@slrpnk.net
    link
    fedilink
    arrow-up
    1
    ·
    edit-2
    9 months ago

    This is very easy in KDE but Desktop entries work the same on all Desktops.

    See this post where I mentioned how to do this with running Konsole with root.

    In general, use polkit instead of sudo, every desktop has a GUI dialog that pops up.

    pkexec APPNAME
    

    And add this as a desktop action, following the guide.

    [Desktop Entry]
    Type=Application
    Exec=konsole
    Icon=utilities-terminal
    Categories=System;TerminalEmulator;
    Actions=root
    Name=Konsole
    GenericName=Terminal
    Comment="$GenericName"
    
    [Desktop Action root]
    Name=root
    Icon=folder-root-symbolic
    Exec=pkexec konsole
    

    In the specific case of Konsole you could use a profile instead.

    Be aware that nearly no program should be ran as root. Also not Konsole. The program is ran as the user, and can enter a root shell, but never run random apps as root. Not even many terminal apps are made to be ran as root, for example use sudoedit instead of sudo nano for editing files.

    To view and change system files in KDE, type admin:/ into the location bar.

    Running apps as root doesnt work with Wayland, and for a good reason.