Refactor & dir structure fix

lightmode
E. Almqvist 4 years ago
parent 603426687c
commit c8a1e7bd71
  1. 0
      .config/conky/conky.conf
  2. 0
      .config/conky/launch.sh
  3. 0
      .config/conky/todo.conf
  4. 0
      .config/dunst/dunstrc
  5. 0
      .config/dunst/launch
  6. 0
      .config/neofetch/config.conf
  7. 0
      .config/neofetch/icon.png
  8. 0
      .config/nvim/.netrwhist
  9. 0
      .config/nvim/autoload/plug.vim
  10. 0
      .config/nvim/colors/111015.vim
  11. 0
      .config/nvim/colors/Greymatters.vim
  12. 0
      .config/nvim/init.vim
  13. 0
      .config/picom/config
  14. 0
      .config/picom/launch
  15. 0
      .config/picom/picom.conf
  16. 0
      .config/polybar/config
  17. 0
      .config/polybar/launch
  18. 0
      .config/polybar/scripts/check-all-updates.sh
  19. 0
      .config/polybar/scripts/cmus.sh
  20. 0
      .config/polybar/scripts/pavolume.sh
  21. 0
      .config/polybar/scripts/updates.sh
  22. 0
      .config/ranger/rc.conf
  23. 0
      .config/rofi/config.rasi
  24. 0
      .config/rofi/dunst.rasi
  25. 0
      .config/rofi/onedark.rasi
  26. 2
      .gitignore
  27. 2
      .zshrc
  28. 20
      copydots.sh
  29. 8
      zsh-themes/minimal.zsh-theme

Before

Width:  |  Height:  |  Size: 24 KiB

After

Width:  |  Height:  |  Size: 24 KiB

2
.gitignore vendored

@ -1 +1 @@
nvim/plugged/
.config/nvim/plugged/

@ -8,7 +8,7 @@ export ZSH="/home/elal/.oh-my-zsh"
# load a random theme each time oh-my-zsh is loaded, in which case,
# to know which specific one was loaded, run: echo $RANDOM_THEME
# See https://github.com/ohmyzsh/ohmyzsh/wiki/Themes
ZSH_THEME="almtech"
ZSH_THEME="minimal"
# Good themes:
# afowler
# bira

@ -1,16 +1,18 @@
#!/bin/bash
repoPath=$HOME/Projects/linux/dotfiles
cfgPath=$repoPath/.config
# All those things
cp -r $HOME/.config/rofi $repoPath
cp -r $HOME/.config/conky $repoPath
cp -r $HOME/.config/polybar $repoPath
cp -r $HOME/.config/neofetch $repoPath
cp -r $HOME/.config/ranger $repoPath
cp -r $HOME/.config/dunst $repoPath
cp -r $HOME/.config/picom $repoPath
cp -r $HOME/.config/nvim $repoPath
cp -r $HOME/.config/rofi $cfgPath
cp -r $HOME/.config/conky $cfgPath
cp -r $HOME/.config/polybar $cfgPath
cp -r $HOME/.config/neofetch $cfgPath
cp -r $HOME/.config/ranger $cfgPath
cp -r $HOME/.config/dunst $cfgPath
cp -r $HOME/.config/picom $cfgPath
cp -r $HOME/.config/nvim $cfgPath
rm -rf $cfgPath/nvim/plugged
# Wallpaper
rm $repoPath/wallpaper.jpg; cp $HOME/.wallpaper.jpg $repoPath/wallpaper.jpg
@ -25,5 +27,3 @@ cp $HOME/.Xresources $repoPath/.Xresources
# Vim
cp $HOME/.vimrc $repoPath/vimrc
# ST-luke
cp $HOME/Projects/linux/st-luke/config.h $repoPath/luke-st_config.h

@ -0,0 +1,8 @@
function prompt_char {
if [ $UID -eq 0 ]; then echo "#"; else echo $; fi
}
PROMPT='%{$reset_color%}%{$fg_bold[white]%}$(prompt_char)$(git_prompt_info)> %{$reset_color%}'
ZSH_THEME_GIT_PROMPT_PREFIX=" ("
ZSH_THEME_GIT_PROMPT_SUFFIX=")"
Loading…
Cancel
Save