made some minor changes to scripts to fix some broken behavior

nvim
KeeganForelight 2 years ago
parent b69aa74180
commit 08dabc3852

1
.gitignore vendored

@ -6,3 +6,4 @@ bin/weather/.env*
*.swp
bin/startup/*.json
bin/bluebikes/data
bin/timetracker/timesheet.log

@ -29,3 +29,43 @@ O 10-09T19:13
I 10-10T10:35
O 10-10T16:43
I 10-11T11:28
O 10-11T12:29
I 10-11T14:54
O 10-11T18:56
I 10-12T09:45
O 10-12T12:23
I 10-12T15:39
O 10-12T17:06
I 10-13T09:55
O 10-13T10:30
I 10-14T15:25
O 10-14T17:19
I 10-16T13:19
O 10-16T17:00
I 10-17T10:15
O 10-17T13:41
I 10-18T13:22
O 10-18T13:54
I 10-18T14:11
O 10-18T18:00
I 10-19T10:22
O 10-19T13:00
I 10-19T13:25
O 10-19T16:59
I 10-19T17:23
O 10-19T18:34
I 10-21T12:04
O 10-21T12:51
I 10-23T14:59
O 10-23T17:19
I 10-24T13:07
O 10-24T13:57
I 10-25T15:34
O 10-25T17:53
I 10-26T11:57
O 10-26T19:47
I 10-27T17:56
O 10-27T20:23
I 11-01T13:40
O 11-01T18:13
I 11-02T13:24

@ -5,7 +5,7 @@ ft_minutes=$(($ft_seconds/60))
ft_hours=$(($ft_minutes/60))
echo $ft_hours $ft_minutes $ft_seconds
if [[ $ft_hours -gt 1 ]] ; then
if [[ $ft_hours -gt 0 ]] ; then
# display with leading hours
rem_mins=$(($ft_minutes % 60)) # get remaining mins
printf '%dH %dM' $ft_hours $rem_mins

@ -1,11 +1,11 @@
# Improve Colors set -g default-terminal "screen-256color"
# Improve Colors set -g default-terminal "screen-256color"
# change keybinding to something sane
set -g prefix M-a
# Set scrollback buffer
set -g history-limit 10000
# Set display time to be longer to allow selecting
set -g display-panes-time 5000
# setup automatic renaming
# Set scrollback buffer
set -g history-limit 10000
# Set display time to be longer to allow selecting
set -g display-panes-time 5000
# setup automatic renaming
set -g automatic-rename on
# keybinds
@ -45,5 +45,5 @@ set -g @continuum-systemd-start-cmd 'new-session -d -s doormat'
# run tpm
run '~/.tmux/plugins/tpm/tpm'
#-#-# start_of_ranger_tmux_config #-#-#
bind-key Bspace run-shell -b 'python -m ranger_tmux.drop'
bind-key Bspace run-shell -b '/sbin/python -m ranger_tmux.drop'
#-#-# end_of_ranger_tmux_config #-#-#

@ -12,10 +12,10 @@ fi
export ZSH="$HOME/.oh-my-zsh"
# fix golang not loading properly
export GOROOT=/usr/local/go
#export GOROOT=/usr/local/go
#export GOPATH=$HOME/go
#export GOBIN=$GOROOT/bin
export PATH=$PATH:$GOROOT/bin
export PATH=$PATH:/usr/local/go/bin
# adding scripts to path
export PATH=$PATH:$HOME/.dotfiles/bin/startup:$HOME/.dotfiles/bin:$HOME/.dotfiles/bin/weather:$HOME/.dotfiles/bin/bluebikes

Loading…
Cancel
Save