From 4f3a929be02157ce4d820100d77ef690f8555f23 Mon Sep 17 00:00:00 2001 From: Smirnov Olexandr Date: Tue, 8 Dec 2020 17:22:12 +0200 Subject: [PATCH] :fire: Update --- Makefile | 33 ----------------------------- README.md | 46 +++++++++++++++++------------------------ script/manjaro-fetch.sh | 35 ------------------------------- script/mfet.sh | 23 --------------------- 4 files changed, 19 insertions(+), 118 deletions(-) delete mode 100644 Makefile delete mode 100755 script/manjaro-fetch.sh delete mode 100644 script/mfet.sh diff --git a/Makefile b/Makefile deleted file mode 100644 index 4e1a815..0000000 --- a/Makefile +++ /dev/null @@ -1,33 +0,0 @@ -install_config: - cp ./bashrc ~/.bashrc - cp ./gitconfig ~/.gitconfig - cp ./gitignore_global ~/.gitignore_global - cp ./taskrc ~/.taskrc - cp ./vimrc ~/.vimrc - cp ./zshrc ~/.zshrc - cp ./conkyrc ~/.conkyrc - cp ./config/picom.conf ~/.config/picom.conf - cp ./config/redshift.conf ~/.config/redshift.conf - cp -r ./config/berry/ ~/.config/ - cp -r ./config/dunst/ ~/.config/ - cp -r ./config/fish/ ~/.config/ - cp -r ./config/htop/ ~/.config/ - cp -r ./config/i3/ ~/.config/ - cp -r ./config/kitty/ ~/.config - cp -r ./config/neofetch/ ~/.config/ - cp -r ./config/polybar/ ~/.config/ - cp -r ./config/qutebrowser/ ~/.config/ - cp -r ./config/ranger ~/.config/ - cp -r ./config/rofi/ ~/.config/ - -install_script: - mkdir ~/.script/dmenu -p - cp ./script/change-shell.sh ~/.script/change-shell.sh - cp ./script/manjaro-fetch.sh ~/.script/manjaro-fetch.sh - cp ./script/snap-remove-old-pkg.sh ~/.script/snap-remove-old-pkg.sh - cp ./script/walpapper-changer.sh ~/.script/walpapper-changer.sh - cp ./script/dmenu/dmenu-power.sh ~/.script/dmenu/dmenu-power.sh - cp ./script/dmenu/dmenu-config-edit.sh ~/.script/dmenu/dmenu-config-edit.sh - cp ./scripts/dmenu/dmenu-sysmon.sh ~/.script/dmenu/dmenu-sysmon.sh - -install: install_config install_script diff --git a/README.md b/README.md index a19676f..14d03b9 100644 --- a/README.md +++ b/README.md @@ -1,32 +1,24 @@ -

~ dotfiles ~

+

dotfiles

-I use **rcm** for managment dotfiles +#### System configuration +- `OS` Manjaro +- `WM` Openbox, berry, i3-gaps, qtile, spectrwm +- `Shell` zsh, fish +- `Editor` nvim +- `Browser` firefox, qutebowser, chromium +- `Font` Jatbrains Mono +- `Icon font` FontAwesome5 +- `Launcher` dmenu, rofi -**Preparing for installation** + +#### Install configs +Since i use **rcm** set it ~~~bash -git clone https://github.com/Smirnov-O/dotfiles - -sudo pacman -S dunst rofi picom nitrogen redshift task kitty ranger htop zsh git neovim neofetch scrot yay zsh \ -ttf-font-awesome ttf-jetbrains-mono ttf-hack -yay -S ttf-weather-icons +yay -S rcm ~~~ -### Packages -| Name | Description | -| ------------------------------------------------------------------------ | ----------------- | -| `dunst` | Notify manager | -| `rofi` | Program loncher | -| `picom` | Compositor | -| `qutebrowser` | Browser | -| `nitrogen` | Setting wallpaper | -| `kitty` | Terminal | -| `ranger` | File manager | -| `htop` | System motitor | -| `yay` | AUR helper | -| `redshift` | Night light | -| `zsh` | Shell | -| `task` | Task manager | -| `ttf-font-awesome` `ttf-jetbrains-mono` `ttf-weather-icons` `ttf-hack` | Font | -| `arc-gtk-theme` | GTK theme | -| `papirus-icon-theme` | Icon theme | -| `scrot` | Screenshot tool | +And install configs +~~~bash +git clone https://github.com/Smirnov-O/dotfiles .dotfiles +rcup +~~~ diff --git a/script/manjaro-fetch.sh b/script/manjaro-fetch.sh deleted file mode 100755 index ee71eb4..0000000 --- a/script/manjaro-fetch.sh +++ /dev/null @@ -1,35 +0,0 @@ -host="$(hostname)" -os='Manjaro' -kernel="$(uname -r)" -uptime="$(uptime -p | sed 's/up //')" -packages="$(pacman -Q | wc -l)" -shell="$(basename "$SHELL")" -ui="$(basename ${XDG_CURRENT_DESKTOP})" - -if [ -x "$(command -v tput)" ]; then - bold="$(tput bold)" - black="$(tput setaf 0)" - red="$(tput setaf 1)" - green="$(tput setaf 2)" - yellow="$(tput setaf 3)" - blue="$(tput setaf 4)" - magenta="$(tput setaf 5)" - cyan="$(tput setaf 6)" - white="$(tput setaf 7)" - reset="$(tput sgr0)" -fi - -lc="${reset}${bold}${green}" -nc="${reset}${bold}${green}" -ic="${reset}" -c0="${reset}${green}" - -cat <