Recreate user scripts and add them to the PATH
This commit is contained in:
parent
3869933134
commit
910239fdef
|
@ -14,6 +14,7 @@ alias docker-compose "podman-compose"
|
||||||
|
|
||||||
# Additional paths
|
# Additional paths
|
||||||
set PATH $PATH $HOME/.emacs.d/bin
|
set PATH $PATH $HOME/.emacs.d/bin
|
||||||
|
set PATH $PATH $HOME/.local/share/scripts
|
||||||
|
|
||||||
# fff colors [0-9]
|
# fff colors [0-9]
|
||||||
set -x FFF_COL1 4
|
set -x FFF_COL1 4
|
||||||
|
|
|
@ -0,0 +1,8 @@
|
||||||
|
#!/usr/bin/env bash
|
||||||
|
|
||||||
|
directory=/tmp/webtorrent
|
||||||
|
player=mpv
|
||||||
|
|
||||||
|
webtorrent download "$1" -s -o "$directory" --"$player"
|
||||||
|
read -rp "File number: " nr
|
||||||
|
webtorrent download "$@" -s "$nr" -o "$directory" --"$player"
|
|
@ -0,0 +1,18 @@
|
||||||
|
#!/bin/sh
|
||||||
|
|
||||||
|
if [ $# -lt 2 ]; then
|
||||||
|
echo "Usage: subject.sh <subject name> <subject type>"
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
|
||||||
|
name=$1
|
||||||
|
type=$2
|
||||||
|
|
||||||
|
if [ "$type" -eq 0 ]; then
|
||||||
|
mkdir -p "$name"/Code
|
||||||
|
mkdir -p "$name"/TP
|
||||||
|
mkdir -p "$name"/Exos
|
||||||
|
else
|
||||||
|
mkdir -p "$name"/TP
|
||||||
|
mkdir -p "$name"/Exos
|
||||||
|
fi
|
Loading…
Reference in New Issue