mirror of
https://github.com/purhan/dotfiles.git
synced 2025-12-26 14:24:58 +08:00
complete history cleanup
remove unnecessary files and their history to reduce repo size add new readme
This commit is contained in:
parent
eeda2f9509
commit
15609609cf
5 changed files with 111 additions and 7 deletions
2
.gitignore
vendored
Normal file
2
.gitignore
vendored
Normal file
|
|
@ -0,0 +1,2 @@
|
|||
src/config/zsh/packages
|
||||
*.swp
|
||||
10
README.md
10
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.
|
||||
|
||||

|
||||

|
||||

|
||||
|
||||
# Setup Instructions
|
||||
|
||||
Please head over to the [old](https://github.com/Purhan/dotfiles/tree/old) branch for setup
|
||||
instructions.
|
||||
|
|
|
|||
101
src/.config/rofi/config.rasi
Normal file
101
src/.config/rofi/config.rasi
Normal file
|
|
@ -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;
|
||||
}
|
||||
1
src/.config/zsh/.gitignore
vendored
Normal file
1
src/.config/zsh/.gitignore
vendored
Normal file
|
|
@ -0,0 +1 @@
|
|||
plugins
|
||||
|
|
@ -18,7 +18,3 @@ augroup END
|
|||
set nocompatible
|
||||
filetype off
|
||||
|
||||
" PLUGIN PREFERENCES
|
||||
nmap <C-e> :NERDTreeToggle<CR>
|
||||
let NERDTreeShowHidden=1
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue