Add .local/bin files

This commit is contained in:
Santiago Lo Coco 2021-12-21 21:34:00 -03:00
parent d377834f8e
commit d953729cf3
21 changed files with 217 additions and 2 deletions

5
dotfiles/.local/bin/clion Executable file
View File

@ -0,0 +1,5 @@
#!/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" "$@"

5
dotfiles/.local/bin/datagrip Executable file
View File

@ -0,0 +1,5 @@
#!/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" "$@"

1
dotfiles/.local/bin/foxitLight Executable file
View File

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

3
dotfiles/.local/bin/goctave Executable file
View File

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

5
dotfiles/.local/bin/idea Executable file
View File

@ -0,0 +1,5 @@
#!/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" "$@"

8
dotfiles/.local/bin/isympy Executable file
View File

@ -0,0 +1,8 @@
#!/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

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

1
dotfiles/.local/bin/mailCheck Executable file
View File

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

5
dotfiles/.local/bin/rider Executable file
View File

@ -0,0 +1,5 @@
#!/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" "$@"

5
dotfiles/.local/bin/screen Executable file
View File

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

8
dotfiles/.local/bin/screenshot Executable file
View File

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

13
dotfiles/.local/bin/sound Executable file
View File

@ -0,0 +1,13 @@
#!/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

5
dotfiles/.local/bin/startdwm Executable file
View File

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

5
dotfiles/.local/bin/studio Executable file
View File

@ -0,0 +1,5 @@
#!/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" "$@"

12
dotfiles/.local/bin/timeCalib Executable file
View File

@ -0,0 +1,12 @@
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

@ -0,0 +1,21 @@
#!/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

13
dotfiles/.local/bin/timeSee Executable file
View File

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

73
dotfiles/.local/bin/trim Executable file
View File

@ -0,0 +1,73 @@
#!/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

14
dotfiles/.local/bin/waitForSSH Executable file
View File

@ -0,0 +1,14 @@
#!/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

5
dotfiles/.local/bin/webstorm Executable file
View File

@ -0,0 +1,5 @@
#!/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" "$@"

View File

@ -50,10 +50,11 @@ cd $DOTFILES
DOTFILES_HOME=$DOTFILES/dotfiles
DOTFILES_CONFIG="$DOTFILES_HOME/.config"
DOTFILES_LOCAL="$DOTFILES_HOME/.local"
DOTFILES_ICONS="$DOTFILES_HOME/.icons"
DOTFILES_SSH="$DOTFILES_HOME/.ssh"
for srcFile in $(find -H "$DOTFILES_HOME" -not -path '*.git' -not -path '*.config*' -not -path '*.ssh*' -not -path '*.icons*'); do
for srcFile in $(find -H "$DOTFILES_HOME" -not -path '*.git' -not -path '*.config*' -not -path '*.ssh*' -not -path '*.icons*' -not -path '*.local*'); do
if [ "$(basename "${srcFile}")" = "CocoRice" ] || [ "$(basename "${srcFile}")" = "dotfiles" ]; then
continue
fi
@ -63,7 +64,7 @@ for srcFile in $(find -H "$DOTFILES_HOME" -not -path '*.git' -not -path '*.confi
fi
done
for initialFolder in "$DOTFILES_CONFIG" "$DOTFILES_ICONS" "$DOTFILES_SSH"; do
for initialFolder in "$DOTFILES_CONFIG" "$DOTFILES_ICONS" "$DOTFILES_SSH" "$DOTFILES_LOCAL"; do
for srcFile in $(find -H "$initialFolder"); do
if [[ -d "$srcFile" ]]; then
var=$(echo "$srcFile" | awk '{ sub(/.*CocoRice\/dotfiles\//, ""); print }')