Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/dhsathiya/dotfiles
Backup kinda things !
https://github.com/dhsathiya/dotfiles
Last synced: 5 days ago
JSON representation
Backup kinda things !
- Host: GitHub
- URL: https://github.com/dhsathiya/dotfiles
- Owner: dhsathiya
- Created: 2019-05-16T18:25:11.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2024-02-05T07:30:53.000Z (10 months ago)
- Last Synced: 2024-10-19T06:46:22.549Z (about 1 month ago)
- Language: Vim Script
- Size: 95.7 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# dotfiles
Backup kinda things !## GNOME Extensions
```
[email protected] desktop-icons@csoriano [email protected] [email protected] [email protected]
```My script to install oh-my-zsh, tmux and tmux.conf [WIP - Making it completely GitHub base]
```shell
#!/bin/bash
clear
echo "---------------------------"
echo "| Updating APT list |"
echo "---------------------------"
sudo apt update
clear
echo "---------------------------"
echo "| Installing zsh |"
echo "---------------------------"
sudo apt install zsh -y
clear
echo "---------------------------"
echo "| Installing tmux |"
echo "---------------------------"
sudo apt install tmux -y
clear
echo "---------------------------"
echo "| Installing oh-my-zsh |"
echo "---------------------------"
sh -c "$(curl -fsSL https://raw.github.com/robbyrussell/oh-my-zsh/master/tools/install.sh)"
clear
echo "-------------------------------------------------------------"
echo "| Do you want Devarshi's custom tmux conf and zsh theme? |"
echo "-------------------------------------------------------------"
read -p "Do you want to install Devarshi's custom tmux conf and zsh theme? y/n:" customconf
if [ "$customconf" = "y" ] || [ "$customconf" = "yes" ]; then
clear
echo "-----------------------------------"
echo "| adding Devarshi's custom conf |"
echo "-----------------------------------"
sed -i 's/robbyrussell/bira/g' .zshrc
wget -qO .tmux.conf devarshi.xyz/setup/tmuxconf
clear
echo "----------------------"
echo "| You're all set |"
echo "----------------------"
elif [ "$customconf" = "n" ] || [ "$customconf" = "no" ]; then
clear
echo "----------------------"
echo "| You're all set |"
echo "----------------------"
else
clear
echo "---------------------------------------------------------"
echo "| Invalid option selected so not adding custom conf |"
echo "---------------------------------------------------------"
fi
zsh
rm ./setup
```
web based command (Nope, I don't have verification methods implemented yet.)
```shell
wget -qO setup devarshi.xyz/setup && sudo bash setup
```vim color scheme : https://github.com/sjl/badwolf