Skip to content
View JaxxArmstrong's full-sized avatar
Block or Report

Block or report JaxxArmstrong

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned

  1. VScode Bash script header template VScode Bash script header template
    1
        "Bash script header template": {
    2
            "prefix": "bashhead",
    3
            "body": [
    4
                "#!/usr/bin/env bash",
    5
                "#",
  2. Firefox history extraction in real-t... Firefox history extraction in real-time using rofi
    1
    #!/bin/bash
    2
    
                  
    3
    # Extracts today's Firefox link history and leverages Rofi
    4
    # to present them to the user.
    5
    
                  
  3. spotify_sink_identify_volume_changer spotify_sink_identify_volume_changer Public

    Control your local Spotify desktop client's volume from the commandline (Linux).

    Python

  4. tvlist tvlist Public

    Lists current state of TV shows from either a predefined list (textfile), TV shows defined at the command line or search for a specific TV show. (CLI)

    Go

  5. Firefox user.js inclusion example Firefox user.js inclusion example
    1
    // Enable the use of userChrome.css and userContent.css
    2
    user_pref("toolkit.legacyUserProfileCustomizations.stylesheets", true); // default is false
    3
    
                  
    4
    // Disable Telemetry
    5
    user_pref("browser.urlbar.trimURLs","false");
  6. OH-MY-ZSH terminal theme OH-MY-ZSH terminal theme
    1
    # OH-MY-ZSH (https://ohmyz.sh/) terminal theme
    2
    
                  
    3
    local black=$fg[black]
    4
    local red=$fg[red]
    5
    local blue=$fg[blue]