Skip to content
View solanto's full-sized avatar

Block or report solanto

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.

Maximum 250 characters. Please don’t include any personal information such as legal names or email addresses. Markdown is supported. This note will only be visible to you.
Report abuse

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

Report abuse
solanto/README.md

Pinned Loading

  1. cycle performance modes via ACPI, su... cycle performance modes via ACPI, suitable for GNOME keybinding
    1
    #!/bin/bash
    2
    
                  
    3
    # gnome queues up multiple runs if you inevitably hold down a keybinding
    4
    # for more than a tick; detect other instances of this program or its
    5
    # children (like tee) and exit if any exist
  2. toggle ghostty background (hit <ctrl... toggle ghostty background (hit <ctrl> + <shift> + <,> after)
    1
    #!/bin/bash
    2
    sed 's/^background-image =/# background-image =/; t quit; s/^# background-image =/background-image =/; : quit' ~/.config/ghostty/config.ghostty -i
  3. toggle airplane mode via gdbus toggle airplane mode via gdbus
    1
    #!/bin/bash
    2
    
                  
    3
    state=$(gdbus call --session --dest org.gnome.SettingsDaemon.Rfkill \
    4
      --object-path /org/gnome/SettingsDaemon/Rfkill \
    5
      --method org.freedesktop.DBus.Properties.Get \
  4. configure VPN on networkmanager changes configure VPN on networkmanager changes
    1
    #!/bin/bash
    2
    
                  
    3
    INTERFACE=$1
    4
    ACTION=$2
    5