diff options
| author | Raymaekers Luca <raymaekers.luca@gmail.com> | 2024-11-18 10:07:28 +0100 | 
|---|---|---|
| committer | Raymaekers Luca <raymaekers.luca@gmail.com> | 2024-11-18 10:07:28 +0100 | 
| commit | 785af9664c53346e6ffef300d0571f4b2ce4e8a6 (patch) | |
| tree | d54f14cf1ab492d24dc44a9dd1a32adc59a93ec6 | |
| parent | fde23996e410c11ee82491380630f9cb8b02e9f8 (diff) | |
checkpoint
| -rwxr-xr-x | bin/common/goo | 42 | ||||
| -rw-r--r-- | config/essentials/shell/aliases.sh | 1 | ||||
| -rw-r--r-- | config/essentials/zsh/.zshrc | 9 | ||||
| -rw-r--r-- | config/essentials/zsh/widgets.zsh | 1 | ||||
| -rw-r--r-- | config/theme/gtk-2.0/gtkfilechooser.ini | 2 | 
5 files changed, 25 insertions, 30 deletions
diff --git a/bin/common/goo b/bin/common/goo index cf73838..b0ebb0e 100755 --- a/bin/common/goo +++ b/bin/common/goo @@ -1,23 +1,25 @@  #!/bin/sh -exclude=" -.cache  -.mozilla -.npm -.git -site-packages -objects -.minecraft/saves -discord -Steam -?eclipse -VisualParadigm -intellij -arduino15" +# exclude=" +# .cache  +# .mozilla +# .npm +# .git +# site-packages +# objects +# .minecraft/saves +# discord +# Steam +# ?eclipse +# VisualParadigm +# intellij +# arduino15" +# +# for dir in $exclude; do +#     dirs="$dirs -name \"$dir\" -o " +# done +# cmd="find ${2:-.} \(${dirs} -false \) -prune -o -type ${1:-f} -mindepth 1 -print" +# +# eval "$cmd" 2>/dev/null -for dir in $exclude; do -    dirs="$dirs -name \"$dir\" -o " -done -cmd="find ${2:-.} \(${dirs} -false \) -prune -o -type ${1:-f} -mindepth 1 -print" - -eval "$cmd" 2>/dev/null +fd ${2:-.} -t ${1:-f}  diff --git a/config/essentials/shell/aliases.sh b/config/essentials/shell/aliases.sh index 0012406..a35ccd9 100644 --- a/config/essentials/shell/aliases.sh +++ b/config/essentials/shell/aliases.sh @@ -346,3 +346,4 @@ alias rsqp='rlwrap sqlplus -x'  alias gcamc='gca -m "checkpoint"'  alias gdb='gdb -q'  alias gdbr='gdb -ex "target remote :4200"' +alias gonotes='cd "$(find $HOME/notes/ -mindepth 1 -type d -not -name '\''.*'\'' | sed "s@$HOME/notes/@@" | fzf)"' diff --git a/config/essentials/zsh/.zshrc b/config/essentials/zsh/.zshrc index 85f213d..d44eb11 100644 --- a/config/essentials/zsh/.zshrc +++ b/config/essentials/zsh/.zshrc @@ -2,15 +2,6 @@  # zmodload zsh/zprof -if [ "$(id -u)" -ne 0 ] -then -	[ "${TTY%%tty*}" = '/dev/' ] && clear -	case "${TTY#/dev/tty}" in -		2) exec startx > /dev/null 2>&1 ;; -		*) false ;; -	esac && exit -fi -  autoload -U select-word-style  autoload -z edit-command-line  zle -N edit-command-line diff --git a/config/essentials/zsh/widgets.zsh b/config/essentials/zsh/widgets.zsh index a7f8067..dd42788 100644 --- a/config/essentials/zsh/widgets.zsh +++ b/config/essentials/zsh/widgets.zsh @@ -21,6 +21,7 @@ toggle_prompt() {          eval "$(starship init zsh)"      else          PS1="$new_prompt" +        RPROMPT=""      fi      zle clear-screen  } diff --git a/config/theme/gtk-2.0/gtkfilechooser.ini b/config/theme/gtk-2.0/gtkfilechooser.ini index fb85212..bfe91f8 100644 --- a/config/theme/gtk-2.0/gtkfilechooser.ini +++ b/config/theme/gtk-2.0/gtkfilechooser.ini @@ -3,7 +3,7 @@ LocationMode=path-bar  ShowHidden=false  ShowSizeColumn=true  GeometryX=542 -GeometryY=191 +GeometryY=192  GeometryWidth=836  GeometryHeight=697  SortColumn=name  | 
