This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="utf-8"?> | |
<resources> | |
<style name="Theme.OptionalActionBar" parent="@android:style/Theme.NoTitleBar"> | |
<item name="android:windowNoTitle">true</item> | |
<item name="android:windowActionBar">false</item> | |
</style> | |
</resources> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="utf-8"?> | |
<resources> | |
<style name="Theme.OptionalActionBar" parent="@android:style/Theme.NoTitleBar"> | |
<item name="android:windowNoTitle">false</item> | |
<item name="android:windowActionBar">true</item> | |
</style> | |
</resources> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$ mkdir ~/dotfiles | |
$ mv ~/.bashrc ~/dotfiles/.bashrc | |
$ mv ~/.vimrc ~/dotfiles/.vimrc | |
$ mv ~/vim ~/dotfiles/vim |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
########## Variables | |
dir=~/dotfiles # dotfiles directory | |
olddir=~/dotfiles_old # old dotfiles backup directory | |
files=".bashrc .vimrc .vim" # list of files/folders to symlink in homedir | |
########## | |
# create dotfiles_old in homedir | |
echo "Creating $olddir for backup of any existing dotfiles in ~" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$ chmod +x bootstrap.sh |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$ ./bootstrap.sh | |
Creating /home/placona/dotfiles_old for backup of any existing dotfiles in ~ | |
...done | |
Changing to the /home/placona/dotfiles directory | |
...done | |
Moving any existing dotfiles from ~ to /home/placona/dotfiles_old | |
Creating symlink to .bashrc in home directory. | |
Moving any existing dotfiles from ~ to /home/placona/dotfiles_old | |
Creating symlink to .vimrc in home directory. | |
Moving any existing dotfiles from ~ to /home/placona/dotfiles_old |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$ cd ~/dotfiles | |
$ git init | |
$ git add . | |
$ git commit -m 'Initial commit of my dotfiles' | |
$ git remote add origin [email protected]:yourgithubusername/dotfiles.git | |
$ git push origin master |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$ cd ~ | |
$ git clone https://github.com/yourgithubuserrname/dotfiles.git | |
$ ./bootstrap.sh |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$ af login | |
$ af update railo |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"errors":{ | |
"name":[ | |
"Name must not be blank" | |
], | |
"text":[ | |
"Text must not be blank" | |
] | |
} | |
} |