22 lines
637 B
Markdown
22 lines
637 B
Markdown
|
# SexiSway
|
||
|
## Install
|
||
|
``` bash
|
||
|
cd .config
|
||
|
git clone https://root-kit.ru/PIVODEVAT/SexiSway.git sway
|
||
|
```
|
||
|
|
||
|
# SexiSway-terminal (SimpleTerminal)
|
||
|
## Install
|
||
|
``` bash
|
||
|
mkdir ~/src
|
||
|
cd ~/src
|
||
|
git clone git://git.suckless.org/st
|
||
|
cd st
|
||
|
cp config.def.h config.h
|
||
|
sed -i 's/^static char \*font = .*;/static char \*font = "monospace:bold:size=16:antialias=true:autohint=true";/' config.h
|
||
|
sed -i 's/^\t"gray90", \/\* default foreground colour \*\//\t"#ffffff", \/\* default foreground colour \*\//' config.h
|
||
|
sed -i 's/^\t"black", \/\* default background colour \*\//\t"#242424", \/\* default background colour \*\//' config.h
|
||
|
make
|
||
|
sudo make install
|
||
|
```
|