-
Hi. How can I load settings from a local file? I tried to set Thanks. Arch Linux |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 1 reply
-
Firefox doesn't support loading settings from a local file. That's only available for Chromium-based browsers. |
Beta Was this translation helpful? Give feedback.
-
I solved the problem by running a local web server to serve the Surfingkeys configuration file. Here's how I've done this. 1. Place the 2. Install the Ruby programming language: 3. Install the WEBrick server: 4. Create the
5. Enable the unit: 6. Input the Surfingkeys configuration file URL |
Beta Was this translation helpful? Give feedback.
I solved the problem by running a local web server to serve the Surfingkeys configuration file.
Here's how I've done this.
1. Place the
settings.js
Surfingkeys configuration file in the/home/user/.config/surfingkeys/
directory;2. Install the Ruby programming language:
pacman -S ruby
;3. Install the WEBrick server:
gem install webrick
;4. Create the
surfingkeys.service
user systemd unit in the/home/user/.config/systemd/user/
directory with the following content;5. E…