A while ago I made a tiny function in my ~/.zshrc to download a video from the link in my clipboard. I use this nearly every day to share videos with people without forcing them to watch it on whatever site I found it. What’s a script/alias that you use a lot?

# Download clipboard to tmp with yt-dlp
tmpv() {
  cd /tmp/ && yt-dlp "$(wl-paste)"
}
  • irotsoma@lemmy.blahaj.zone
    link
    fedilink
    arrow-up
    1
    ·
    6 minutes ago

    I alias traditional stuff to better, usually drop-in versions of that thing on computers that have the better thing. I often forget which systems have the better thing, so this helps me get the better experience if I was able to install it at some point. For example I alias cat to bat, or top to htop, or dig to drill, etc.

  • djblw@lemmy.world
    link
    fedilink
    arrow-up
    3
    ·
    2 hours ago

    This tmux wrapper is remarkably convenient:

    Usage:

    # Usage: t [session-name]
    #
    # With no arguments:
    #   Lists existing tmux sessions, or prints "[No sessions]" if none exist.
    #
    # With a session name:
    #   Attempts to attach to the named tmux session.
    #   If the session does not exist, creates a new session with that name.
    #
    # Examples:
    #   t            # Lists all tmux sessions
    #   t dev        # Attaches to "dev" session or creates it if it doesn't exist
    
    function t {
    	if [[ -z $1 ]]; then
    		tmux ls 2> /dev/null || echo "[No sessions]"
    	else
    		tmux attach -t $@ 2> /dev/null
    		if [[ $? -ne 0 ]]; then
    			tmux new -s $@
    		fi
    	fi
    }
    
  • SuperiorOne@lemmy.ml
    link
    fedilink
    English
    arrow-up
    2
    ·
    4 hours ago

    jmpd(jump directory): fuzzy finds and opens directory with fzf

    # fish shell
    function jmpd
        set _selection $(fzf --walker=dir);
        if test -n "$_selection"
            cd "$_selection";
        end
    end
    
  • jsomae@lemmy.ml
    link
    fedilink
    arrow-up
    2
    ·
    4 hours ago

    I wrote a script called please. You input please followed by any other command (e.g. please git clone, please wget blahblah) and a robotic voice will say “affirmative,” then the command will run, and when it completes, the robotic voice reads out the exit code (e.g. “completed successfully” or “failed with status 1” etc.)

    This is useful for when you have a command that takes a long time and you want to be alerted when it’s finished. And it’s a gentleman.

  • data1701d (He/Him)@startrek.website
    link
    fedilink
    English
    arrow-up
    2
    ·
    5 hours ago

    I use Clevis to auto-unlock my encrypted root partition with my TPM; this means when my boot partition is updated (E.G a kernel update), I have to update the PCR register values in my TPM. I do it with my little script /usr/bin/update_pcr:

    #!/bin/bash
    clevis luks regen -d /dev/nvme1n1p3 -s 1 tpm2
    

    I run it with sudo and this handles it for me. The only issue is I can’t regenerate the binding immediately after the update; I have to reboot, manually enter my password to decrypt the drive, and then do it.

    Now, if I were really fancy and could get it to correctly update the TPM binding immediately after the update, I would have something like an apt package shim with a hook that does it seamlessly. Honestly, I’m surprised that distributions haven’t developed robust support for this; the technology is clearly available (I’m using it), but no one seems to have made a user-friendly way for the common user to have TPM encryption in the installer.

    • notfromhere@lemmy.ml
      link
      fedilink
      arrow-up
      1
      ·
      1 hour ago

      Is clevis using an attestation server or is it all on a single machine? I’m interested in getting this set up but the noted lack of batteries included for this in the common distros makes it a somewhat tall order.

  • JTskulk@lemmy.world
    link
    fedilink
    English
    arrow-up
    2
    ·
    6 hours ago

    Hey OP, consider using $XDG_RUNTIME_DIR instead of /tmp. It’s now the more proper place for these kinds of things to avoid permission issues, although I’m sure you’re on a single user system like most people. I have clipboard actions set to download with yt-dlp :)

    My favorite aliases are:

    alias dff='findmnt -D -t nosquashfs,notmpfs,nodevtmpfs,nofuse.portal,nocifs,nofuse.kio-fuse'

    alias lt='ls -t | less'

  • golden_zealot@lemmy.ml
    link
    fedilink
    English
    arrow-up
    9
    ·
    13 hours ago

    alias clip='xclip -selection clipboard'

    When you pipe to this, for example ls | clip, it will stick the output of the command ran into the clipboard without needing to manually copy the output.

  • vortexal@lemmy.ml
    link
    fedilink
    arrow-up
    3
    ·
    12 hours ago

    I’ve only used aliases twice so far. The first was to replace yt-dlp with a newer version because the version that comes pre-installed in Linux Mint is too outdated to download videos from YouTube. The second was because I needed something called “Nuget”. I don’t remember exactly what Nuget is but I think it was a dependency for some application I tried several months ago.

    alias yt-dlp='/home/j/yt-dlp/yt-dlp'
    alias nuget="mono /usr/local/bin/nuget.exe"
    
    • vithigar@lemmy.ca
      link
      fedilink
      arrow-up
      3
      ·
      10 hours ago

      Nuget is a the .NET package manager. Like npm or pip, but for .NET projects.

      If you needed it for a published application that strikes me as fairly strange.

      • vortexal@lemmy.ml
        link
        fedilink
        arrow-up
        3
        ·
        edit-2
        10 hours ago

        I looked through my bash history and it looks like I needed it to build an Xbox eeprom editor for Xemu. Xemu doesn’t (or at least didn’t, I haven’t used newer versions yet) have a built in eeprom editor and editing the Xbox eeprom is required for enabling both wide screen and higher resolutions for the games that support them natively.

        I just looked at Xemu’s documentation, and it looks like they’ve added a link to an online eeprom editor, so the editor I used (which they do still link to) is no longer required.

  • harsh3466@lemmy.ml
    link
    fedilink
    arrow-up
    4
    ·
    edit-2
    10 hours ago
    alias gl='git log'
    alias server-name-here='ssh server-name-here'
    

    I have a bunch of the server aliases. I use those and gl the most.

      • harsh3466@lemmy.ml
        link
        fedilink
        arrow-up
        3
        ·
        6 hours ago

        I do have the servers in ~/.ssh/config. I just got tired of typing ssh server and wanted the be able to just type server to ssh in.

        • jwt@programming.dev
          link
          fedilink
          arrow-up
          4
          ·
          edit-2
          5 hours ago

          We almost have the same setup then, I use

          ssh_hostnames=$(grep "^Host " ~/.ssh/config | awk '!/*/ {print $2}')
          for host in $ssh_hostnames
          do
           alias $host="ssh $host"
          done
          

          in my .bash_aliases to parse the ~/.ssh/config file and cut off the 'ssh ’ part automatically for every Host I have in there.

          • harsh3466@lemmy.ml
            link
            fedilink
            arrow-up
            3
            ·
            5 hours ago

            That is a lovely setup. I’m gonna drop that into my bash_aliases so much more elegant than me adding the alias for each server.

  • Bo7a@lemmy.ca
    link
    fedilink
    arrow-up
    6
    ·
    14 hours ago
    #Create a dir and cd into it
    mkcd() { mkdir -p "$@" && cd "$@"; }
    
  • DarkSirrush@lemmy.ca
    link
    fedilink
    arrow-up
    1
    ·
    edit-2
    10 hours ago

    I have a few:

    loginserver
    
    • 3 of these, 1 for each of my headless vm’s/computers that’s just an SSH command
    dcompose(d/pull) - docker compose (down/pull)
    

    3 scripts that are just docker compose up/down/pull, as scripts (remind me in 6 hours and I will post the scripts) so that it will CD to my compose folder, execute the command (with option for naming specific containers or blank for all) and then CD back to the directory I started in.

  • Daniel Quinn@lemmy.ca
    link
    fedilink
    English
    arrow-up
    4
    ·
    14 hours ago

    I have a few interesting ones.

    Download a video:

    alias yt="yt-dlp -o '%(title)s-%(id)s.%(ext)s' "
    

    Execute the previous command as root:

    alias please='sudo $(fc -n -l -1)'
    

    Delete all the Docker things. I do this surprisingly often:

    alias docker-nuke="docker system prune --all --volumes --force"
    

    This is a handy one for detecting a hard link

    function is-hardlink {
      count=$(stat -c %h -- "${1}")
      if [ "${count}" -gt 1 ]; then
        echo "Yes.  There are ${count} links to this file."
      else
        echo "Nope.  This file is unique."
      fi
    }
    

    I run this one pretty much every day. Regardless of the distro I’m using, it Updates All The Things:

    function up {
      if [[ $(command -v yay) ]]; then
        yay -Syu --noconfirm
        yay -Yc --noconfirm
      elif [[ $(command -v apt) ]]; then
        sudo apt update
        sudo apt upgrade -y
        sudo apt autoremove -y
      fi
      flatpak update --assumeyes
      flatpak remove --unused --assumeyes
    }
    

    I maintain an aliases file in GitLab with all the stuff I have in my environment if anyone is curious.

    • golden_zealot@lemmy.ml
      link
      fedilink
      English
      arrow-up
      8
      ·
      13 hours ago

      Execute the previous command as root

      Fun fact if you are using bash, !! will evaluate to the previous command, so if you miss sudo on some long command, you can also just do sudo !!.

      • jwt@programming.dev
        link
        fedilink
        arrow-up
        2
        ·
        6 hours ago

        With the added benefit of it looking like you’re yelling at your prompt in order to get it to use sudo.

  • qpsLCV5@lemmy.ml
    link
    fedilink
    arrow-up
    3
    ·
    edit-2
    15 hours ago

    it’s somewhat vibe coded but the one i probably use the most is this one to swap between speakers and headset. the device name to look for is just put directly in there, it’d take some adjustment to run it on different machines. this is in my .bashrc:

    # switch sinks
    toggle_audio() {
      # Find headset sink ID dynamically
      headset_id=$(pactl list sinks short | grep "Plantronics" | awk '{print $1}')
      
      # Find speakers sink ID dynamically
      speakers_id=$(pactl list sinks short | grep "pci-0000_05_00.6" | awk '{print $1}')
      
      # Get current default sink
      current_sink=$(pactl get-default-sink)
      
      # Get current sink ID
      current_id=$(pactl list sinks short | grep "$current_sink" | awk '{print $1}')
      
      # Toggle between the two
      if [ "$current_id" = "$headset_id" ]; then
        pactl set-default-sink "$speakers_id"
        echo "Switched to speakers (Sink $speakers_id)"
      else
        pactl set-default-sink "$headset_id"
        echo "Switched to headset (Sink $headset_id)"
      fi
    }
    

    generally i try not to use too many custom things because for work i regularly work on all kinds of different servers and i’ve just been too lazy to set up some solution to keep it all in sync. someday…

  • XXIC3CXSTL3Z@lemmy.ml
    link
    fedilink
    arrow-up
    2
    ·
    14 hours ago

    Ooooou I got a couple :3

    This one is just a basic mirror fixing thing cuz sometimes I go a while without updating pacman:

    alias fixpkg='rate-mirrors --protocol https arch | sudo tee /etc/pacman.d/mirrorlist && sudo pacman -Syy'
    

    This function I made to create virtual audio sinks so I can route audios via qpw and play earrape into discord calls if I want XD

    create_vsink() {
        local sink_name=${1:-vsink}  # Default sink name is 'vsink' if no input is provided
        local description=${2:-"Virtual Sink"}  # Default description
        pactl load-module module-null-sink sink_name="$sink_name" sink_properties=device.des>
        echo "Virtual sink '$sink_name' created with description '$description'."
    }
    

    Simple parser function I made that makes a whole repo using my git key so it’s not just locally created I kinda forgot why I made it tbh:

    git_clone() {
        local url="${1#https://}"  # Remove "https://" if present
        git clone "https://$git_key@$url"
    }
    

    Awesome mpv function I made that allows for real time pitch+speed shifting via hotkeys and is flexible with extra parameters and shit:

    mpv_pitch() {
        if [[ -z "$1" ]]; then
            echo "Usage: mpv_pitch <file> [mpv-options]"
            return 1
        fi
        local file="$1"
        shift
        mpv --input-conf=/dev/stdin "$file" "$@" <<EOF
    SHIFT+RIGHT add audio-pitch-correction 0; add pitch 0.01; add speed 0.01  # Decrease pit>
    SHIFT+LEFT add audio-pitch-correction 0; add pitch -0.01; add speed -0.01 # Increase pit>
    EOF
    }
    

    Automatic audio router for firefox audio streams that uses the aforementioned create_sink function to make a specific sink that I can use carla on to mix and make cool shit out of haha

    firefox_crush() {
        create_vsink CrunchSink "CrunchSink" 
        firefox --name firefox-vc &
    
        (while true; do
            SINK_INPUT_ID=$(pactl list sink-inputs short | grep "firefox" | awk '{print $1}')
            if [[ -n "$SINK_INPUT_ID" ]]; then
                pactl move-sink-input "$SINK_INPUT_ID" CrunchSink
                break
            fi
            sleep 0.25
        done) &
    }