Jump to content
Not connected, Your IP: 3.236.19.251

Recommended Posts

So I'm running Arch Linux on my laptop and I Eddie runs and connects just fine however is there a way to make it automatically start up at login? By default I have to authorize it by entering my password at every login.

 

I thought about maybe having it run as a service but I had no luck getting it to work.

Share this post


Link to post

Google about polkit for details.

If I understood right you want to start eddie without password, to do this add file like this to /etc/polkit-1/rules.d

Name it something like 10-eddie-nopass.rules

polkit.addRule(function(action, subject) 
{
    if (action.id == "org.airvpn.eddie.ui.policy")
    {
        if (subject.isInGroup("wheel"))
        {
             return polkit.Result.YES;
        }
    }
    });
 
I'm on Fedora but maybe it's same for Arch

Share this post


Link to post

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Loading...
  • Security Check
    Play CAPTCHA Audio
    Refresh Image

×
×
  • Create New...