Merge branch 'master' of github:realorangeone/dotfiles
This commit is contained in:
commit
4f7c4f51a8
4 changed files with 1 additions and 30 deletions
|
@ -1,20 +0,0 @@
|
||||||
#!/usr/bin/env python3
|
|
||||||
import json
|
|
||||||
import sys
|
|
||||||
import os
|
|
||||||
|
|
||||||
ARGS = sys.argv[1:]
|
|
||||||
|
|
||||||
if not os.isatty(0):
|
|
||||||
data = sys.stdin.read()
|
|
||||||
else:
|
|
||||||
with open(ARGS.pop(0)) as f:
|
|
||||||
data = '\n'.join(f.readlines())
|
|
||||||
|
|
||||||
parsed_data = json.dumps(json.loads(data), indent=2, sort_keys=True)
|
|
||||||
|
|
||||||
if ARGS:
|
|
||||||
with open(ARGS[0], 'w') as f:
|
|
||||||
f.write(parsed_data)
|
|
||||||
else:
|
|
||||||
sys.stdout.write(parsed_data)
|
|
|
@ -96,7 +96,7 @@ Include = /etc/pacman.d/antergos-mirrorlist
|
||||||
Server = https://download.sublimetext.com/arch/stable/x86_64
|
Server = https://download.sublimetext.com/arch/stable/x86_64
|
||||||
|
|
||||||
[archstrike]
|
[archstrike]
|
||||||
Server = https://mirror.archstrike.org/$arch/$repo
|
Server = https://www.mirrorservice.org/sites/mirror.archstrike.org/$arch/$repo
|
||||||
|
|
||||||
[quarry]
|
[quarry]
|
||||||
Server = http://pkgbuild.com/~anatolik/quarry/x86_64/
|
Server = http://pkgbuild.com/~anatolik/quarry/x86_64/
|
||||||
|
|
|
@ -3,7 +3,6 @@
|
||||||
export PATH=${PATH}:${ANDROID_HOME}/tools
|
export PATH=${PATH}:${ANDROID_HOME}/tools
|
||||||
export PATH=${PATH}:${ANDROID_HOME}/platform-tools
|
export PATH=${PATH}:${ANDROID_HOME}/platform-tools
|
||||||
export PATH=${PATH}:/opt/genymobile/genymotion
|
export PATH=${PATH}:/opt/genymobile/genymotion
|
||||||
export PATH=${PATH}:${HOME}/.bin
|
|
||||||
|
|
||||||
export DOTFILES=${HOME}/.dotfiles
|
export DOTFILES=${HOME}/.dotfiles
|
||||||
|
|
||||||
|
|
|
@ -7,14 +7,6 @@
|
||||||
backup: true
|
backup: true
|
||||||
trim_blocks: false
|
trim_blocks: false
|
||||||
|
|
||||||
- copy:
|
|
||||||
src: ./files/bin
|
|
||||||
dest: "{{ home }}/.bin"
|
|
||||||
mode: 0755
|
|
||||||
owner: "{{ user }}"
|
|
||||||
group: users
|
|
||||||
directory_mode: true
|
|
||||||
|
|
||||||
- template:
|
- template:
|
||||||
src: ./files/global-environment
|
src: ./files/global-environment
|
||||||
dest: /etc/environment
|
dest: /etc/environment
|
||||||
|
|
Loading…
Reference in a new issue