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)"
}
  • jcs@lemmy.world
    link
    fedilink
    English
    arrow-up
    2
    ·
    23 minutes ago

    I wrote this suite of scripts a few years ago and still use them to:

    1. Boot into Ventoy and select a Debian Live environment
    2. Optional: connect a storage device (local partition, USB drive, etc) for persistent storage
    3. Modify cfg/cfg.sh if it’s the first time using the tool
    4. Run setup.sh to configure the environment into a familiar/productive state

    The tools are flexible on hardware (more directed toward x64 systems at this time), and I (almost) never have to worry about OS upgrades. Just boot into a newer live OS image once it’s ready. They are still a work-in-progress and still have a few customizations that I should abstract for more general use, but it’s FOSS in case anyone has merge requests, issues, suggestions, etc.

  • irotsoma@lemmy.blahaj.zone
    link
    fedilink
    arrow-up
    2
    ·
    1 hour 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
    5
    arrow-down
    1
    ·
    4 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
    4
    ·
    5 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
    7
    arrow-down
    1
    ·
    6 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
      1
      ·
      6 minutes ago

      I once experimented with something similar, except it was supported to trigger my smart speaker and drop into another part of the house to tell me.

      Honestly, I really need to replace my proprietary smart speaker system with something self-hosted; it’s just I only recently have had the time to start cinsidering.

  • MangoCats@feddit.it
    link
    fedilink
    English
    arrow-up
    4
    arrow-down
    1
    ·
    5 hours ago

    I have a collection of about 8 machines around the house (a lot of Raspberry Pi) that I ssh around to from various points.

    I have setup scripts named: ssp1 ssp2 ssba ss2p etc. to ssh into the various machines, and of course shared public ssh keys among them to skip the password prompt. So, yes, once you are “in” one machine in my network, if you know this, you are “in” all of them, but… it’s bloody convenient.

    • randy@lemmy.ca
      link
      fedilink
      arrow-up
      7
      ·
      4 hours ago

      I used to have scripts like that, but eventually switched to ssh aliases. You can set up an alias for each machine in ~/.ssh/config with lines like this:

      Host p1
          HostName 192.168.1.123
          Port 22
          User pi
      

      Then access with ssh p1. Slightly more typing, but avoids adding more commands to your $PATH. Also has the benefit of letting you use the same alias with other ssh-related commands like sftp.

  • data1701d (He/Him)@startrek.website
    link
    fedilink
    English
    arrow-up
    3
    ·
    6 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
      ·
      2 hours 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.

      • data1701d (He/Him)@startrek.website
        link
        fedilink
        English
        arrow-up
        1
        ·
        36 minutes ago

        In my case, no; it’s all a single machine - it is in the initramfs and uses the system’s TPM to (relatively) securely store the keys.

        It can be set up with an attestation server, but you certainly don’t have to do it. The Arch wiki has a really good article on getting it set up.

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

          How difficult is it for an adversary to get in the middle of the TPM releasing the keys to LUKS? That’s why I would want attestation of some sort, but that makes it more complicated and thinking about how that would work in practice makes my head spin…

          • data1701d (He/Him)@startrek.website
            link
            fedilink
            English
            arrow-up
            1
            ·
            10 minutes ago

            Vulnerabilities certainly do exist, but I’m pretty sure the attacker has to be well-equipped

            I’d call it a protection against data getting cracked in a petty theft, but if your attack vector is much more than that, there are other measures you should probably take. I think Clevis also works with Yubikeys and similar, meaning the system won’t decrypt without it plugged in.

            Heck, I think I know someone who just keeps their boot partition with the keys on it on a flash drive and hide it on their person.

  • JTskulk@lemmy.world
    link
    fedilink
    English
    arrow-up
    3
    ·
    7 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'

  • kittenroar@beehaw.org
    link
    fedilink
    English
    arrow-up
    4
    ·
    9 hours ago

    here we go:

    dedup:

    #!/usr/bin/awk -f
    !x[$0]++
    

    this removes duplicate lines, preserving line order

    iter:

    #!/usr/bin/bash
    if [[ "${@}" =~ /$ ]]; then
        xargs -rd '\n' -I {} "${@}"{}
    else
        xargs -rd '\n' -I {} "${@}" {}
    fi
    

    This executes a command for each line. It can also be used to compare two directories, ie:

    du -sh * > sizes; ls | iter du -sh ../kittens/ > sizes2
    

    fadeout:

    #!/bin/bash
    # I use this to fade out layered brown noise that I play at a volume of 130%
    # This takes about 2 minutes to run, and the volume is at zero several seconds before it's done.
    # ################
    # DBUS_SESSION_BUS_ADDRESS is needed so that playerctl can find the dbus to use MPRIS so it can control mpv
    export DBUS_SESSION_BUS_ADDRESS="unix:path=/run/user/1000/bus"
    # ################
    for i in {130..0}
    do
        volume=$(echo "scale=3;$i/100" | bc)
        sleep 2.3
        playerctl --player=mpv volume $volume
    done
    

    lbn:

    #!/bin/bash
    #lbn_pid=$(cat ~/.local/state/lbn.pid)
    if pgrep -fl layered_brown
    then
    	pkill -f layered_brown
    else
    	export DBUS_SESSION_BUS_ADDRESS="unix:path=/run/user/1000/bus"
    	mpv -ao pulse ~/layered_brown_noise.mp3 >>lbn.log 2>&1 &
    	sleep 3
    	playerctl -p mpv volume 1.3 >>lbn.log 2>&1 &
    fi
    

    This plays “layered brown noise” by crysknife. It’s a great sleep aid.

    here are some aliases:

    alias m='mpc random off; mpc clear'
    alias mpcc='ncmpcpp'
    alias thesaurus='dict -d moby-thesaurus'
    alias wtf='dict -d vera'
    alias tvplayer='mpv -fs --geometry=768x1366+1366+0'
    
  • thingsiplay@beehaw.org
    link
    fedilink
    arrow-up
    2
    ·
    8 hours ago

    Here is on that I actually don’t use, but want to use it in scripts. It is meant to be used by piping it. It’s simple branch with user interaction. I don’t even know if there is a standard program doing exactly that already.

    # usage: yesno [prompt]
    # example:
    #   yesno && echo yes
    #   yesno Continue? && echo yes || echo no
    yesno() {
        local prompt
        local answer
        if [[ "${#}" -gt 0 ]]; then
            prompt="${*} "
        fi
        read -rp "${prompt}[y/n]: " answer
        case "${answer}" in
        [Yy0]*) return 0 ;;
        [Nn1]*) return 1 ;;
        *) return 2 ;;
        esac
    }
    
  • hallettj@leminal.space
    link
    fedilink
    English
    arrow-up
    8
    ·
    12 hours ago

    One of favorites cds to the root of a project directory from a subdirectory,

    # Changes to top-level directory of git repository.
    alias gtop="cd \$(git rev-parse --show-toplevel)"