-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathupdate.sh
More file actions
74 lines (60 loc) · 1.79 KB
/
update.sh
File metadata and controls
74 lines (60 loc) · 1.79 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
#!/bin/bash
DOT=~/myI3Config
DOTCONF=$DOT/.config
I3WM=~/.config/i3
GTK3=~/.config/gtk-3.0
RANG=~/.config/ranger
TERM=~/.config/elokab
QOB=~/.config/qobbar
echo Home files
cp -f ~/.Xresources $DOT/.Xresources
cp -f ~/.zshrc $DOT/.zshrc
cp -f ~/.profile $DOT/.profile
cp -f ~/.gtkrc-2.0 $DOT/.gtkrc-2.0
echo Mpd
mkdir -p $DOT/.mpd
cp -f ~/.mpd/mpd.conf $DOT/.mpd/mpd.conf
echo Bin files
mkdir -p $DOT/.local/bin
cp -f ~/.local/bin/* $DOT/.local/bin/
echo Ncmpcpp
mkdir -p $DOT/.ncmpcpp
cp -f ~/.ncmpcpp/config $DOT/.ncmpcpp/config
echo i3wm
mkdir -p $DOTCONF/i3
cp -f $I3WM/config $DOTCONF/i3/config
cp -f $I3WM/i3blocks.conf $DOTCONF/i3/i3blocks.conf
cp -f $I3WM/i3status.conf $DOTCONF/i3/i3status.conf
echo Gtk3
mkdir -p $DOTCONF/gtk-3.0
cp -f $GTK3/settings.ini $DOTCONF/gtk-3.0/settings.ini
cp -f $GTK3/gtk.css $DOTCONF/gtk-3.0/gtk.css
echo Ranger
mkdir -p $DOTCONF/ranger/plugins/ranger_devicons
cp -f $RANG/rc.conf $DOTCONF/ranger/rc.conf
cp -f $RANG/scope.sh $DOTCONF/ranger/scope.sh
cp -f $RANG/plugins/ranger_devicons/devicons.py $DOTCONF/ranger/plugins/ranger_devicons/devicons.py
cp -f $RANG/plugins/ranger_devicons/devicons_linemode.py $DOTCONF/ranger/plugins/ranger_devicons/devicons_linemode.py
echo Elokab-terminal
mkdir -p $DOTCONF/elokab
cp -f $TERM/elokab-terminal.conf $DOT/.config/elokab
echo Qobbar
mkdir -p $DOTCONF/qobbar
cp -f $QOB/greenbar.conf $DOT/.config/qobbar
echo Git Add
git add .mpd/*
git add .ncmpcpp/*
git add .local/bin/*
git add .config/i3/*
git add .config/gtk-3.0/*
git add .config/ranger/*
git add .config/ranger/plugins/ranger_devicons/*
git add .config/elokab/*
git add .config/qobbar/*
git add .Xresources
git add .gtkrc-2.0
git add .profile
git add .zshrc
git add update.sh
#git commit "last dotefiles"
#git push https://github.com/zakariakov/myI3Config.gi