12 Commity 4d19dfdd52 ... 6c89d05420

Autor SHA1 Správa Dátum
  Ben Harris 6c89d05420 add sysu function 6 rokov pred
  Ben Harris a40f44f3d3 change l alias in .bashrc 6 rokov pred
  Ben Harris 48c60eb6d4 a couple nice git things in the right_prompt 6 rokov pred
  Ben Harris 3b4c981ccc remove fishd files 6 rokov pred
  Ben Harris 769a39b3a0 fix cat and lg functions 6 rokov pred
  Ben Harris c36c75cf85 add vz 6 rokov pred
  Ben Harris ea07b5868b fishd changes for slash 6 rokov pred
  Ben Harris 1104b9af61 remove apply_corrections 6 rokov pred
  Ben Harris 444fe12919 add ~/.fzf/bin to path 6 rokov pred
  Ben Harris 3d4ecabfdc add hostname to byobu status bar 6 rokov pred
  Ben Harris 4f3acdf59d add rb wrapper script 6 rokov pred
  Ben Harris 2660491760 fix hilight bg contrast 6 rokov pred

+ 1 - 3
.gitmodules

@@ -1,6 +1,4 @@
 [submodule "fish/.config/fish/nvm-wrapper"]
 	path = fish/.config/fish/nvm-wrapper
 	url = https://github.com/passcod/nvm-fish-wrapper
-[submodule "vim/.spf13-vim"]
-	path = vim/.spf13-vim
-	url = https://github.com/spf13/spf13-vim
+

+ 1 - 1
bash/.bashrc

@@ -90,7 +90,7 @@ fi
 # some more ls aliases
 alias ll='ls -alF'
 alias la='ls -A'
-alias l='ls -CF'
+alias l='ls -alh'
 
 # Add an "alert" alias for long running commands.  Use like so:
 #   sleep 10; alert

+ 12 - 0
bin/bin/rb

@@ -0,0 +1,12 @@
+#!/usr/bin/env ruby
+
+def execute(_, code)
+  puts _.instance_eval(&code)
+rescue Errno::EPIPE
+  exit
+end
+
+single_line = ARGV.delete('-l')
+code = eval("Proc.new { #{ARGV.join(' ')} }")
+single_line ? STDIN.each { |l| execute(l.chomp, code) } : execute(STDIN.each_line, code)
+

+ 1 - 1
byobu/.byobu/.ssh-agent

@@ -1 +1 @@
-/run/user/1000/keyring/ssh
+/run/user/1000/gnupg/S.gpg-agent.ssh

+ 0 - 5
byobu/.byobu/color.tmux

@@ -1,5 +0,0 @@
-BYOBU_DARK="\#6eb08d"
-BYOBU_LIGHT=black
-BYOBU_ACCENT=magenta
-BYOBU_HIGHLIGHT=red
-MONOCHROME=

+ 1 - 1
byobu/.byobu/status

@@ -31,7 +31,7 @@ screen_lower_right="color network #disk_io custom #entropy raid reboot_required
 # Tmux has one status line, with 2 halves for status
 tmux_left=" #logo #distro #release #arch #session"
 # You can have as many tmux right lines below here, and cycle through them using Shift-F5
-tmux_right=" #network #disk_io #custom #entropy #raid reboot_required updates_available #apport #services mail #users uptime #ec2_cost #rcs_cost #fan_speed cpu_temp #battery #wifi_quality #processes load_average cpu_count cpu_freq memory #swap #disk #whoami #hostname #ip_address #time_utc #date time"
+tmux_right=" #network #disk_io #custom #entropy #raid reboot_required updates_available #apport #services #mail #users uptime #ec2_cost #rcs_cost #fan_speed cpu_temp #battery #wifi_quality processes load_average cpu_count cpu_freq memory #swap #disk #whoami hostname #ip_address #time_utc #date time"
 #tmux_right="network #disk_io #custom entropy raid reboot_required updates_available #apport #services #mail users uptime #ec2_cost #rcs_cost fan_speed cpu_temp battery wifi_quality #processes load_average cpu_count cpu_freq memory #swap #disk whoami hostname ip_address #time_utc date time"
 #tmux_right="network #disk_io custom #entropy raid reboot_required updates_available #apport #services #mail users uptime #ec2_cost #rcs_cost #fan_speed #cpu_temp battery wifi_quality #processes load_average cpu_count cpu_freq memory #swap #disk #whoami #hostname ip_address #time_utc date time"
 #tmux_right="#network disk_io #custom entropy #raid #reboot_required #updates_available #apport #services #mail #users #uptime #ec2_cost #rcs_cost fan_speed cpu_temp #battery #wifi_quality #processes #load_average #cpu_count #cpu_freq #memory #swap whoami hostname ip_address #time_utc disk date time"

+ 1 - 0
byobu/.gitignore

@@ -0,0 +1 @@
+.byobu/color.tmux

+ 2 - 0
fish/.config/fish/.gitignore

@@ -0,0 +1,2 @@
+fishd.*
+fish_history

+ 7 - 2
fish/.config/fish/config.fish

@@ -14,7 +14,7 @@ if test -d /usr/local/go
   set -x GOPATH (/usr/local/go/bin/go env GOPATH)
 end
 
-set user_paths ~/bin /usr/local/go/bin ~/.yarn/bin $GOPATH/bin ~/.local/bin ~/.cargo/bin /snap/bin
+set user_paths ~/bin /usr/local/go/bin ~/.yarn/bin $GOPATH/bin ~/.local/bin ~/.cargo/bin /snap/bin ~/.fzf/bin
 for path in $user_paths
   if test -d $path
     set -x fish_user_paths $fish_user_paths $path
@@ -22,7 +22,12 @@ for path in $user_paths
 end
 
 set -x SSH_AGENT_PID ""
-set -x SSH_AUTH_SOCK (gpgconf --list-dirs agent-ssh-socket)
+if test -S $HOME/.gnupg/S.gpg-agent
+  set -x SSH_AUTH_SOCK $HOME/.gnupg/S.gpg-agent
+  set -x GPG_SOCK $HOME/.gnupg/S.gpg-agent
+else
+  set -x SSH_AUTH_SOCK (gpgconf --list-dirs agent-ssh-socket)
+end
 
 set -x BBJ_USER $USER
 

+ 0 - 0
fish/.config/fish/fishd.00163c2857c7


Niektoré súbory nie sú zobrazené, pretože je v týchto rozdielových dátach zmenené mnoho súborov