Getting started with 1Password for your growing team, or refining your setup? Our Secured Success quickstart guide is for you.
Forum Discussion
aguther
4 months agoNew Contributor
Start 1Password minimized and locked on boot
On Windows, 1Password currently starts very prominent on boot. When the application opens, it requests to be authenticated, and it always opens the UI. This is very intrusive from my point of view a...
AJCxZ0
4 months agoBronze Expert
This desirable behaviour can be achieved fairly easily on Linux platforms by updating the `1password.desktop` file to include an additional Action. to launch 1password with the --silent option.
[Desktop Entry]
Name=1Password
Exec=env ELECTRON_OZONE_PLATFORM_HINT=auto /opt/1Password/1password %U
Terminal=false
Type=Application
Icon=1password
StartupWMClass=1Password
Comment=Password manager and secure wallet
MimeType=x-scheme-handler/onepassword;
Categories=Office;
Actions=Silent;
[Desktop Action Silent]
Name=Silent
Exec=env ELECTRON_OZONE_PLATFORM_HINT=auto /opt/1Password/1password --silent
This results in an additional menu entry - Silent - from the launcher, enabling the application to be run without being prompted for a password and the interface appearing. The user is prompted for the password only when they want to use the application.
While incidental to this issue, it is complicated by the still-not-fixed-after-years first run bug which results in a window offering to report the "unexpected" failure and the inclusion of two unnecessarily slightly different `1password.desktop` files in the package.
Ideally 1Password would update the file to include this and maybe other Actions (e.g. Lock, Quick Access, Toggle Main Window) in a single desktop file, but failing that users should put their own `1password.desktop` file in $XDG_DATA_HOME/applications/ (usually `.local/share/applications/`) and linked to $XDG_CONFIG_HOME/autostart/ (usually `~/.config/autostart/`) to start automatically with the desktop.
Someone familiar with Windows might describe how to do this on that platform.
aguther
4 months agoNew Contributor
That was a helpful tip, as it turned out to be the same on Windows!
Here is how it can be done:
- Create a text file with the following content:
Windows Registry Editor Version 5.00
[HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Run]
"1Password"="\"C:\\Users\\<USERNAME>\\AppData\\Local\\1Password\\app\\8\\1Password.exe\" --silent"
- Important: replace <USERNAME> with your actual username.
- Save the file
- Double click on the file in File Explorer to add the entry to the registry
The other way is to open the key "HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Run" in the registry editor and edit the entry manually if 1Password is already configured for automatic start.
Drawback of this solution:
It only works if 1Password does not manipulate the entry itself after an update or similar. Then it needs to be reapplied.