diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..43f7d21 --- /dev/null +++ b/.gitignore @@ -0,0 +1,2 @@ +src/config/zsh/packages +*.swp \ No newline at end of file diff --git a/README.md b/README.md index 186798a..1afdec7 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,9 @@ # Welcome to ~/ -Welcome, these are my personal configuration dotfiles for pretty much everything I use on my Unix system. The life of this party is probably the AwesomeWM config. In case you're here for that, please head over to [RICE](https://github.com/Purhan/dotfiles/tree/master/RICE/) +Welcome, these are my personal configuration dotfiles for pretty much everything I use on my system. -![](https://raw.githubusercontent.com/Purhan/dotfiles/master/RICE/werewolf/Screenshot.png) -![](https://raw.githubusercontent.com/Purhan/dotfiles/master/RICE/redhound/Screenshot.png) +![](https://gist.githubusercontent.com/Purhan/56da0def1de841ec07b65137f8cd587c/raw/8e23310b8cc53451fe905d6ba903f5ea2b9bc16e/wm_configs.gif) + +# Setup Instructions + +Please head over to the [old](https://github.com/Purhan/dotfiles/tree/old) branch for setup +instructions. diff --git a/src/.config/rofi/config.rasi b/src/.config/rofi/config.rasi new file mode 100644 index 0000000..6f0afc7 --- /dev/null +++ b/src/.config/rofi/config.rasi @@ -0,0 +1,101 @@ +configuration { + show-icons: true; + disable-history: false; + fullscreen: false; + hide-scrollbar: true; + sidebar-mode: false; +} + +* { + al: #00000000; + bg: #000000cc; + se: #FFFFFF0d; + fg: #FFFFFFcc; + ac: #FFFFFFcc; + pt: #000000cc; +} + +window { + transparency: "real"; + background-color: @bg; + text-color: @fg; + border: 0px; + border-color: @ac; + width: 30%; + height: 100%; + location: west; + x-offset: 0; + y-offset: 0; + font: "Ubuntu Bold 11"; +} + +entry { + background-color: @al; + text-color: @fg; + placeholder-color: @bg; + expand: true; + horizontal-align: 0; + blink: true; + font: "Ubuntu Bold 18"; +} + +inputbar { + children: [ entry ]; + background-color: @bg; + text-color: @fg; + expand: false; + border: 0% 0% 0% 0%; + border-radius: 0px; + border-color: @ac; + margin: 0% 0% 0% 0%; + padding: 1.5%; +} + +listview { + padding: 1%; + background-color: @al; + columns: 1; + lines: 5; + spacing: 0%; + cycle: false; + dynamic: true; + layout: vertical; +} + +mainbox { + background-color: @al; + border: 0% 0% 0% 0%; + border-radius: 0% 0% 0% 0%; + border-color: @ac; + children: [ inputbar, listview ]; + spacing: 0%; + padding: 0%; +} + +element { + background-color: @al; + text-color: @fg; + orientation: vertical; + border-radius: 0%; + padding: 2% 0% 2% 1%; +} + +element-icon { + size: 64px; + border: 0px; +} + +element-text { + expand: true; + horizontal-align: 0.5; + vertical-align: 0.5; + margin: 0.5% 0.5% 0.5% 0.5%; +} + +element selected { + background-color: @se; + text-color: @fg; + border-color: @fg; + border: 0 0 0 5px solid; + padding: 15px; +} diff --git a/src/.config/zsh/.gitignore b/src/.config/zsh/.gitignore new file mode 100644 index 0000000..5a02d10 --- /dev/null +++ b/src/.config/zsh/.gitignore @@ -0,0 +1 @@ +plugins diff --git a/src/.vimrc b/src/.vimrc index 7434da2..dd152d8 100644 --- a/src/.vimrc +++ b/src/.vimrc @@ -18,7 +18,3 @@ augroup END set nocompatible filetype off -" PLUGIN PREFERENCES -nmap :NERDTreeToggle -let NERDTreeShowHidden=1 -