From d953729cf3b4403ca49ca07a3f6edaa2ac13813d Mon Sep 17 00:00:00 2001 From: Santiago Lo Coco Date: Tue, 21 Dec 2021 21:34:00 -0300 Subject: [PATCH] Add .local/bin files --- dotfiles/.local/bin/clion | 5 ++ dotfiles/.local/bin/datagrip | 5 ++ dotfiles/.local/bin/foxitLight | 1 + dotfiles/.local/bin/goctave | 3 ++ dotfiles/.local/bin/idea | 5 ++ dotfiles/.local/bin/isympy | 8 ++++ dotfiles/.local/bin/launchPcmanfm | 7 +++ dotfiles/.local/bin/mailCheck | 1 + dotfiles/.local/bin/rider | 5 ++ dotfiles/.local/bin/screen | 5 ++ dotfiles/.local/bin/screenshot | 8 ++++ dotfiles/.local/bin/sound | 13 +++++ dotfiles/.local/bin/startdwm | 5 ++ dotfiles/.local/bin/studio | 5 ++ dotfiles/.local/bin/timeCalib | 12 +++++ dotfiles/.local/bin/timeCalibration | 21 +++++++++ dotfiles/.local/bin/timeSee | 13 +++++ dotfiles/.local/bin/trim | 73 +++++++++++++++++++++++++++++ dotfiles/.local/bin/waitForSSH | 14 ++++++ dotfiles/.local/bin/webstorm | 5 ++ scripts/linkFiles.sh | 5 +- 21 files changed, 217 insertions(+), 2 deletions(-) create mode 100755 dotfiles/.local/bin/clion create mode 100755 dotfiles/.local/bin/datagrip create mode 100755 dotfiles/.local/bin/foxitLight create mode 100755 dotfiles/.local/bin/goctave create mode 100755 dotfiles/.local/bin/idea create mode 100755 dotfiles/.local/bin/isympy create mode 100755 dotfiles/.local/bin/launchPcmanfm create mode 100755 dotfiles/.local/bin/mailCheck create mode 100755 dotfiles/.local/bin/rider create mode 100755 dotfiles/.local/bin/screen create mode 100755 dotfiles/.local/bin/screenshot create mode 100755 dotfiles/.local/bin/sound create mode 100755 dotfiles/.local/bin/startdwm create mode 100755 dotfiles/.local/bin/studio create mode 100755 dotfiles/.local/bin/timeCalib create mode 100755 dotfiles/.local/bin/timeCalibration create mode 100755 dotfiles/.local/bin/timeSee create mode 100755 dotfiles/.local/bin/trim create mode 100755 dotfiles/.local/bin/waitForSSH create mode 100755 dotfiles/.local/bin/webstorm diff --git a/dotfiles/.local/bin/clion b/dotfiles/.local/bin/clion new file mode 100755 index 0000000..6bf39ff --- /dev/null +++ b/dotfiles/.local/bin/clion @@ -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" "$@" + diff --git a/dotfiles/.local/bin/datagrip b/dotfiles/.local/bin/datagrip new file mode 100755 index 0000000..1ca1cef --- /dev/null +++ b/dotfiles/.local/bin/datagrip @@ -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" "$@" + diff --git a/dotfiles/.local/bin/foxitLight b/dotfiles/.local/bin/foxitLight new file mode 100755 index 0000000..484901c --- /dev/null +++ b/dotfiles/.local/bin/foxitLight @@ -0,0 +1 @@ +GTK2_RC_FILES=/usr/share/themes/Orchis-light/gtk-2.0/gtkrc foxitreader diff --git a/dotfiles/.local/bin/goctave b/dotfiles/.local/bin/goctave new file mode 100755 index 0000000..465ffc4 --- /dev/null +++ b/dotfiles/.local/bin/goctave @@ -0,0 +1,3 @@ +#!/bin/sh + +octave --gui diff --git a/dotfiles/.local/bin/idea b/dotfiles/.local/bin/idea new file mode 100755 index 0000000..487c3fa --- /dev/null +++ b/dotfiles/.local/bin/idea @@ -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" "$@" + diff --git a/dotfiles/.local/bin/isympy b/dotfiles/.local/bin/isympy new file mode 100755 index 0000000..46850ad --- /dev/null +++ b/dotfiles/.local/bin/isympy @@ -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()) diff --git a/dotfiles/.local/bin/launchPcmanfm b/dotfiles/.local/bin/launchPcmanfm new file mode 100755 index 0000000..6dad02c --- /dev/null +++ b/dotfiles/.local/bin/launchPcmanfm @@ -0,0 +1,7 @@ +#!/bin/sh + +if pgrep "pcmanfm" > /dev/null; then + pkill "pcmanfm" +else + "pcmanfm" +fi diff --git a/dotfiles/.local/bin/mailCheck b/dotfiles/.local/bin/mailCheck new file mode 100755 index 0000000..c29c437 --- /dev/null +++ b/dotfiles/.local/bin/mailCheck @@ -0,0 +1 @@ +mw -Y diff --git a/dotfiles/.local/bin/rider b/dotfiles/.local/bin/rider new file mode 100755 index 0000000..135fcf3 --- /dev/null +++ b/dotfiles/.local/bin/rider @@ -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" "$@" + diff --git a/dotfiles/.local/bin/screen b/dotfiles/.local/bin/screen new file mode 100755 index 0000000..2f2f99d --- /dev/null +++ b/dotfiles/.local/bin/screen @@ -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 & diff --git a/dotfiles/.local/bin/screenshot b/dotfiles/.local/bin/screenshot new file mode 100755 index 0000000..0bca235 --- /dev/null +++ b/dotfiles/.local/bin/screenshot @@ -0,0 +1,8 @@ +#!/bin/sh + +focusedwindow=$(xdotool getactivewindow) +flameshot gui -g >/dev/null +if [ "$focusedwindow" == "$(xdotool getactivewindow)" ] +then + xdotool windowfocus $focusedwindow +fi diff --git a/dotfiles/.local/bin/sound b/dotfiles/.local/bin/sound new file mode 100755 index 0000000..d4267ab --- /dev/null +++ b/dotfiles/.local/bin/sound @@ -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 diff --git a/dotfiles/.local/bin/startdwm b/dotfiles/.local/bin/startdwm new file mode 100755 index 0000000..92fa5ce --- /dev/null +++ b/dotfiles/.local/bin/startdwm @@ -0,0 +1,5 @@ +#!/bin/sh + +while true; do + dwm +done diff --git a/dotfiles/.local/bin/studio b/dotfiles/.local/bin/studio new file mode 100755 index 0000000..5732907 --- /dev/null +++ b/dotfiles/.local/bin/studio @@ -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" "$@" + diff --git a/dotfiles/.local/bin/timeCalib b/dotfiles/.local/bin/timeCalib new file mode 100755 index 0000000..a7b5fe8 --- /dev/null +++ b/dotfiles/.local/bin/timeCalib @@ -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 diff --git a/dotfiles/.local/bin/timeCalibration b/dotfiles/.local/bin/timeCalibration new file mode 100755 index 0000000..a84cf35 --- /dev/null +++ b/dotfiles/.local/bin/timeCalibration @@ -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 + diff --git a/dotfiles/.local/bin/timeSee b/dotfiles/.local/bin/timeSee new file mode 100755 index 0000000..76962a9 --- /dev/null +++ b/dotfiles/.local/bin/timeSee @@ -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 + diff --git a/dotfiles/.local/bin/trim b/dotfiles/.local/bin/trim new file mode 100755 index 0000000..41617c4 --- /dev/null +++ b/dotfiles/.local/bin/trim @@ -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 diff --git a/dotfiles/.local/bin/waitForSSH b/dotfiles/.local/bin/waitForSSH new file mode 100755 index 0000000..411d4e7 --- /dev/null +++ b/dotfiles/.local/bin/waitForSSH @@ -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 + diff --git a/dotfiles/.local/bin/webstorm b/dotfiles/.local/bin/webstorm new file mode 100755 index 0000000..4778a35 --- /dev/null +++ b/dotfiles/.local/bin/webstorm @@ -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" "$@" + diff --git a/scripts/linkFiles.sh b/scripts/linkFiles.sh index 3789b27..3fda3fd 100755 --- a/scripts/linkFiles.sh +++ b/scripts/linkFiles.sh @@ -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 }')