Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
# Contents

* [[blogs]]: content related to blogs I've written
* [[presentations]]: presentation tools and materials
* [[terminal]]: all tools and shortcuts to setting up my preferred terminal

# License
[GPL-2.0](LICENSE)
File renamed without changes.
File renamed without changes.
7 changes: 7 additions & 0 deletions terminal/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# What is this?

# Installation

```
curl https://raw.githubusercontent.com/chuckwired/blogs/develop/terminal/install.sh | bash
```
18 changes: 18 additions & 0 deletions terminal/install.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
# clone repo
cd ~
git clone git@github.com:chuckwired/blogs --depth 1

# install resources
cd blogs/terminal
cp .pythonrc ~/



function install_resource {
FILENAME=$1
DEFAULT_LOC=$2

cp ${DEFAULT_LOC}/${FILENAME} ${DEFAULT_LOC}/${FILENAME}.bac
rm ${DEFAULT_LOC}/${FILENAME}
cp ~/blogs/terminal/${FILENAME} ${DEFAULT_LOC}/${FILENAME}
}