Reorginazation after switching to GNU Stow for organizing dotfiles

This commit is contained in:
2017-04-05 12:11:27 -04:00
parent e0445597d6
commit 7c52136278
205 changed files with 36928 additions and 82 deletions

14
kwm/.kwm/iterm Executable file
View File

@@ -0,0 +1,14 @@
#!/usr/bin/env bash
if [ $# -eq 0 ]; then
osascript <<< "
tell application \"iTerm2\"
create window with default profile
end tell
"
else
osascript <<< "
tell application \"iTerm2\"
create window with default profile command \"$*\"
end tell
"
fi