-
Notifications
You must be signed in to change notification settings - Fork 0
/
desktop.md.blade.php
115 lines (77 loc) · 2.91 KB
/
desktop.md.blade.php
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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
## Setting up Desktop configs for ArchStrike
### OpenBox
Install the package:
```
pacman -S archstrike-openbox-config
```
The configuration files go to `/usr/share/archstrike-openbox-config`
To change your openbox configuration, please run the following commands.
1) Remove the current openbox configuration files (not to be done if it's your first openbox install)
```bash
# lets backup first
mkdir -p ~/.config/backup
cp -a ~/.config/obmenu-generator ~/.config/openbox ~/.config/tint2 ~/.config/volumeicon ~/.config/backup
rm -rf ~/.config/obmenu-generator ~/.config/openbox ~/.config/tint2 ~/.config/volumeicon
```
You can return to your old configurations by copying the contents of the backup directory to ~/.config
2) Copy files
`cp -a /usr/share/archstrike-openbox-config/etc/* ~/.config/`
3) Add openbox to your .xinitrc
```bash
rm .xinitrc
echo 'exec openbox' > .xinitrc
```
4) Restart X or reboot
If you are using a display manager you'll need to change your default desktop environment/window manager to openbox
## i3
Install the package:
```
pacman -S archstrike-i3-config
```
The configuration files go to /usr/share/archstrike-i3-config
To change your i3 configuration, please run the following commands.
1) Remove the current i3 configuration files (not to be done if it's your first i3 install)
```bash
# lets backup first
mkdir -p ~/.config/backup
cp -a ~/.config/i3 ~/.config/i3status ~/.config/gtk-3.0 ~/.config/backup
rm -rf ~/.config/i3 ~/.config/i3status ~/.config/gtk-3.0
```
You can return to your old configurations by copying the contents of the backup directory to ~/.config
2) Copy files
`cp -a /usr/share/archstrike-i3-config/config/* ~/.config/`
3) Add i3 to your .xinitrc
```bash
rm .xinitrc
echo 'exec i3' > .xinitrc
```
4) Restart X or reboot
If you are using a display manager you'll need to change your default desktop environment/window manager to i3
## XFCE
Install the package:
```
pacman -S archstrike-xfce-config
```
The configuration files go to `/usr/share/archstrike-xfce-config`
To change your xfce configuration, please run the following commands.
1) Remove the current xfce configuration files (not to be done if it's your first xfce install)
```bash
# lets backup first
mkdir -p ~/.config/backup
cp -a ~/.config/desktop ~/.config/xfconf ~/.config/backup
rm -rf ~/.config/desktop ~/.config/xfconf
```
You can return to your old configurations by copying the contents of the backup directory to ~/.config
2) Copy files
```bash
cp -a /usr/share/archstrike-xfce-config/config/xfce4/* ~/.config/
cp -a /usr/share/archstrike-xfce-config/icons/* /usr/share/pixmaps/
cp -a /usr/share/archstrike-xfce-config/wallpapers/* /usr/share/backgrounds/xfce/
```
3) Add xfce4 to your .xinitrc
```bash
rm .xinitrc
echo 'exec xfce4' > .xinitrc
```
4) Restart X or reboot
If you are using a display manager you'll need to change your default desktop environment/window manager to xfce