diff --git a/dotfiles/.gtk-bookmarks b/dotfiles/.gtk-bookmarks new file mode 100644 index 0000000..e3e396a --- /dev/null +++ b/dotfiles/.gtk-bookmarks @@ -0,0 +1,7 @@ +file:///home/slococo/ITBA ITBA +file:///home/slococo/Desktop Desktop +file:///home/slococo/Downloads Downloads +file:///home/slococo/Documents Documents +file:///home/slococo/Pictures Pictures +file:///home/slococo/Videos Videos +file:///mnt mnt diff --git a/dotfiles/.octave_packages b/dotfiles/.octave_packages new file mode 100644 index 0000000..f299e6b --- /dev/null +++ b/dotfiles/.octave_packages @@ -0,0 +1,316 @@ +# Created by Octave 6.4.0, Sun Nov 07 09:39:07 2021 -03 +# name: local_packages +# type: cell +# rows: 1 +# columns: 2 +# name: +# type: scalar struct +# ndims: 2 + 1 1 +# length: 17 +# name: name +# type: sq_string +# elements: 1 +# length: 2 +io + + +# name: version +# type: sq_string +# elements: 1 +# length: 5 +2.6.3 + + +# name: date +# type: sq_string +# elements: 1 +# length: 10 +2020-11-02 + + +# name: author +# type: sq_string +# elements: 1 +# length: 15 +various authors + + +# name: maintainer +# type: sq_string +# elements: 1 +# length: 41 +Philip Nienhuis + + +# name: title +# type: sq_string +# elements: 1 +# length: 12 +Input/Output + + +# name: description +# type: sq_string +# elements: 1 +# length: 33 +Input/Output in external formats. + + +# name: categories +# type: sq_string +# elements: 1 +# length: 2 +IO + + +# name: problems +# type: sq_string +# elements: 1 +# length: 118 +Default initial Java memory probably too small, increase with java.opts (see documentation). UNO support experimental. + + +# name: depends +# type: cell +# rows: 1 +# columns: 1 +# name: +# type: scalar struct +# ndims: 2 + 1 1 +# length: 3 +# name: package +# type: sq_string +# elements: 1 +# length: 6 +octave + + +# name: operator +# type: sq_string +# elements: 1 +# length: 2 +>= + + +# name: version +# type: sq_string +# elements: 1 +# length: 5 +4.2.0 + + + + + + + +# name: suggested +# type: sq_string +# elements: 1 +# length: 36 +windows (>= 1.2.1); Java JRE (> 1.8) + + +# name: autoload +# type: sq_string +# elements: 1 +# length: 2 +no + + +# name: license +# type: sq_string +# elements: 1 +# length: 22 +GPLv3+, simplified BSD + + +# name: url +# type: sq_string +# elements: 1 +# length: 20 +http://octave.sf.net + + +# name: dir +# type: sq_string +# elements: 1 +# length: 29 +/home/slococo/octave/io-2.6.3 + + +# name: archprefix +# type: sq_string +# elements: 1 +# length: 29 +/home/slococo/octave/io-2.6.3 + + +# name: loaded +# type: bool +0 + + + + + +# name: +# type: scalar struct +# ndims: 2 + 1 1 +# length: 13 +# name: name +# type: sq_string +# elements: 1 +# length: 10 +statistics + + +# name: version +# type: sq_string +# elements: 1 +# length: 5 +1.4.2 + + +# name: date +# type: sq_string +# elements: 1 +# length: 10 +2020-03-23 + + +# name: author +# type: sq_string +# elements: 1 +# length: 15 +various authors + + +# name: maintainer +# type: sq_string +# elements: 1 +# length: 47 +Octave-Forge community + + +# name: title +# type: sq_string +# elements: 1 +# length: 10 +Statistics + + +# name: description +# type: sq_string +# elements: 1 +# length: 43 +Additional statistics functions for Octave. + + +# name: categories +# type: sq_string +# elements: 1 +# length: 10 +Statistics + + +# name: depends +# type: cell +# rows: 1 +# columns: 2 +# name: +# type: scalar struct +# ndims: 2 + 1 1 +# length: 3 +# name: package +# type: sq_string +# elements: 1 +# length: 6 +octave + + +# name: operator +# type: sq_string +# elements: 1 +# length: 2 +>= + + +# name: version +# type: sq_string +# elements: 1 +# length: 5 +4.0.0 + + + + + +# name: +# type: scalar struct +# ndims: 2 + 1 1 +# length: 3 +# name: package +# type: sq_string +# elements: 1 +# length: 2 +io + + +# name: operator +# type: sq_string +# elements: 1 +# length: 2 +>= + + +# name: version +# type: sq_string +# elements: 1 +# length: 6 +1.0.18 + + + + + + + +# name: license +# type: sq_string +# elements: 1 +# length: 21 +GPLv3+, public domain + + +# name: url +# type: sq_string +# elements: 1 +# length: 20 +http://octave.sf.net + + +# name: dir +# type: sq_string +# elements: 1 +# length: 37 +/home/slococo/octave/statistics-1.4.2 + + +# name: archprefix +# type: sq_string +# elements: 1 +# length: 37 +/home/slococo/octave/statistics-1.4.2 + + + + + + + diff --git a/dotfiles/.zshrc_aliases b/dotfiles/.zshrc_aliases index 2db442a..8551122 100644 --- a/dotfiles/.zshrc_aliases +++ b/dotfiles/.zshrc_aliases @@ -20,7 +20,15 @@ alias gp='git pull' alias gpsh='git push' alias gss='git status -s' # Undo commit (https://stackoverflow.com/questions/2845731/how-to-uncommit-my-last-commit-in-git) -alias gundo='git reset --soft HEAD^' +alias gundo='git reset --soft HEAD~1' +alias gck='git checkout' + +gamp() { + git add . + local var="$@" + git commit -m "$var" + git push +} alias exiftcl='exiftool -all=' alias exift='exiftool'