From 2a51b8b178c09e4b55684a34b45f769d510a9ddf Mon Sep 17 00:00:00 2001 From: eoli3n Date: Sun, 15 Nov 2020 23:53:48 +0100 Subject: [PATCH] removed up files --- roles/fish/files/fish/cli/functions/up.fish | 4 - roles/userbin/files/up | 147 -------------------- roles/userbin/tasks/main.yml | 11 -- 3 files changed, 162 deletions(-) delete mode 100644 roles/fish/files/fish/cli/functions/up.fish delete mode 100644 roles/userbin/files/up delete mode 100644 roles/userbin/tasks/main.yml diff --git a/roles/fish/files/fish/cli/functions/up.fish b/roles/fish/files/fish/cli/functions/up.fish deleted file mode 100644 index 545bebe..0000000 --- a/roles/fish/files/fish/cli/functions/up.fish +++ /dev/null @@ -1,4 +0,0 @@ -function up - $HOME/bin/up ; -end - diff --git a/roles/userbin/files/up b/roles/userbin/files/up deleted file mode 100644 index 44ea87f..0000000 --- a/roles/userbin/files/up +++ /dev/null @@ -1,147 +0,0 @@ -#!/usr/bin/env bash - -# Bash file uploader - -# Install: sudo wget $raw_url -O /usr/bin/up && sudo chmod +x /usr/bin/up - -# Use with fish: -# echo "\ -# function up -# /usr/bin/up $argv; -# end -# " > $HOME/.config/fish/functions/up.fish - -# Vars - -AUTOCOPY=1 - -# Functions - -function usage(){ - filename=$(basename "$0") - cat <<- EOF - Bash file uploader - Usage : - "$filename" [OPTIONS] file - cat file.ext | "$filename" [OPTIONS] - Options : - -h Print this usage - -a Disable autocopy in clipboard -EOF -} - -function x0(){ - # x0 will be used for file upload and stdin upload - # It correctly set filetype for imgs, ix does not - - # If argument is empty, upload stdin - if [ -z "$1" ] - then - curl -s -F "file=@-" 'https://x0.at/' - # Else upload filename - else - curl -s -F "file=@\"$1\"" 'https://x0.at/' - fi -} - -function ix(){ - # ix.io will be used for piped data upload - curl -s -F 'f:1=<-' 'http://ix.io' -} - -# Arguments - -function arguments(){ - while getopts "ha" arg - do - case $arg in - a) - AUTOCOPY=0 - ;; - h) - usage - exit - ;; - *) - usage - exit 1 - ;; - esac - done - shift $((OPTIND-1)) -} - -function autocopy(){ - # If xorg or wayland is running - if grep 'DISPLAY' <(env) &> /dev/null - then - # If xclip is installed - if which xclip &> /dev/null - then - xclip "$1" - # Else if wl-clipboard is installed - elif which wl-copy &> /dev/null - then - wl-copy "$1" - fi - fi -} - -function is_file(){ - # Test if first argument is an existing file - if [ ! -f "$1" ] - then - echo "File \"$1\" does not exist or is not a regular file" - exit 2 - fi -} - -function main(){ - - # Vars - local url - - # Getopts - arguments - - # Tests - if [ -n "$1" ] - then - is_file "$1" - fi - - # If no piped data - if [ -t 0 ] - then - - # If no argument, read stdin and save url - if [ -z "$1" ] - then - echo -e "Enter text, then upload with twice CTRL+d:\n---" - url=$(x0) - echo -e "---" - # Else upload argument to x0.at and save url - else - url=$(x0 "$1") - fi - - # Else if piped data - else - # Upload to ix.io and save url - url=$(ix) - fi - - # Print url - echo "$url" - - # If autocopy is set - if [ "$AUTOCOPY" == "1" ] - then - # Autocopy url - autocopy "$url" - fi -} - -# Main - -main "$1" diff --git a/roles/userbin/tasks/main.yml b/roles/userbin/tasks/main.yml deleted file mode 100644 index 6c7046c..0000000 --- a/roles/userbin/tasks/main.yml +++ /dev/null @@ -1,11 +0,0 @@ ---- -- name: create home/bin dir - file: - path: ~/bin - state: directory - -- name: install up in in home/bin - copy: - src: up - dest: ~/bin - mode: 0755