Delete bin

This commit is contained in:
Santiago Lo Coco 2021-12-21 16:59:08 -03:00
parent e11b73e285
commit b8814f5abd
20 changed files with 0 additions and 214 deletions

View File

@ -1,5 +0,0 @@
#!/bin/bash
# Generated by JetBrains Toolbox 1.22.10774 at 2021-12-08T09:35:58.867971
"/home/slococo/.local/share/JetBrains/Toolbox/apps/CLion/ch-0/212.5080.54/bin/clion.sh" "$@"

View File

@ -1,5 +0,0 @@
#!/bin/bash
# Generated by JetBrains Toolbox 1.22.10774 at 2021-12-08T09:35:58.892754
"/home/slococo/.local/share/JetBrains/Toolbox/apps/datagrip/ch-0/212.5284.17/bin/datagrip.sh" "$@"

View File

@ -1 +0,0 @@
GTK2_RC_FILES=/usr/share/themes/Orchis-light/gtk-2.0/gtkrc foxitreader

View File

@ -1,3 +0,0 @@
#!/bin/sh
octave --gui

View File

@ -1,5 +0,0 @@
#!/bin/bash
# Generated by JetBrains Toolbox 1.22.10774 at 2021-12-08T09:35:58.915745
"/home/slococo/.local/share/JetBrains/Toolbox/apps/IDEA-U/ch-0/212.5080.55/bin/idea.sh" "$@"

View File

@ -1,8 +0,0 @@
#!/usr/bin/python
# -*- coding: utf-8 -*-
import re
import sys
from isympy import main
if __name__ == '__main__':
sys.argv[0] = re.sub(r'(-script\.pyw|\.exe)?$', '', sys.argv[0])
sys.exit(main())

View File

@ -1,7 +0,0 @@
#!/bin/sh
if pgrep "pcmanfm" > /dev/null; then
pkill "pcmanfm"
else
"pcmanfm"
fi

View File

@ -1 +0,0 @@
mw -Y

View File

@ -1,5 +0,0 @@
#!/bin/bash
# Generated by JetBrains Toolbox 1.22.10774 at 2021-12-08T09:35:58.936191
"/home/slococo/.local/share/JetBrains/Toolbox/apps/Rider/ch-0/212.5080.71/bin/rider.sh" "$@"

View File

@ -1,5 +0,0 @@
#!/bin/sh
sleep 0.5s
xrandr --output DVI-D-0 --mode 1920x1080 --output HDMI-0 --mode 1920x1080 --right-of DVI-D-0
nitrogen --restore &

View File

@ -1,8 +0,0 @@
#!/bin/sh
focusedwindow=$(xdotool getactivewindow)
flameshot gui -g >/dev/null
if [ "$focusedwindow" == "$(xdotool getactivewindow)" ]
then
xdotool windowfocus $focusedwindow
fi

View File

@ -1,13 +0,0 @@
#!/bin/sh
#pactl set-default-sink alsa_output.pci-0000_01_00.1.hdmi-stereo-extra1
#sleep 2
#sleep 1
#sleep 2
sleep 3
#pactl info > $HOME/outputSound2.txt
pactl info > /dev/null
#pactl set-source-volume alsa_input.pci-0000_00_1b.0.analog-stereo 0.03 > /dev/null
pactl set-source-volume @DEFAULT_SOURCE@ 0.03 > /dev/null
sigdwmblocks 2

View File

@ -1,5 +0,0 @@
#!/bin/sh
while true; do
dwm
done

View File

@ -1,5 +0,0 @@
#!/bin/bash
# Generated by JetBrains Toolbox 1.22.10774 at 2021-12-08T09:35:58.784723
"/home/slococo/.local/share/JetBrains/Toolbox/apps/AndroidStudio/ch-0/203.7784292/bin/studio.sh" "$@"

View File

@ -1,12 +0,0 @@
while true
do
if [ `date "+%S"` -ge 50 ]; then
if [ `date "+%S"` -lt 59 ]; then
echo "LLEGUE"
break
fi
fi
sleep 1
done

View File

@ -1,21 +0,0 @@
#!/bin/sh
# exec will take ownership of this program! So, this process will now be dwmblocks.
# Therefore we must not kill it, because it is now dwmblocks! And its parent is obviously
# dwm (because in startx we use exec to launch it!)
restartDwmblocks() {
pkill dwmblocks
exec dwmblocks
}
# Wait for dwm to start
sleep 5
while true
do
if [ `date "+%S"` -eq 55 ]; then
restartDwmblocks
fi
sleep 1
done

View File

@ -1,13 +0,0 @@
#!/bin/sh
while true
do
echo `date "+%S"`
if [ `date "+%S"` -eq 0 ]; then
echo "EN PUNTO"
break
fi
sleep 1
done

View File

@ -1,73 +0,0 @@
#!/bin/sh
CACHEDIR=$HOME/.cache/trimTmp
getAllOccurrences() {
:> $CACHEDIR
find . -print0 | while read -d $'\0' file
do
echo "$file" | grep " " > /dev/null
if [ $? -eq 1 ]; then
continue
fi
echo "$file -> ${file// /}"
echo "$file" >> $CACHEDIR
done
}
getNewOccurrences() {
getAllOccurrences > /dev/null
for file in `cat $CACHEDIR`
do
echo "$file" | grep " " > /dev/null
if [ $? -eq 1 ]; then
continue
fi
echo "$file -> ${file// /}"
mv "$file" "${file// /}"
getNewOccurrences
exit
done
}
# IFS: https://bash.cyberciti.biz/guide/$IFS
doTheTrimming() {
#touch $CACHEDIR
getAllOccurrences
echo -n "Do you want all the changes? [y/N] "
read answer
IFS=$'\n'
if [ $answer = "y" ]; then
for file in `cat $CACHEDIR`
do
echo "$file" | grep " " > /dev/null
if [ $? -eq 1 ]; then
continue
fi
echo "$file -> ${file// /}"
mv "$file" "${file// /}"
getNewOccurrences
exit
done
fi
#rm $CACHEDIR
}
doTheTrimming

View File

@ -1,14 +0,0 @@
#!/bin/sh
while true
do
SSHOUTPUT=$(ssh-add -l | wc -l)
#if echo $SSHOUTPUT | grep -q "santilococo" ; then
if [ $SSHOUTPUT -eq 3 ]; then
pkill "mono"
exit
fi
sleep 1
done

View File

@ -1,5 +0,0 @@
#!/bin/bash
# Generated by JetBrains Toolbox 1.22.10774 at 2021-12-08T09:35:58.955427
"/home/slococo/.local/share/JetBrains/Toolbox/apps/WebStorm/ch-0/212.5080.54/bin/webstorm.sh" "$@"