Skip to content

Commit

Permalink
updated readme.md
Browse files Browse the repository at this point in the history
  • Loading branch information
themrinalsinha committed Sep 6, 2024
1 parent 0b21420 commit 5343b34
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 18 deletions.
1 change: 1 addition & 0 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ jobs:
- name: Setting up SSH Key
run: |
mkdir -p ~/.ssh/
eval "$(ssh-agent -s)"
echo "${{ secrets.SRV_PVT_KEY }}" > ~/.ssh/id_rsa
chmod 600 ~/.ssh/id_rsa
ssh-keyscan ${{ secrets.DL_HOST }} >> ~/.ssh/known_hosts
Expand Down
36 changes: 18 additions & 18 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,42 +6,42 @@ Repo containing helper shell scripts to install all the necessary packages while

## Documentation
- **`bensh.sh`** System benchmarking (for both desktop or server)
```
$ wget -O - https://dl.mrinal.xyz/x/bench.sh | bash
```console
wget -O - https://dl.mrinal.xyz/x/bench.sh | bash
```

- **`desktop/setup.sh`** Desktop setup script
```shell
$ wget -O - https://dl.mrinal.xyz/x/desktop/setup.sh | bash
```console
wget -O - https://dl.mrinal.xyz/x/desktop/setup.sh | bash
```
- List of packages it installs
```
git, zip, zsh,gcc,htop,make,unzip,libc-dev,mitmproxy,libffi-dev, terminator, python3-pip, python3-dev, dconf-editor, gnome-tweaks, libxml2-utils, build-essential, apt-transport-https, indicator-multiload, gnome-shell-extensions
```
- Setting up the default terminal
```shell
$ sudo update-alternatives --config x-terminal-emulator
```console
sudo update-alternatives --config x-terminal-emulator
```
- Setting up custom `zsh` prompt
```shell
$ wget https://github.com/robbyrussell/oh-my-zsh/raw/master/tools/install.sh -O - | zsh
```console
wget https://github.com/robbyrussell/oh-my-zsh/raw/master/tools/install.sh -O - | zsh
```
Enabling `zsh` shell as default
```shell
$ chsh
$ /bin/zsh # enter in the prompt
```console
chsh
```
then, /bin/zsh # enter in the prompt
- Installs flat icon theme from [snwh](https://launchpad.net/~snwh/+archive/ubuntu/ppa?field.series_filter=bionic)
- Run docker without `sudo`
```shell
$ sudo usermod -aG docker ${USER}
$ su - ${USER}
$ id -nG
$ sudo usermod -aG docker ${USER}
```console
sudo usermod -aG docker ${USER}
su - ${USER}
id -nG
sudo usermod -aG docker ${USER}
```
- **`server/setup.sh`** Server setup script
```shell
$ wget -O - https://dl.mrinal.xyz/x/server/setup.sh | bash
```console
wget -O - https://dl.mrinal.xyz/x/server/setup.sh | bash
```
- List of packages it installs on server
```
Expand Down

0 comments on commit 5343b34

Please sign in to comment.