From 9ca8960e3f07c22f9df0f9fb118f9361d1ad20ff Mon Sep 17 00:00:00 2001 From: Daniel Flanagan Date: Thu, 2 Mar 2017 18:44:38 -0600 Subject: [PATCH] add bin dir --- bin/wsteam | 4 ++++ shell/paths | 1 + 2 files changed, 5 insertions(+) create mode 100755 bin/wsteam diff --git a/bin/wsteam b/bin/wsteam new file mode 100755 index 0000000..ea74977 --- /dev/null +++ b/bin/wsteam @@ -0,0 +1,4 @@ +#!/usr/bin/env bash + +WIN_STEAM="/storage/games/wine/Program Files (x86)/Steam/Steam.exe" +wine "$WIN_STEAM" diff --git a/shell/paths b/shell/paths index 34614e5..993c27e 100644 --- a/shell/paths +++ b/shell/paths @@ -4,6 +4,7 @@ export GOPATH="$HOME/.go" # PATH=$PATH:$APPENDED_PATH PATH=$PATH:$GOPATH/bin +PATH=$PATH:$DOTFILES_PATH/bin if command -v ruby >/dev/null 2>&1; then PATH="$(ruby -e 'print Gem.user_dir')/bin:$PATH"