initial commit - add files
This commit is contained in:
14
.config/fish/functions/tp.fish
Normal file
14
.config/fish/functions/tp.fish
Normal file
@ -0,0 +1,14 @@
|
||||
function tp
|
||||
if test $touchpadEnabled = 1
|
||||
set touchpadEnabled 0
|
||||
echo Disabled Trackpad
|
||||
xinput disable "Atmel maXTouch Touchpad"
|
||||
unclutter --timeout 0 &
|
||||
else
|
||||
set touchpadEnabled 1
|
||||
echo Enabled Trackpad
|
||||
xinput enable "Atmel maXTouch Touchpad"
|
||||
kill (jobs -c | grep unclutter) 2>/dev/null
|
||||
end
|
||||
end
|
||||
|
11
.config/fish/functions/transfer.fish
Normal file
11
.config/fish/functions/transfer.fish
Normal file
@ -0,0 +1,11 @@
|
||||
function transfer --description 'Upload a file to transfer.sh'
|
||||
if [ $argv[1] ]
|
||||
# write to output to tmpfile because of progress bar
|
||||
set -l tmpfile ( mktemp -t transferXXX )
|
||||
curl --progress-bar --upload-file "$argv[1]" https://transfer.sh/(basename $argv[1]) >> $tmpfile
|
||||
cat $tmpfile
|
||||
command rm -f $tmpfile
|
||||
else
|
||||
echo 'usage: transfer FILE_TO_TRANSFER'
|
||||
end
|
||||
end
|
Reference in New Issue
Block a user