• 0 Posts
  • 9 Comments
Joined 10 months ago
cake
Cake day: April 10th, 2024

help-circle




  • Under about:unloads, you will see a list of open tabs, sorted by resource usage. You can click-spam the “Unload” button until that list is empty, or until the most resource-intensive tabs are off the list.

    This does not require any third-party dependencies, and the tab will still be present on top. The site will reload once the tab is selected again.


  • mbwtoLinuxEffectively Use History Commands in Linux
    link
    fedilink
    arrow-up
    11
    ·
    6 months ago

    If you have fzf installed, it is easy to integrate it with your bash history. In my .bashrc, I have:

    # Introduce fzf-driven functionality as described here: https://wiki.archlinux.org/title/fzf.
    source /usr/share/fzf/key-bindings.bash
    source /usr/share/fzf/completion.bash
    

    Also, you may be interested in zoxide, which keeps track of paths you have navigated to. Also from my .bashrc:

    # Enable an autojump-like 'j' command. Use 'ji M' to select paths starting with M using fzf.
    # This needs to always come last.
    eval "$(zoxide init --cmd j bash)"