commit b531c33947628dd2ff0c08d9b35ebba2816c403f
parent 9dd39c8a5bd7647b723d4870591b3c2382787b71
Author: Andrew Laack <andrew@laack.co>
Date: Thu, 25 Sep 2025 23:38:31 -0500
Laptop conf changes
Diffstat:
14 files changed, 593 insertions(+), 25 deletions(-)
diff --git a/amfora/config.toml b/amfora/config.toml
@@ -0,0 +1,486 @@
+# This is the default config file.
+# It also shows all the default values, if you don't create the file.
+# You can edit this file to set your own configuration for Amfora.
+
+# When Amfora updates, defaults may change, but this file on your drive will not.
+# You can always get the latest defaults on GitHub.
+# https://github.com/makeworld-the-better-one/amfora/blob/master/default-config.toml
+
+# Please also check out the Amfora Wiki for more help
+# https://github.com/makeworld-the-better-one/amfora/wiki
+# gemini://makeworld.space/amfora-wiki/
+
+
+
+# All URL values may omit the scheme and/or port, as well as the beginning double slash
+# Valid URL examples:
+# gemini://example.com
+# //example.com
+# example.com
+# example.com:123
+
+
+[a-general]
+# Press Ctrl-H to access it
+home = "gemini://geminiprotocol.net"
+
+# Follow up to 5 Gemini redirects without prompting.
+# A prompt is always shown after the 5th redirect and for redirects to protocols other than Gemini.
+# If set to false, a prompt will be shown before following redirects.
+auto_redirect = false
+
+# What command to run to open a HTTP(S) URL.
+# Set to "default" to try to guess the browser, or set to "off" to not open HTTP(S) URLs.
+# If a command is set, than the URL will be added (in quotes) to the end of the command.
+# A space will be prepended to the URL.
+#
+# The best way to define a command is using a string array.
+# Examples:
+# http = ['firefox']
+# http = ['custom-browser', '--flag', '--option=2']
+# http = ['/path/with spaces/in it/firefox']
+#
+# Note the use of single quotes, so that backslashes will not be escaped.
+# Using just a string will also work, but it is deprecated, and will degrade if
+# you use paths with spaces.
+
+http = 'default'
+
+# Any URL that will accept a query string can be put here
+search = "gemini://geminispace.info/search"
+
+# Whether colors will be used in the terminal
+color = true
+
+# Whether ANSI color codes from the page content should be rendered
+ansi = true
+
+# Whether or not to support source code highlighting in preformatted blocks based on alt text
+highlight_code = true
+
+# Which highlighting style to use (see https://xyproto.github.io/splash/docs/)
+highlight_style = "monokai"
+
+# Whether to replace list asterisks with unicode bullets
+bullets = true
+
+# Whether to show link after link text
+show_link = false
+
+# The max number of columns to wrap a page's text to. Preformatted blocks are not wrapped.
+max_width = 80
+
+# 'downloads' is the path to a downloads folder.
+# An empty value means the code will find the default downloads folder for your system.
+# If the path does not exist it will be created.
+# Note the use of single quotes, so that backslashes will not be escaped.
+downloads = ''
+
+# Max size for displayable content in bytes - after that size a download window pops up
+page_max_size = 2097152 # 2 MiB
+# Max time it takes to load a page in seconds - after that a download window pops up
+page_max_time = 10
+
+# When a scrollbar appears. "never", "auto", and "always" are the only valid values.
+# "auto" means the scrollbar only appears when the page is longer than the window.
+scrollbar = "auto"
+
+# Underline non-gemini URLs
+# This is done to help color blind users
+underline = true
+
+
+[auth]
+# Authentication settings
+# Note the use of single quotes for values, so that backslashes will not be escaped.
+
+[auth.certs]
+# Client certificates
+# Set URL equal to path to client cert file
+#
+# "example.com" = 'mycert.crt' # Cert is used for all paths on this domain
+# "example.com/dir/"= 'mycert.crt' # Cert is used for /dir/ and everything below only
+#
+# See the comment at the beginning of this file for examples of all valid types of
+# URLs, ports and schemes can be used too
+
+[auth.keys]
+# Client certificate keys
+# Same as [auth.certs] but the path is to the client key file.
+
+
+[commands]
+# Define up to 10 custom commands to execute on the corresponding hotkey press.
+# Commands are run in a new process and will not terminate when Amfora is closed.
+# If you need your command to accept additional input, it is recommended to open
+# a GUI or use a terminal multiplexer like screen or tmux. The string ${url} will
+# be replaced with the current or selected URL. Note that pipes and redirections
+# are not allowed, if these are needed then you should set up a script. Use only
+# absolute paths and/or reference executables in your $PATH.
+# command1 = "my-script -a -b -c ${url}"
+# command2 = ""
+# command3 = ""
+# command4 = ""
+# command5 = ""
+# command6 = ""
+# command7 = ""
+# command8 = ""
+# command9 = ""
+# command0 = ""
+
+
+[keybindings]
+# If you have a non-US keyboard, use bind_tab1 through bind_tab0 to
+# setup the shift-number bindings: Eg, for US keyboards (the default):
+# bind_tab1 = "!"
+# bind_tab2 = "@"
+# bind_tab3 = "#"
+# bind_tab4 = "$"
+# bind_tab5 = "%"
+# bind_tab6 = "^"
+# bind_tab7 = "&"
+# bind_tab8 = "*"
+# bind_tab9 = "("
+# bind_tab0 = ")"
+
+# Whitespace is not allowed in any of the keybindings! Use 'Space' and 'Tab' to bind to those keys.
+# Multiple keys can be bound to one command, just use a TOML array.
+# To add the Alt modifier, the binding must start with Alt-, should be reasonably universal
+# Ctrl- won't work on all keys, see this for a list:
+# https://github.com/gdamore/tcell/blob/cb1e5d6fa606/key.go#L83
+
+# An example of a TOML array for multiple keys being bound to one command is the default
+# binding for reload:
+# bind_reload = ["R","Ctrl-R"]
+# One thing to note here is that "R" is capitalization sensitive, so it means shift-r.
+# "Ctrl-R" means both ctrl-r and ctrl-shift-R (this is a quirk of what ctrl-r means on
+# an ANSI terminal)
+
+# The default binding for opening the bottom bar for entering a URL or link number is:
+# bind_bottom = "Space"
+# This is how to get the Spacebar as a keybinding, if you try to use " ", it won't work.
+# And, finally, an example of a simple, unmodified character is:
+# bind_edit = "e"
+# This binds the "e" key to the command to edit the current URL.
+
+# The bind_link[1-90] options are for the commands to go to the first 10 links on a page,
+# typically these are bound to the number keys:
+# bind_link1 = "1"
+# bind_link2 = "2"
+# bind_link3 = "3"
+# bind_link4 = "4"
+# bind_link5 = "5"
+# bind_link6 = "6"
+# bind_link7 = "7"
+# bind_link8 = "8"
+# bind_link9 = "9"
+# bind_link0 = "0"
+
+# The bind_command[0-9] options are for the command hotkeys. This will pass the URL of the
+# current tab as an argument.
+# bind_command1 = "Alt-!"
+# bind_command2 = "Alt-@"
+# bind_command3 = "Alt-#"
+# bind_command4 = "Alt-$"
+# bind_command5 = "Alt-%"
+# bind_command6 = "Alt-^"
+# bind_command7 = "Alt-&"
+# bind_command8 = "Alt-*"
+# bind_command9 = "Alt-("
+# bind_command0 = "Alt-)"
+
+# The bind_commandtarget[0-9] options are for command hotkeys that operate on the currently
+# highlighted link. This will pass the URL of the highlighted link as an argument.
+# bind_command_target1 = "Alt-1"
+# bind_command_target2 = "Alt-2"
+# bind_command_target3 = "Alt-3"
+# bind_command_target4 = "Alt-4"
+# bind_command_target5 = "Alt-5"
+# bind_command_target6 = "Alt-6"
+# bind_command_target7 = "Alt-7"
+# bind_command_target8 = "Alt-8"
+# bind_command_target9 = "Alt-9"
+# bind_command_target0 = "Alt-0"
+
+# All keybindings:
+#
+# bind_bottom
+# bind_edit
+# bind_home
+# bind_bookmarks
+# bind_add_bookmark
+# bind_save
+# bind_reload
+# bind_back
+# bind_forward
+# bind_moveup
+# bind_movedown
+# bind_moveleft
+# bind_moveright
+# bind_pgup
+# bind_pgdn
+# bind_new_tab
+# bind_close_tab
+# bind_next_tab
+# bind_prev_tab
+# bind_quit
+# bind_help
+# bind_sub: for viewing the subscriptions page
+# bind_add_sub
+# bind_copy_page_url
+# bind_copy_target_url
+# bind_beginning: moving to beginning of page (top left)
+# bind_end: same but the for the end (bottom left)
+# bind_url_handler_open: Open highlighted URL with URL handler (#143)
+
+# Search
+# bind_search = "/"
+# bind_next_match = "n"
+# bind_prev_match = "N"
+
+[url-handlers]
+# Allows setting the commands to run for various URL schemes.
+# E.g. to open FTP URLs with FileZilla set the following key:
+# ftp = ['filezilla']
+# You can set any scheme to 'off' or '' to disable handling it, or
+# just leave the key unset.
+#
+# DO NOT use this for setting the HTTP command.
+# Use the http setting in the "a-general" section above.
+#
+# NOTE: These settings are overridden by the ones in the proxies section.
+#
+# The best way to define a command is using a string array.
+# Examples:
+# magnet = ['transmission']
+# foo = ['custom-browser', '--flag', '--option=2']
+# tel = ['/path/with spaces/in it/telephone']
+#
+# Note the use of single quotes, so that backslashes will not be escaped.
+# Using just a string will also work, but it is deprecated, and will degrade if
+# you use paths with spaces.
+
+# This is a special key that defines the handler for all URL schemes for which
+# no handler is defined.
+# It uses the special value 'default', which will try and use the default
+# application on your computer for opening this kind of URI.
+other = 'default'
+
+[url-prompts]
+# Specify whether a confirmation prompt should be shown before following URL schemes.
+# The special key 'other' matches all schemes that don't match any other key.
+#
+# Example: prompt on every non-gemini URL
+# other = true
+# gemini = false
+#
+# Example: only prompt on HTTP(S)
+# other = false
+# http = true
+# https = true
+
+# [[mediatype-handlers]] section
+# ---------------------------------
+#
+# Specify what applications will open certain media types.
+# By default your default application will be used to open the file when you select "Open".
+# You only need to configure this section if you want to override your default application,
+# or do special things like streaming.
+#
+# Note the use of single quotes for commands, so that backslashes will not be escaped.
+#
+#
+# To open jpeg files with the feh command:
+#
+# [[mediatype-handlers]]
+# cmd = ['feh']
+# types = ["image/jpeg"]
+#
+# Each command that you specify must come under its own [[mediatype-handlers]]. You may
+# specify as many [[mediatype-handlers]] as you want to setup multiple commands.
+#
+# If the subtype is omitted then the specified command will be used for the
+# entire type:
+#
+# [[mediatype-handlers]]
+# command = ['vlc', '--flag']
+# types = ["audio", "video"]
+#
+# A catch-all handler can by specified with "*".
+# Note that there are already catch-all handlers in place for all OSes,
+# that open the file using your default application. This is only if you
+# want to override that.
+#
+# [[mediatype-handlers]]
+# cmd = ['some-command']
+# types = [
+# "application/pdf",
+# "*",
+# ]
+#
+# You can also choose to stream the data instead of downloading it all before
+# opening it. This is especially useful for large video or audio files, as
+# well as radio streams, which will never complete. You can do this like so:
+#
+# [[mediatype-handlers]]
+# cmd = ['vlc', '-']
+# types = ["audio", "video"]
+# stream = true
+#
+# This uses vlc to stream all video and audio content.
+# By default stream is set to off for all handlers
+#
+#
+# If you want to always open a type in its viewer without the download or open
+# prompt appearing, you can add no_prompt = true
+#
+# [[mediatype-handlers]]
+# cmd = ['feh']
+# types = ["image"]
+# no_prompt = true
+#
+# Note: Multiple handlers cannot be defined for the same full media type, but
+# still there needs to be an order for which handlers are used. The following
+# order applies regardless of the order written in the config:
+#
+# 1. Full media type: "image/jpeg"
+# 2. Just type: "image"
+# 3. Catch-all: "*"
+
+
+[cache]
+# Options for page cache - which is only for text pages
+# Increase the cache size to speed up browsing at the expense of memory
+# Zero values mean there is no limit
+
+max_size = 0 # Size in bytes
+max_pages = 30 # The maximum number of pages the cache will store
+
+# How long a page will stay in cache, in seconds.
+timeout = 1800 # 30 mins
+
+[proxies]
+# Allows setting a Gemini proxy for different schemes.
+# The settings are similar to the url-handlers section above.
+# E.g. to open a gopher page by connecting to a Gemini proxy server:
+# gopher = "example.com:123"
+#
+# Port 1965 is assumed if no port is specified.
+#
+# NOTE: These settings override any external handlers specified in
+# the url-handlers section.
+#
+# Note that HTTP and HTTPS are treated as separate protocols here.
+
+
+[subscriptions]
+# For tracking feeds and pages
+
+# Whether a pop-up appears when viewing a potential feed
+popup = true
+
+# How often to check for updates to subscriptions in the background, in seconds.
+# Set it to 0 to disable this feature. You can still update individual feeds
+# manually, or restart the browser.
+#
+# Note Amfora will check for updates on browser start no matter what this setting is.
+update_interval = 1800 # 30 mins
+
+# How many subscriptions can be checked at the same time when updating.
+# If you have many subscriptions you may want to increase this for faster
+# update times. Any value below 1 will be corrected to 1.
+workers = 3
+
+# The number of subscription updates displayed per page.
+entries_per_page = 20
+
+# Set to false to remove the explanatory text from the top of the subscription page
+header = true
+
+
+[theme]
+# This section is for changing the COLORS used in Amfora.
+# These colors only apply if 'color' is enabled above.
+# Colors can be set using a W3C color name, or a hex value such as "#ffffff".
+# Setting a background to "default" keeps the terminal default
+# If your terminal has transparency, set any background to "default" to keep it transparent
+# The key "bg" is already set to "default", but this can be used on other backgrounds,
+# like for modals.
+
+# Note that not all colors will work on terminals that do not have truecolor support.
+# If you want to stick to the standard 16 or 256 colors, you can get
+# a list of those here: https://jonasjacek.github.io/colors/
+# DO NOT use the names from that site, just the hex codes.
+
+# Definitions:
+# bg = background
+# fg = foreground
+# dl = download
+# btn = button
+# hdg = heading
+# bkmk = bookmark
+# modal = a popup window/box in the middle of the screen
+
+# EXAMPLES:
+# hdg_1 = "green"
+# hdg_2 = "#5f0000"
+# bg = "default"
+
+# Available keys to set:
+
+# bg: background for pages, tab row, app in general
+# tab_num: The number/highlight of the tabs at the top
+# tab_divider: The color of the divider character between tab numbers: |
+# bottombar_label: The color of the prompt that appears when you press space
+# bottombar_text: The color of the text you type
+# bottombar_bg
+# scrollbar: The scrollbar that appears on the right for long pages
+
+# You can also set an 'include' key to process another TOML file that contains theme keys.
+# Example:
+# include = "my/path/to/special-theme.toml"
+#
+# Any other theme keys will override this external file.
+# You can use this special key to switch between themes easily.
+# Download other themes here: https://github.com/makeworld-the-better-one/amfora/tree/master/contrib/themes
+
+
+# hdg_1
+# hdg_2
+# hdg_3
+# amfora_link: A link that Amfora supports viewing. For now this is only gemini://
+# foreign_link: HTTP(S), Gopher, etc
+# link_number: The silver number that appears to the left of a link
+# regular_text: Normal gemini text, and plaintext documents
+# quote_text
+# preformatted_text
+# list_text
+
+# btn_bg: The bg color for all modal buttons
+# btn_text: The text color for all modal buttons
+
+# dl_choice_modal_bg
+# dl_choice_modal_text
+# dl_modal_bg
+# dl_modal_text
+# info_modal_bg
+# info_modal_text
+# error_modal_bg
+# error_modal_text
+# yesno_modal_bg
+# yesno_modal_text
+# tofu_modal_bg
+# tofu_modal_text
+# subscription_modal_bg
+# subscription_modal_text
+
+# input_modal_bg
+# input_modal_text
+# input_modal_field_bg: The bg of the input field, where you type the text
+# input_modal_field_text: The color of the text you type
+
+# bkmk_modal_bg
+# bkmk_modal_text
+# bkmk_modal_label
+# bkmk_modal_field_bg
+# bkmk_modal_field_text
diff --git a/bashrc b/bashrc
@@ -84,7 +84,7 @@ clone-private() {
alias pw='cat ~/keys/pw.txt | xclip -selection clipboard'
-# alias mount-server="sshfs andrew@brgr.heron-peacock.ts.net:/home/shared/ /home/server/ -o reconnect"
+alias mount-server="sshfs andrew@brgr.heron-peacock.ts.net:/home/shared/ /mnt/server/ -o reconnect"
# alias mount-home="sshfs andrew@brgr.heron-peacock.ts.net:/home/andrew/ /home/andrew/mount/ -o reconnect"
# alias mount-shared="sshfs andrew@brgr.heron-peacock.ts.net:/home/shared/ /home/andrew/mount/ -o reconnect"
@@ -168,3 +168,4 @@ export LYNX_CFG=/home/andrew/.config/lynx/lynx.cfg
# exec mtm
#fi
#alias abd="/home/andrew/bin/attach-abduco.sh"
+alias a="/home/andrew/bin/abduco.sh"
diff --git a/fastfetch/config.jsonc b/fastfetch/config.jsonc
@@ -5,7 +5,7 @@
"separator",
"os",
"uptime",
- "shell",
+ //"shell",
"de",
"wm",
"terminal",
@@ -17,6 +17,6 @@
//"poweradapter",
//"locale",
"break",
- "colors"
+ //"colors"
]
}
diff --git a/kak/kakrc b/kak/kakrc
@@ -1,6 +1,3 @@
-source "%val{config}/plugins/plug.kak/rc/plug.kak"
-plug "andreyorst/plug.kak" noload
-
add-highlighter global/ number-lines -relative
add-highlighter global/ show-matching
@@ -23,17 +20,7 @@ map global insert <c-w> '<esc>bd;i'
map global normal <c-left> 'b'
map global normal <c-right> 'w'
-plug "andreyorst/fzf.kak"
-
-plug "andreyorst/fzf.kak" config %{
-} defer <module-name> %{
- <settings of module>
-}
-
-map global normal <c-p> ': fzf-mode<ret>'
-eval %sh{kak-lsp}
-lsp-enable
# Use system clipboard
diff --git a/lynx/lynx.cfg b/lynx/lynx.cfg
@@ -9,3 +9,38 @@
# toggled via the -accept_all_cookies command line switch.
#
ACCEPT_ALL_COOKIES:TRUE
+STARTFILE:https://duckduckgo.com/lite
+
+my_cfg=${TMPDIR:-/tmp}/lynxcfg$$
+my_lss=${TMPDIR:-/tmp}/lynxlss$$
+trap "rm -f $my_lss $my_cfg" 0 1 2 3 15
+
+echo >$my_lss
+
+rm -f "$my_cfg"
+echo "DEFAULT_COLORS:on" >>$my_cfg
+if test -n "$LYNX_CFG" ; then
+ echo "include:$LYNX_CFG" >>$my_cfg
+fi
+cat >>$my_cfg <<EOF
+COLOR_STYLE:
+NESTED_TABLES:off
+COLOR:0:blue:default
+EOF
+
+LYNX_CFG=$my_cfg
+export LYNX_CFG
+LYNX_LSS=$my_lss
+export LYNX_LSS
+
+${LYNX_PROG-lynx} "$@"
+
+DEFAULT_EDITOR:nvim
+
+VI_KEYS_ALWAYS_ON:TRUE
+vi_keys=on
+DEFAULT_USER_MODE:advanced
+TEXTFIELDS_NEED_ACTIVATION:TRUE
+
+KEYMAP:^U:UP_HALF
+KEYMAP:^D:DOWN_HALF
diff --git a/newsboat/config b/newsboat/config
@@ -32,9 +32,12 @@ reload-threads 100 # parallelize
bind-key RIGHT open
bind-key LEFT quit
-bind-key ^D pagedown
-bind-key ^U pageup
+bind-key ^D halfpagedown
+bind-key ^U halfpageup
bind-key ^H toggle-show-read-feeds
bind-key SPACE macro-prefix
macro q quit
+#auto-mark-read no
+confirm-mark-feed-read no
+confirm-mark-all-feeds-read no
diff --git a/newsraft/config b/newsraft/config
@@ -0,0 +1,43 @@
+# general settings
+#auto-reload yes
+#max-items 50
+#
+## solarized
+#color background default default
+#color listnormal default default
+#color listnormal_unread default default
+#color listfocus black cyan
+#color listfocus_unread black cyan
+#color info default black
+#color article default default
+#
+#
+#unbind-key g
+#bind-key g home
+#unbind-key G
+#bind-key G end
+#
+## highlights
+#highlight article "^(Title):.*$" blue default
+#highlight article "https?://[^ ]+" red default
+#highlight article "\\[image\\ [0-9]+\\]" green default
+#
+#browser "sh -c 'lynx -dump %u | nvim -R -'"
+#
+#show-read-feeds no
+#refresh-on-startup yes
+#show-read-articles no
+#reload-threads 100 # parallelize
+#
+#bind-key RIGHT open
+#bind-key LEFT quit
+#
+#bind-key ^D halfpagedown
+#bind-key ^U halfpageup
+#bind-key ^H toggle-show-read-feeds
+#
+#bind-key SPACE macro-prefix
+#macro q quit
+##auto-mark-read no
+#confirm-mark-feed-read no
+#confirm-mark-all-feeds-read no
diff --git a/newsraft/urls b/newsraft/urls
@@ -0,0 +1,13 @@
+https://feeds.arstechnica.com/arstechnica/technology-lab
+https://geohot.github.io/blog/feed.xml
+https://suckless.org/atom.xml
+
+"query:YouTube:tags # \"YouTube\""
+https://www.youtube.com/feeds/videos.xml?playlist_id=UULFUyeluBRhGPCW4rPe_UvBZQ "~The Primeagen" "YouTube"
+https://www.youtube.com/feeds/videos.xml?playlist_id=UULF04nROIJrY22Gl2aFqKcdqQ "~Sylvan Franklin" "YouTube"
+https://www.youtube.com/feeds/videos.xml?playlist_id=UULF2eYFnH61tmytImy1mTYvhA "~Luke Smith" "YouTube"
+https://www.youtube.com/feeds/videos.xml?playlist_id=UULF7YOGHUfC1Tb6E4pudI9STA "~Mental Outlaw" "YouTube"
+https://www.youtube.com/feeds/videos.xml?playlist_id=UULFwHwDuNd9lCdA7chyyquDXw "~Bread on Penguins" "YouTube"
+https://www.youtube.com/feeds/videos.xml?playlist_id=UULFYO_jab_esuFRV4b17AJtAw "~3 Blue 1 Brown" "YouTube"
+https://www.youtube.com/feeds/videos.xml?playlist_id=UULFSHZKyawb77ixDdsGog4iWA "~Lex Fridman" "YouTube"
+http://www.fsf.org/news/aggregator/RSS "~FSF News"
diff --git a/pavucontrol.ini b/pavucontrol.ini
@@ -1,6 +1,6 @@
[window]
-width=681
-height=414
+width=1067
+height=248
sinkInputType=1
sourceOutputType=1
sinkType=0
diff --git a/qutebrowser/autoconfig.yml b/qutebrowser/autoconfig.yml
@@ -140,7 +140,7 @@ settings:
https://mail.google.com?extsrc=mailto&url=%25s: false
https://outlook.office.com?mailtouri=%25s: false
content.user_stylesheets:
- global: black.css
+ global: null
fonts.default_size:
global: 12pt
fonts.hints:
diff --git a/qutebrowser/qsettings/QtProject.conf b/qutebrowser/qsettings/QtProject.conf
@@ -1,7 +1,7 @@
[FileDialog]
-history=file:///home/andrew/documents/cover-letter, file:///home/andrew, file:///home/andrew/downloads, file:///home/andrew/documents/school, file:///home/andrew/coding-books, file:///home/andrew/gitRepos/cs7638/submissions/ps2
-lastVisited=file:///home/andrew/gitRepos/cs7638/submissions/ps2
-qtVersion=6.9.1
+history=file:///home/andrew/gitRepos/cs7638/submissions/ps2, file:///home/andrew/gitRepos/cs7638/submissions/ps3, file:///home/andrew/gitRepos/cs7638/submissions/kalman, file:///home/andrew/gitRepos/cs7638/submissions/kalman/kalman, file:///home/andrew/gitRepos/cs7638/submissions, file:///home/andrew/gitRepos/cs7638/submissions/ps4
+lastVisited=file:///home/andrew/gitRepos/cs7638/submissions/ps4
+qtVersion=6.9.2
shortcuts=file:, file:///home/andrew/gitRepos/cs7638/submissions, file:///home/andrew, file:///home/andrew/gitRepos/cart-elc/paper/tmlr-style-file-main, file:///home/andrew/courseResources/final, file:///home/andrew/gitRepos/resume-cv, file:///home/andrew/gitRepos/cart-elc-private, file:///home/andrew/documents/cover-letter
sidebarWidth=98
treeViewHeader=@ByteArray(\0\0\0\xff\0\0\0\0\0\0\0\x1\0\0\0\0\0\0\0\0\x1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x1\xec\0\0\0\x4\x1\x1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x64\xff\xff\xff\xff\0\0\0\x81\0\0\0\0\0\0\0\x4\0\0\0\xff\0\0\0\x1\0\0\0\0\0\0\0?\0\0\0\x1\0\0\0\0\0\0\0@\0\0\0\x1\0\0\0\0\0\0\0n\0\0\0\x1\0\0\0\0\0\0\x3\xe8\0\xff\xff\xff\xff\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x1)
diff --git a/ranger/plugins/__pycache__/__init__.cpython-313.pyc b/ranger/plugins/__pycache__/__init__.cpython-313.pyc
Binary files differ.
diff --git a/ranger/plugins/zoxide/__pycache__/__init__.cpython-313.pyc b/ranger/plugins/zoxide/__pycache__/__init__.cpython-313.pyc
Binary files differ.
diff --git a/ranger/rifle.conf b/ranger/rifle.conf
@@ -57,6 +57,7 @@
ext x?html?, has surf, X, flag f = surf -- file://"$1"
ext x?html?, has vimprobable, X, flag f = vimprobable -- "$@"
ext x?html?, has vimprobable2, X, flag f = vimprobable2 -- "$@"
+ext x?html?, has lynx, terminal = lynx -- "$@"
ext x?html?, has qutebrowser, X, flag f = qutebrowser -- "$@"
ext x?html?, has dwb, X, flag f = dwb -- "$@"
ext x?html?, has jumanji, X, flag f = jumanji -- "$@"
@@ -78,7 +79,6 @@ ext x?html?, has konqueror, X, flag f = konqueror -- "$@"
ext x?html?, has elinks, terminal = elinks "$@"
ext x?html?, has links2, terminal = links2 "$@"
ext x?html?, has links, terminal = links "$@"
-ext x?html?, has lynx, terminal = lynx -- "$@"
ext x?html?, has w3m, terminal = w3m "$@"
#-------------------------------------------