Fixing typos

This commit is contained in:
Jose 2022-08-28 16:08:08 -03:00
parent fbedb2558c
commit 9a560fc035
1 changed files with 13 additions and 11 deletions

View File

@ -2,29 +2,29 @@
* An example on how to look for files and editing scripts
[][luakit] is an awesome web broswer. It's extensible and customizable.
[[https://luakit.github.io/][luakit]] is an awesome web browser. It's extensible and customizable.
To get some things set on this broswer it's important to find system files and edit
To get some things set on this browser it's important to find system files and edit
configuration files.
After installing luakit, e.g., in Parabola GNU-Linux:
After installing ~luakit~, e.g., in Parabola GNU-Linux:
#+begin_example sh
pacman -S luakit
#+end_example
You may be interested in make some adjusts. Let's say you want to set 'Adblock'
extension in the browser.
extension to the browser.
** Set adblock in luakit
To do that you could follow the luakit manual.
To do that you could follow the luakit manual:
#+begin_quote
Add require "adblock" and require "adblock_chrome" to your rc.lua.
Download AdblockPlus-compatible filter lists to the adblock directory. Multiple lists are supported. EasyList is the most popular Adblock Plus filter list, and can be downloaded from https://easylist.to/.
Filter lists downloaded to the adblock directory must have a filename ending in .txt in order to be loaded.
Filter lists need to be updated regularly (~weekly), use cron!
* Add require "adblock" and require "adblock_chrome" to your rc.lua.
* Download AdblockPlus-compatible filter lists to the adblock directory. Multiple lists are supported. EasyList is the most popular Adblock Plus filter list, and can be downloaded from https://easylist.to/.
* Filter lists downloaded to the adblock directory must have a filename ending in .txt in order to be loaded.
* Filter lists need to be updated regularly (~weekly), use cron!
#+end_quote
@ -34,10 +34,12 @@ Filter lists need to be updated regularly (~weekly), use cron!
First search for the ~rc.lua~ script:
#+begin_example sh
pacma -Ql luakit | grep rc.lua
pacman -Ql luakit | grep rc.lua
#+end_example
luakit /etc/xdg/luakit/rc.lua
Which results in:
: luakit /etc/xdg/luakit/rc.lua
Then, edit the file, including the suggested lines.