Merge branch 'dev'
This commit is contained in:
commit
a9a7f6b8d5
11 changed files with 821 additions and 177 deletions
|
|
@ -7,13 +7,14 @@
|
||||||
## Dependencies
|
## Dependencies
|
||||||
|
|
||||||
1. git
|
1. git
|
||||||
2. paru
|
2. paru (optional)
|
||||||
3. picom
|
3. picom
|
||||||
4. tmux
|
4. tmux
|
||||||
5. vim
|
5. vim
|
||||||
6. xorg
|
6. xorg
|
||||||
7. zsh
|
7. zsh
|
||||||
8. stow
|
8. stow
|
||||||
|
9. fastcompmgr (optional)
|
||||||
|
|
||||||
## Why are your dotfiles special?
|
## Why are your dotfiles special?
|
||||||
|
|
||||||
|
|
@ -32,3 +33,7 @@
|
||||||
|
|
||||||
- This is primarily for dwm, dmenu, dwmblocks, st, etc.
|
- This is primarily for dwm, dmenu, dwmblocks, st, etc.
|
||||||
- Also works for BSPWM and KDE with some adjustments
|
- Also works for BSPWM and KDE with some adjustments
|
||||||
|
|
||||||
|
## Updates:
|
||||||
|
|
||||||
|
- Replaced `picom` with `fastcompmgr` will eventually remove it from this repo all together
|
||||||
|
|
|
||||||
166
rofi/.config/rofi/colors-rofi-dark.rasi
Normal file
166
rofi/.config/rofi/colors-rofi-dark.rasi
Normal file
|
|
@ -0,0 +1,166 @@
|
||||||
|
* {
|
||||||
|
active-background: #395E62;
|
||||||
|
active-foreground: @foreground;
|
||||||
|
normal-background: @background;
|
||||||
|
normal-foreground: @foreground;
|
||||||
|
urgent-background: #314C52;
|
||||||
|
urgent-foreground: @foreground;
|
||||||
|
|
||||||
|
alternate-active-background: @background;
|
||||||
|
alternate-active-foreground: @foreground;
|
||||||
|
alternate-normal-background: @background;
|
||||||
|
alternate-normal-foreground: @foreground;
|
||||||
|
alternate-urgent-background: @background;
|
||||||
|
alternate-urgent-foreground: @foreground;
|
||||||
|
|
||||||
|
selected-active-background: #314C52;
|
||||||
|
selected-active-foreground: @foreground;
|
||||||
|
selected-normal-background: #395E62;
|
||||||
|
selected-normal-foreground: @foreground;
|
||||||
|
selected-urgent-background: #4E5259;
|
||||||
|
selected-urgent-foreground: @foreground;
|
||||||
|
|
||||||
|
background-color: @background;
|
||||||
|
background: #1b1e2c;
|
||||||
|
foreground: #bfbcb7;
|
||||||
|
border-color: @background;
|
||||||
|
spacing: 2;
|
||||||
|
}
|
||||||
|
|
||||||
|
#window {
|
||||||
|
background-color: @background;
|
||||||
|
border: 0;
|
||||||
|
padding: 2.5ch;
|
||||||
|
}
|
||||||
|
|
||||||
|
#mainbox {
|
||||||
|
border: 0;
|
||||||
|
padding: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
#message {
|
||||||
|
border: 2px 0px 0px;
|
||||||
|
border-color: @border-color;
|
||||||
|
padding: 1px;
|
||||||
|
}
|
||||||
|
|
||||||
|
#textbox {
|
||||||
|
text-color: @foreground;
|
||||||
|
}
|
||||||
|
|
||||||
|
#inputbar {
|
||||||
|
children: [ prompt,textbox-prompt-colon,entry,case-indicator ];
|
||||||
|
}
|
||||||
|
|
||||||
|
#textbox-prompt-colon {
|
||||||
|
expand: false;
|
||||||
|
str: ":";
|
||||||
|
margin: 0px 0.3em 0em 0em;
|
||||||
|
text-color: @normal-foreground;
|
||||||
|
}
|
||||||
|
|
||||||
|
#listview {
|
||||||
|
fixed-height: 0;
|
||||||
|
border: 2px 0px 0px;
|
||||||
|
border-color: @border-color;
|
||||||
|
spacing: 2px;
|
||||||
|
scrollbar: true;
|
||||||
|
padding: 2px 0px 0px;
|
||||||
|
}
|
||||||
|
|
||||||
|
#element {
|
||||||
|
border: 0;
|
||||||
|
padding: 1px;
|
||||||
|
}
|
||||||
|
|
||||||
|
#element-text, element-icon {
|
||||||
|
background-color: inherit;
|
||||||
|
text-color: inherit;
|
||||||
|
}
|
||||||
|
|
||||||
|
#element.normal.normal {
|
||||||
|
background-color: @normal-background;
|
||||||
|
text-color: @normal-foreground;
|
||||||
|
}
|
||||||
|
|
||||||
|
#element.normal.urgent {
|
||||||
|
background-color: @urgent-background;
|
||||||
|
text-color: @urgent-foreground;
|
||||||
|
}
|
||||||
|
|
||||||
|
#element.normal.active {
|
||||||
|
background-color: @active-background;
|
||||||
|
text-color: @active-foreground;
|
||||||
|
}
|
||||||
|
|
||||||
|
#element.selected.normal {
|
||||||
|
background-color: @selected-normal-background;
|
||||||
|
text-color: @selected-normal-foreground;
|
||||||
|
}
|
||||||
|
|
||||||
|
#element.selected.urgent {
|
||||||
|
background-color: @selected-urgent-background;
|
||||||
|
text-color: @selected-urgent-foreground;
|
||||||
|
}
|
||||||
|
|
||||||
|
#element.selected.active {
|
||||||
|
background-color: @selected-active-background;
|
||||||
|
text-color: @selected-active-foreground;
|
||||||
|
}
|
||||||
|
|
||||||
|
#element.alternate.normal {
|
||||||
|
background-color: @alternate-normal-background;
|
||||||
|
text-color: @alternate-normal-foreground;
|
||||||
|
}
|
||||||
|
|
||||||
|
#element.alternate.urgent {
|
||||||
|
background-color: @alternate-urgent-background;
|
||||||
|
text-color: @alternate-urgent-foreground;
|
||||||
|
}
|
||||||
|
|
||||||
|
#element.alternate.active {
|
||||||
|
background-color: @alternate-active-background;
|
||||||
|
text-color: @alternate-active-foreground;
|
||||||
|
}
|
||||||
|
|
||||||
|
#scrollbar {
|
||||||
|
width: 4px;
|
||||||
|
border: 0;
|
||||||
|
handle-width: 8px;
|
||||||
|
padding: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
#sidebar {
|
||||||
|
border: 2px 0px 0px;
|
||||||
|
border-color: @border-color;
|
||||||
|
}
|
||||||
|
|
||||||
|
#button {
|
||||||
|
text-color: @normal-foreground;
|
||||||
|
}
|
||||||
|
|
||||||
|
#button.selected {
|
||||||
|
background-color: @selected-normal-background;
|
||||||
|
text-color: @selected-normal-foreground;
|
||||||
|
}
|
||||||
|
|
||||||
|
#inputbar {
|
||||||
|
spacing: 0;
|
||||||
|
text-color: @normal-foreground;
|
||||||
|
padding: 1px;
|
||||||
|
}
|
||||||
|
|
||||||
|
#case-indicator {
|
||||||
|
spacing: 0;
|
||||||
|
text-color: @normal-foreground;
|
||||||
|
}
|
||||||
|
|
||||||
|
#entry {
|
||||||
|
spacing: 0;
|
||||||
|
text-color: @normal-foreground;
|
||||||
|
}
|
||||||
|
|
||||||
|
#prompt {
|
||||||
|
spacing: 0;
|
||||||
|
text-color: @normal-foreground;
|
||||||
|
}
|
||||||
5
rofi/.config/rofi/config.rasi
Normal file
5
rofi/.config/rofi/config.rasi
Normal file
|
|
@ -0,0 +1,5 @@
|
||||||
|
@theme "colors-rofi-dark"
|
||||||
|
configuration {
|
||||||
|
font: "Source Code Pro 16";
|
||||||
|
}
|
||||||
|
element-icon { size: 3.75ch ; }
|
||||||
166
rofi/.config/rofi/nordy.rasi
Normal file
166
rofi/.config/rofi/nordy.rasi
Normal file
|
|
@ -0,0 +1,166 @@
|
||||||
|
* {
|
||||||
|
active-background: #BE626B;
|
||||||
|
active-foreground: @foreground;
|
||||||
|
normal-background: @background;
|
||||||
|
normal-foreground: @foreground;
|
||||||
|
urgent-background: #AA5A63;
|
||||||
|
urgent-foreground: @foreground;
|
||||||
|
|
||||||
|
alternate-active-background: @background;
|
||||||
|
alternate-active-foreground: @foreground;
|
||||||
|
alternate-normal-background: @background;
|
||||||
|
alternate-normal-foreground: @foreground;
|
||||||
|
alternate-urgent-background: @background;
|
||||||
|
alternate-urgent-foreground: @foreground;
|
||||||
|
|
||||||
|
selected-active-background: #AA5A63;
|
||||||
|
selected-active-foreground: @foreground;
|
||||||
|
selected-normal-background: #BE626B;
|
||||||
|
selected-normal-foreground: @foreground;
|
||||||
|
selected-urgent-background: #C0646B;
|
||||||
|
selected-urgent-foreground: @foreground;
|
||||||
|
|
||||||
|
background-color: @background;
|
||||||
|
background: #2E3440;
|
||||||
|
foreground: #c2b1c0;
|
||||||
|
border-color: @background;
|
||||||
|
spacing: 2;
|
||||||
|
}
|
||||||
|
|
||||||
|
#window {
|
||||||
|
background-color: @background;
|
||||||
|
border: 0;
|
||||||
|
padding: 2.5ch;
|
||||||
|
}
|
||||||
|
|
||||||
|
#mainbox {
|
||||||
|
border: 0;
|
||||||
|
padding: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
#message {
|
||||||
|
border: 2px 0px 0px;
|
||||||
|
border-color: @border-color;
|
||||||
|
padding: 1px;
|
||||||
|
}
|
||||||
|
|
||||||
|
#textbox {
|
||||||
|
text-color: @foreground;
|
||||||
|
}
|
||||||
|
|
||||||
|
#inputbar {
|
||||||
|
children: [ prompt,textbox-prompt-colon,entry,case-indicator ];
|
||||||
|
}
|
||||||
|
|
||||||
|
#textbox-prompt-colon {
|
||||||
|
expand: false;
|
||||||
|
str: ":";
|
||||||
|
margin: 0px 0.3em 0em 0em;
|
||||||
|
text-color: @normal-foreground;
|
||||||
|
}
|
||||||
|
|
||||||
|
#listview {
|
||||||
|
fixed-height: 0;
|
||||||
|
border: 2px 0px 0px;
|
||||||
|
border-color: @border-color;
|
||||||
|
spacing: 2px;
|
||||||
|
scrollbar: true;
|
||||||
|
padding: 2px 0px 0px;
|
||||||
|
}
|
||||||
|
|
||||||
|
#element {
|
||||||
|
border: 0;
|
||||||
|
padding: 1px;
|
||||||
|
}
|
||||||
|
|
||||||
|
#element-text, element-icon {
|
||||||
|
background-color: inherit;
|
||||||
|
text-color: inherit;
|
||||||
|
}
|
||||||
|
|
||||||
|
#element.normal.normal {
|
||||||
|
background-color: @normal-background;
|
||||||
|
text-color: @normal-foreground;
|
||||||
|
}
|
||||||
|
|
||||||
|
#element.normal.urgent {
|
||||||
|
background-color: @urgent-background;
|
||||||
|
text-color: @urgent-foreground;
|
||||||
|
}
|
||||||
|
|
||||||
|
#element.normal.active {
|
||||||
|
background-color: @active-background;
|
||||||
|
text-color: @active-foreground;
|
||||||
|
}
|
||||||
|
|
||||||
|
#element.selected.normal {
|
||||||
|
background-color: @selected-normal-background;
|
||||||
|
text-color: @selected-normal-foreground;
|
||||||
|
}
|
||||||
|
|
||||||
|
#element.selected.urgent {
|
||||||
|
background-color: @selected-urgent-background;
|
||||||
|
text-color: @selected-urgent-foreground;
|
||||||
|
}
|
||||||
|
|
||||||
|
#element.selected.active {
|
||||||
|
background-color: @selected-active-background;
|
||||||
|
text-color: @selected-active-foreground;
|
||||||
|
}
|
||||||
|
|
||||||
|
#element.alternate.normal {
|
||||||
|
background-color: @alternate-normal-background;
|
||||||
|
text-color: @alternate-normal-foreground;
|
||||||
|
}
|
||||||
|
|
||||||
|
#element.alternate.urgent {
|
||||||
|
background-color: @alternate-urgent-background;
|
||||||
|
text-color: @alternate-urgent-foreground;
|
||||||
|
}
|
||||||
|
|
||||||
|
#element.alternate.active {
|
||||||
|
background-color: @alternate-active-background;
|
||||||
|
text-color: @alternate-active-foreground;
|
||||||
|
}
|
||||||
|
|
||||||
|
#scrollbar {
|
||||||
|
width: 4px;
|
||||||
|
border: 0;
|
||||||
|
handle-width: 8px;
|
||||||
|
padding: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
#sidebar {
|
||||||
|
border: 2px 0px 0px;
|
||||||
|
border-color: @border-color;
|
||||||
|
}
|
||||||
|
|
||||||
|
#button {
|
||||||
|
text-color: @normal-foreground;
|
||||||
|
}
|
||||||
|
|
||||||
|
#button.selected {
|
||||||
|
background-color: @selected-normal-background;
|
||||||
|
text-color: @selected-normal-foreground;
|
||||||
|
}
|
||||||
|
|
||||||
|
#inputbar {
|
||||||
|
spacing: 0;
|
||||||
|
text-color: @normal-foreground;
|
||||||
|
padding: 1px;
|
||||||
|
}
|
||||||
|
|
||||||
|
#case-indicator {
|
||||||
|
spacing: 0;
|
||||||
|
text-color: @normal-foreground;
|
||||||
|
}
|
||||||
|
|
||||||
|
#entry {
|
||||||
|
spacing: 0;
|
||||||
|
text-color: @normal-foreground;
|
||||||
|
}
|
||||||
|
|
||||||
|
#prompt {
|
||||||
|
spacing: 0;
|
||||||
|
text-color: @normal-foreground;
|
||||||
|
}
|
||||||
149
rofi/.config/rofi/themes/nord-solid-green.rasi
Normal file
149
rofi/.config/rofi/themes/nord-solid-green.rasi
Normal file
|
|
@ -0,0 +1,149 @@
|
||||||
|
* {
|
||||||
|
nord0: #2e3440;
|
||||||
|
nord1: #3b4252;
|
||||||
|
nord2: #434c5e;
|
||||||
|
nord3: #4c566a;
|
||||||
|
nord4: #d8dee9;
|
||||||
|
nord5: #e5e9f0;
|
||||||
|
nord6: #eceff4;
|
||||||
|
nord7: #8fbcbb;
|
||||||
|
nord8: #88c0d0;
|
||||||
|
nord9: #81a1c1;
|
||||||
|
nord10: #5e81ac;
|
||||||
|
nord11: #bf616a;
|
||||||
|
nord12: #d08770;
|
||||||
|
nord13: #ebcb8b;
|
||||||
|
nord14: #a3be8c;
|
||||||
|
nord15: #b48ead;
|
||||||
|
|
||||||
|
spacing: 2;
|
||||||
|
background-color: var(nord1);
|
||||||
|
|
||||||
|
background: var(nord1);
|
||||||
|
foreground: var(nord4);
|
||||||
|
|
||||||
|
normal-background: var(background);
|
||||||
|
normal-foreground: var(foreground);
|
||||||
|
alternate-normal-background: var(background);
|
||||||
|
alternate-normal-foreground: var(foreground);
|
||||||
|
selected-normal-background: var(nord8);
|
||||||
|
selected-normal-foreground: var(background);
|
||||||
|
|
||||||
|
active-background: var(background);
|
||||||
|
active-foreground: var(nord10);
|
||||||
|
alternate-active-background: var(background);
|
||||||
|
alternate-active-foreground: var(nord10);
|
||||||
|
selected-active-background: var(nord10);
|
||||||
|
selected-active-foreground: var(background);
|
||||||
|
|
||||||
|
urgent-background: var(background);
|
||||||
|
urgent-foreground: var(nord11);
|
||||||
|
alternate-urgent-background: var(background);
|
||||||
|
alternate-urgent-foreground: var(nord11);
|
||||||
|
selected-urgent-background: var(nord11);
|
||||||
|
selected-urgent-foreground: var(background);
|
||||||
|
}
|
||||||
|
element {
|
||||||
|
padding: 0px 0px 0px 7px;
|
||||||
|
spacing: 5px;
|
||||||
|
border: 0;
|
||||||
|
cursor: pointer;
|
||||||
|
}
|
||||||
|
element normal.normal {
|
||||||
|
background-color: var(normal-background);
|
||||||
|
text-color: var(normal-foreground);
|
||||||
|
}
|
||||||
|
element normal.urgent {
|
||||||
|
background-color: var(urgent-background);
|
||||||
|
text-color: var(urgent-foreground);
|
||||||
|
}
|
||||||
|
element normal.active {
|
||||||
|
background-color: var(active-background);
|
||||||
|
text-color: var(active-foreground);
|
||||||
|
}
|
||||||
|
element selected.normal {
|
||||||
|
background-color: var(selected-normal-background);
|
||||||
|
text-color: var(selected-normal-foreground);
|
||||||
|
}
|
||||||
|
element selected.urgent {
|
||||||
|
background-color: var(selected-urgent-background);
|
||||||
|
text-color: var(selected-urgent-foreground);
|
||||||
|
}
|
||||||
|
element selected.active {
|
||||||
|
background-color: var(selected-active-background);
|
||||||
|
text-color: var(selected-active-foreground);
|
||||||
|
}
|
||||||
|
element alternate.normal {
|
||||||
|
background-color: var(alternate-normal-background);
|
||||||
|
text-color: var(alternate-normal-foreground);
|
||||||
|
}
|
||||||
|
element alternate.urgent {
|
||||||
|
background-color: var(alternate-urgent-background);
|
||||||
|
text-color: var(alternate-urgent-foreground);
|
||||||
|
}
|
||||||
|
element alternate.active {
|
||||||
|
background-color: var(alternate-active-background);
|
||||||
|
text-color: var(alternate-active-foreground);
|
||||||
|
}
|
||||||
|
element-text {
|
||||||
|
background-color: rgba(0, 0, 0, 0%);
|
||||||
|
text-color: inherit;
|
||||||
|
highlight: inherit;
|
||||||
|
cursor: inherit;
|
||||||
|
}
|
||||||
|
element-icon {
|
||||||
|
background-color: rgba(0, 0, 0, 0%);
|
||||||
|
size: 1.0000em;
|
||||||
|
text-color: inherit;
|
||||||
|
cursor: inherit;
|
||||||
|
}
|
||||||
|
window {
|
||||||
|
padding: 0;
|
||||||
|
border: 0;
|
||||||
|
background-color: var(background);
|
||||||
|
}
|
||||||
|
mainbox {
|
||||||
|
padding: 0;
|
||||||
|
border: 0;
|
||||||
|
}
|
||||||
|
message {
|
||||||
|
margin: 0px 7px;
|
||||||
|
}
|
||||||
|
textbox {
|
||||||
|
text-color: var(foreground);
|
||||||
|
}
|
||||||
|
listview {
|
||||||
|
margin: 0px 0px 5px;
|
||||||
|
scrollbar: true;
|
||||||
|
spacing: 2px;
|
||||||
|
fixed-height: 0;
|
||||||
|
}
|
||||||
|
scrollbar {
|
||||||
|
padding: 0;
|
||||||
|
handle-width: 14px;
|
||||||
|
border: 0;
|
||||||
|
handle-color: var(nord3);
|
||||||
|
}
|
||||||
|
button {
|
||||||
|
spacing: 0;
|
||||||
|
text-color: var(normal-foreground);
|
||||||
|
cursor: pointer;
|
||||||
|
}
|
||||||
|
button selected {
|
||||||
|
background-color: var(selected-normal-background);
|
||||||
|
text-color: var(selected-normal-foreground);
|
||||||
|
}
|
||||||
|
inputbar {
|
||||||
|
padding: 7px;
|
||||||
|
margin: 7px;
|
||||||
|
spacing: 0;
|
||||||
|
text-color: var(normal-foreground);
|
||||||
|
background-color: var(nord3);
|
||||||
|
children: [ entry ];
|
||||||
|
}
|
||||||
|
entry {
|
||||||
|
spacing: 0;
|
||||||
|
cursor: text;
|
||||||
|
text-color: var(normal-foreground);
|
||||||
|
background-color: var(nord3);
|
||||||
|
}
|
||||||
149
rofi/.config/rofi/themes/nord.rasi
Normal file
149
rofi/.config/rofi/themes/nord.rasi
Normal file
|
|
@ -0,0 +1,149 @@
|
||||||
|
* {
|
||||||
|
nord0: #2e3440;
|
||||||
|
nord1: #3b4252;
|
||||||
|
nord2: #434c5e;
|
||||||
|
nord3: #4c566a;
|
||||||
|
nord4: #d8dee9;
|
||||||
|
nord5: #e5e9f0;
|
||||||
|
nord6: #eceff4;
|
||||||
|
nord7: #8fbcbb;
|
||||||
|
nord8: #88c0d0;
|
||||||
|
nord9: #81a1c1;
|
||||||
|
nord10: #5e81ac;
|
||||||
|
nord11: #bf616a;
|
||||||
|
nord12: #d08770;
|
||||||
|
nord13: #ebcb8b;
|
||||||
|
nord14: #a3be8c;
|
||||||
|
nord15: #b48ead;
|
||||||
|
|
||||||
|
spacing: 2;
|
||||||
|
background-color: var(nord1);
|
||||||
|
|
||||||
|
background: var(nord1);
|
||||||
|
foreground: var(nord4);
|
||||||
|
|
||||||
|
normal-background: var(background);
|
||||||
|
normal-foreground: var(foreground);
|
||||||
|
alternate-normal-background: var(background);
|
||||||
|
alternate-normal-foreground: var(foreground);
|
||||||
|
selected-normal-background: var(nord8);
|
||||||
|
selected-normal-foreground: var(background);
|
||||||
|
|
||||||
|
active-background: var(background);
|
||||||
|
active-foreground: var(nord10);
|
||||||
|
alternate-active-background: var(background);
|
||||||
|
alternate-active-foreground: var(nord10);
|
||||||
|
selected-active-background: var(nord10);
|
||||||
|
selected-active-foreground: var(background);
|
||||||
|
|
||||||
|
urgent-background: var(background);
|
||||||
|
urgent-foreground: var(nord11);
|
||||||
|
alternate-urgent-background: var(background);
|
||||||
|
alternate-urgent-foreground: var(nord11);
|
||||||
|
selected-urgent-background: var(nord11);
|
||||||
|
selected-urgent-foreground: var(background);
|
||||||
|
}
|
||||||
|
element {
|
||||||
|
padding: 0px 0px 0px 7px;
|
||||||
|
spacing: 5px;
|
||||||
|
border: 0;
|
||||||
|
cursor: pointer;
|
||||||
|
}
|
||||||
|
element normal.normal {
|
||||||
|
background-color: var(normal-background);
|
||||||
|
text-color: var(normal-foreground);
|
||||||
|
}
|
||||||
|
element normal.urgent {
|
||||||
|
background-color: var(urgent-background);
|
||||||
|
text-color: var(urgent-foreground);
|
||||||
|
}
|
||||||
|
element normal.active {
|
||||||
|
background-color: var(active-background);
|
||||||
|
text-color: var(active-foreground);
|
||||||
|
}
|
||||||
|
element selected.normal {
|
||||||
|
background-color: var(selected-normal-background);
|
||||||
|
text-color: var(selected-normal-foreground);
|
||||||
|
}
|
||||||
|
element selected.urgent {
|
||||||
|
background-color: var(selected-urgent-background);
|
||||||
|
text-color: var(selected-urgent-foreground);
|
||||||
|
}
|
||||||
|
element selected.active {
|
||||||
|
background-color: var(selected-active-background);
|
||||||
|
text-color: var(selected-active-foreground);
|
||||||
|
}
|
||||||
|
element alternate.normal {
|
||||||
|
background-color: var(alternate-normal-background);
|
||||||
|
text-color: var(alternate-normal-foreground);
|
||||||
|
}
|
||||||
|
element alternate.urgent {
|
||||||
|
background-color: var(alternate-urgent-background);
|
||||||
|
text-color: var(alternate-urgent-foreground);
|
||||||
|
}
|
||||||
|
element alternate.active {
|
||||||
|
background-color: var(alternate-active-background);
|
||||||
|
text-color: var(alternate-active-foreground);
|
||||||
|
}
|
||||||
|
element-text {
|
||||||
|
background-color: rgba(0, 0, 0, 0%);
|
||||||
|
text-color: inherit;
|
||||||
|
highlight: inherit;
|
||||||
|
cursor: inherit;
|
||||||
|
}
|
||||||
|
element-icon {
|
||||||
|
background-color: rgba(0, 0, 0, 0%);
|
||||||
|
size: 1.0000em;
|
||||||
|
text-color: inherit;
|
||||||
|
cursor: inherit;
|
||||||
|
}
|
||||||
|
window {
|
||||||
|
padding: 0;
|
||||||
|
border: 0;
|
||||||
|
background-color: var(background);
|
||||||
|
}
|
||||||
|
mainbox {
|
||||||
|
padding: 0;
|
||||||
|
border: 0;
|
||||||
|
}
|
||||||
|
message {
|
||||||
|
margin: 0px 7px;
|
||||||
|
}
|
||||||
|
textbox {
|
||||||
|
text-color: var(foreground);
|
||||||
|
}
|
||||||
|
listview {
|
||||||
|
margin: 0px 0px 5px;
|
||||||
|
scrollbar: true;
|
||||||
|
spacing: 2px;
|
||||||
|
fixed-height: 0;
|
||||||
|
}
|
||||||
|
scrollbar {
|
||||||
|
padding: 0;
|
||||||
|
handle-width: 14px;
|
||||||
|
border: 0;
|
||||||
|
handle-color: var(nord3);
|
||||||
|
}
|
||||||
|
button {
|
||||||
|
spacing: 0;
|
||||||
|
text-color: var(normal-foreground);
|
||||||
|
cursor: pointer;
|
||||||
|
}
|
||||||
|
button selected {
|
||||||
|
background-color: var(selected-normal-background);
|
||||||
|
text-color: var(selected-normal-foreground);
|
||||||
|
}
|
||||||
|
inputbar {
|
||||||
|
padding: 7px;
|
||||||
|
margin: 7px;
|
||||||
|
spacing: 0;
|
||||||
|
text-color: var(normal-foreground);
|
||||||
|
background-color: var(nord3);
|
||||||
|
children: [ entry ];
|
||||||
|
}
|
||||||
|
entry {
|
||||||
|
spacing: 0;
|
||||||
|
cursor: text;
|
||||||
|
text-color: var(normal-foreground);
|
||||||
|
background-color: var(nord3);
|
||||||
|
}
|
||||||
|
|
@ -1,7 +1,9 @@
|
||||||
#include "/home/moo/.config/themes/using/colors.Xresources"
|
#include "/home/moo/.config/themes/using/colors.Xresources"
|
||||||
!Sxiv.background: #2E3440
|
Nsxiv.window.background: #1b1e2c
|
||||||
!Sxiv.foreground: #766a85
|
Nsxiv.window.foreground: #395E62
|
||||||
Xcursor.theme: oreo_nord_snow_3_cursors
|
Nsxiv.bar.background: #395E62
|
||||||
|
Nsxiv.bar.foreground: #1b1e2c
|
||||||
|
#Xcursor.theme: oreo_nord_snow_3_cursors
|
||||||
Xcursor.size: 16
|
Xcursor.size: 16
|
||||||
!herbe.background_color: #2E3440
|
!herbe.background_color: #2E3440
|
||||||
!herbe.border_color: #766a85
|
!herbe.border_color: #766a85
|
||||||
|
|
|
||||||
|
|
@ -5,4 +5,5 @@ USERXSESSIONRC="$XDG_CACHE_HOME/X11/xsessionrc"
|
||||||
ALTUSERXSESSION="$XDG_CACHE_HOME/X11/Xsession"
|
ALTUSERXSESSION="$XDG_CACHE_HOME/X11/Xsession"
|
||||||
ERRFILE="$XDG_CACHE_HOME/X11/xsession-errors"
|
ERRFILE="$XDG_CACHE_HOME/X11/xsession-errors"
|
||||||
[ -f ~/.config/X11/xprofile ] && . ~/.config/X11/xprofile
|
[ -f ~/.config/X11/xprofile ] && . ~/.config/X11/xprofile
|
||||||
|
#exec dminiwm
|
||||||
exec dwm
|
exec dwm
|
||||||
|
|
|
||||||
|
|
@ -1,18 +1,12 @@
|
||||||
#paperview $HOME/.local/media/vids/Backgrounds/ankha-walk 10 &
|
#paperview $HOME/.local/media/vids/Backgrounds/ankha-walk 10 &
|
||||||
#xcompmgr -c &
|
|
||||||
#xgifwallpaper -d 3 -s FILL /home/moo/.local/media/pics/Backgrounds/background.gif &
|
#xgifwallpaper -d 3 -s FILL /home/moo/.local/media/pics/Backgrounds/background.gif &
|
||||||
picom &
|
|
||||||
#sxhkd &
|
|
||||||
#dunst &
|
#dunst &
|
||||||
|
#xcompmgr -c &
|
||||||
|
fastcompmgr -o 0.4 -r 12 -c -C &
|
||||||
setxkbmap -option ctrl:nocaps &
|
setxkbmap -option ctrl:nocaps &
|
||||||
#$HOME/.local/bin/notify-log $XDG_CACHE_HOME/notify.log &
|
|
||||||
#nitrogen --restore &
|
|
||||||
#hsetroot -full ~/Pictures/Backgrounds/1Arch.png &
|
|
||||||
#xwallpaper -center ~/Pictures/Backgrounds/1Arch.png &
|
|
||||||
#xwallpaper --maximize ~/.local/media/pics/Backgrounds/defwall.png &
|
|
||||||
dwmblocks &
|
dwmblocks &
|
||||||
#syncthing &
|
|
||||||
#xrandr --verbose --output eDP --mode 2560x1440
|
#xrandr --verbose --output eDP --mode 2560x1440
|
||||||
|
hsetroot -full $HOME/.local/media/pics/wallpapers/default &
|
||||||
xset s off
|
xset s off
|
||||||
xset -dpms
|
xset -dpms
|
||||||
xset s noblank
|
xset s noblank
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
#files: 809 version: 5.9
|
#files: 813 version: 5.9
|
||||||
|
|
||||||
_comps=(
|
_comps=(
|
||||||
'-' '_precommand'
|
'-' '_precommand'
|
||||||
|
|
@ -175,6 +175,8 @@ _comps=(
|
||||||
'cloudkitty' '_openstack'
|
'cloudkitty' '_openstack'
|
||||||
'clusterdb' '_postgresql'
|
'clusterdb' '_postgresql'
|
||||||
'cmp' '_cmp'
|
'cmp' '_cmp'
|
||||||
|
'cmus' '_cmus'
|
||||||
|
'cmus-remote' '_cmus'
|
||||||
'co' '_rcs'
|
'co' '_rcs'
|
||||||
'code' '_code'
|
'code' '_code'
|
||||||
'column' '_column'
|
'column' '_column'
|
||||||
|
|
@ -270,6 +272,10 @@ _comps=(
|
||||||
'dsh' '_dsh'
|
'dsh' '_dsh'
|
||||||
'dtruss' '_dtruss'
|
'dtruss' '_dtruss'
|
||||||
'du' '_du'
|
'du' '_du'
|
||||||
|
'_dunst' '_dunst'
|
||||||
|
'dunst' '_dunst'
|
||||||
|
'_dunstctl' '_dunstctl'
|
||||||
|
'dunstctl' '_dunstctl'
|
||||||
'dvibook' '_dvi'
|
'dvibook' '_dvi'
|
||||||
'dviconcat' '_dvi'
|
'dviconcat' '_dvi'
|
||||||
'dvicopy' '_dvi'
|
'dvicopy' '_dvi'
|
||||||
|
|
@ -1660,168 +1666,169 @@ bindkey '^[,' _history-complete-newer
|
||||||
bindkey '^[/' _history-complete-older
|
bindkey '^[/' _history-complete-older
|
||||||
bindkey '^[~' _bash_complete-word
|
bindkey '^[~' _bash_complete-word
|
||||||
|
|
||||||
autoload -Uz _bootctl _busctl _cargo _coredumpctl _curl \
|
autoload -Uz _bootctl _busctl _cargo _cmus _coredumpctl \
|
||||||
_hg _hostnamectl _journalctl _kernel-install _libinput \
|
_curl _dunst _dunstctl _hg _hostnamectl \
|
||||||
_localectl _loginctl _machinectl _meson _mkinitcpio \
|
_journalctl _kernel-install _libinput _localectl _loginctl \
|
||||||
_networkctl _ninja _oomctl _pacman _paru \
|
_machinectl _meson _mkinitcpio _networkctl _ninja \
|
||||||
_pulseaudio _resolvectl _run0 _sd_hosts_or_user_at_host _sd_machines \
|
_oomctl _pacman _paru _pip _pulseaudio \
|
||||||
_sd_outputmodes _sd_unit_files _systemctl _systemd _systemd-analyze \
|
_resolvectl _run0 _sd_hosts_or_user_at_host _sd_machines _sd_outputmodes \
|
||||||
_systemd-delta _systemd-inhibit _systemd-nspawn _systemd-path _systemd-run \
|
_sd_unit_files _systemctl _systemd _systemd-analyze _systemd-delta \
|
||||||
_systemd-tmpfiles _timedatectl _udevadm _varlinkctl _wallust \
|
_systemd-inhibit _systemd-nspawn _systemd-path _systemd-run _systemd-tmpfiles \
|
||||||
_wpctl _xwallpaper _cdr _all_labels _all_matches \
|
_timedatectl _udevadm _varlinkctl _wallust _wpctl \
|
||||||
_alternative _approximate _arg_compile _arguments _bash_completions \
|
_xwallpaper _cdr _all_labels _all_matches _alternative \
|
||||||
_cache_invalid _call_function _combination _complete _complete_debug \
|
_approximate _arg_compile _arguments _bash_completions _cache_invalid \
|
||||||
_complete_help _complete_help_generic _complete_tag _comp_locale _correct \
|
_call_function _combination _complete _complete_debug _complete_help \
|
||||||
_correct_filename _correct_word _describe _description _dispatch \
|
_complete_help_generic _complete_tag _comp_locale _correct _correct_filename \
|
||||||
_expand _expand_alias _expand_word _extensions _external_pwds \
|
_correct_word _describe _description _dispatch _expand \
|
||||||
_generic _guard _history _history_complete_word _ignored \
|
_expand_alias _expand_word _extensions _external_pwds _generic \
|
||||||
_list _main_complete _match _menu _message \
|
_guard _history _history_complete_word _ignored _list \
|
||||||
_most_recent_file _multi_parts _next_label _next_tags _normal \
|
_main_complete _match _menu _message _most_recent_file \
|
||||||
_nothing _numbers _oldlist _pick_variant _prefix \
|
_multi_parts _next_label _next_tags _normal _nothing \
|
||||||
_read_comp _regex_arguments _regex_words _requested _retrieve_cache \
|
_numbers _oldlist _pick_variant _prefix _read_comp \
|
||||||
_sep_parts _sequence _set_command _setup _store_cache \
|
_regex_arguments _regex_words _requested _retrieve_cache _sep_parts \
|
||||||
_sub_commands _tags _user_expand _values _wanted \
|
_sequence _set_command _setup _store_cache _sub_commands \
|
||||||
_acpi _acpitool _alsa-utils _analyseplugin _basenc \
|
_tags _user_expand _values _wanted _acpi \
|
||||||
_brctl _btrfs _capabilities _chattr _chcon \
|
_acpitool _alsa-utils _analyseplugin _basenc _brctl \
|
||||||
_choom _chrt _cpupower _cryptsetup _dkms \
|
_btrfs _capabilities _chattr _chcon _choom \
|
||||||
_e2label _ethtool _findmnt _free _fuse_arguments \
|
_chrt _cpupower _cryptsetup _dkms _e2label \
|
||||||
_fusermount _fuse_values _gpasswd _htop _iconvconfig \
|
_ethtool _findmnt _free _fuse_arguments _fusermount \
|
||||||
_ionice _ipset _iptables _iwconfig _kpartx \
|
_fuse_values _gpasswd _htop _iconvconfig _ionice \
|
||||||
_losetup _lsattr _lsblk _lsns _lsusb \
|
_ipset _iptables _iwconfig _kpartx _losetup \
|
||||||
_ltrace _mat _mat2 _mdadm _mii-tool \
|
_lsattr _lsblk _lsns _lsusb _ltrace \
|
||||||
_modutils _mondo _networkmanager _nsenter _opkg \
|
_mat _mat2 _mdadm _mii-tool _modutils \
|
||||||
_perf _pidof _pmap _qdbus _schedtool \
|
_mondo _networkmanager _nsenter _opkg _perf \
|
||||||
_selinux_contexts _selinux_roles _selinux_types _selinux_users _setpriv \
|
_pidof _pmap _qdbus _schedtool _selinux_contexts \
|
||||||
_setsid _slabtop _ss _sshfs _strace \
|
_selinux_roles _selinux_types _selinux_users _setpriv _setsid \
|
||||||
_sysstat _tload _tpb _tracepath _tune2fs \
|
_slabtop _ss _sshfs _strace _sysstat \
|
||||||
_uml _unshare _valgrind _vserver _wakeup_capable_devices \
|
_tload _tpb _tracepath _tune2fs _uml \
|
||||||
_wipefs _wpa_cli _a2ps _aap _abcde \
|
_unshare _valgrind _vserver _wakeup_capable_devices _wipefs \
|
||||||
_absolute_command_paths _ack _adb _ansible _ant \
|
_wpa_cli _a2ps _aap _abcde _absolute_command_paths \
|
||||||
_antiword _apachectl _apm _arch_archives _arch_namespace \
|
_ack _adb _ansible _ant _antiword \
|
||||||
_arp _arping _asciidoctor _asciinema _at \
|
_apachectl _apm _arch_archives _arch_namespace _arp \
|
||||||
_attr _augeas _avahi _awk _base64 \
|
_arping _asciidoctor _asciinema _at _attr \
|
||||||
_basename _bash _baudrates _baz _beep \
|
_augeas _avahi _awk _base64 _basename \
|
||||||
_bibtex _bind_addresses _bison _bittorrent _bogofilter \
|
_bash _baudrates _baz _beep _bibtex \
|
||||||
_bpf_filters _bpython _bzip2 _bzr _cabal \
|
_bind_addresses _bison _bittorrent _bogofilter _bpf_filters \
|
||||||
_cal _calendar _canonical_paths _cat _ccal \
|
_bpython _bzip2 _bzr _cabal _cal \
|
||||||
_cdcd _cdrdao _cdrecord _chkconfig _chmod \
|
_calendar _canonical_paths _cat _ccal _cdcd \
|
||||||
_chown _chroot _chsh _cksum _clay \
|
_cdrdao _cdrecord _chkconfig _chmod _chown \
|
||||||
_cmdambivalent _cmdstring _cmp _column _comm \
|
_chroot _chsh _cksum _clay _cmdambivalent \
|
||||||
_composer _compress _configure _cowsay _cp \
|
_cmdstring _cmp _column _comm _composer \
|
||||||
_cpio _cplay _crontab _cscope _csplit \
|
_compress _configure _cowsay _cp _cpio \
|
||||||
_cssh _ctags _ctags_tags _curl _cut \
|
_cplay _crontab _cscope _csplit _cssh \
|
||||||
_cvs _darcs _date _date_formats _dates \
|
_ctags _ctags_tags _curl _cut _cvs \
|
||||||
_dbus _dconf _dd _devtodo _df \
|
_darcs _date _date_formats _dates _dbus \
|
||||||
_dhclient _dict _dict_words _diff _diff3 \
|
_dconf _dd _devtodo _df _dhclient \
|
||||||
_diff_options _diffstat _dig _directories _dir_list \
|
_dict _dict_words _diff _diff3 _diff_options \
|
||||||
_django _dmesg _dmidecode _dns_types _doas \
|
_diffstat _dig _directories _dir_list _django \
|
||||||
_domains _dos2unix _drill _dropbox _dsh \
|
_dmesg _dmidecode _dns_types _doas _domains \
|
||||||
_dtruss _du _dvi _ecasound _ed \
|
_dos2unix _drill _dropbox _dsh _dtruss \
|
||||||
_elfdump _elinks _email_addresses _enscript _entr \
|
_du _dvi _ecasound _ed _elfdump \
|
||||||
_env _espeak _etags _fakeroot _feh \
|
_elinks _email_addresses _enscript _entr _env \
|
||||||
_fetchmail _ffmpeg _figlet _file_modes _files \
|
_espeak _etags _fakeroot _feh _fetchmail \
|
||||||
_file_systems _find _find_net_interfaces _finger _flac \
|
_ffmpeg _figlet _file_modes _files _file_systems \
|
||||||
_flex _fmt _fold _fortune _fsh \
|
_find _find_net_interfaces _finger _flac _flex \
|
||||||
_fuser _gcc _gcore _gdb _gem \
|
_fmt _fold _fortune _fsh _fuser \
|
||||||
_genisoimage _getconf _getent _getfacl _getmail \
|
_gcc _gcore _gdb _gem _genisoimage \
|
||||||
_getopt _ghostscript _git _global _global_tags \
|
_getconf _getent _getfacl _getmail _getopt \
|
||||||
_gnu_generic _gnupod _gnutls _go _gpg \
|
_ghostscript _git _global _global_tags _gnu_generic \
|
||||||
_gphoto2 _gprof _gradle _graphicsmagick _grep \
|
_gnupod _gnutls _go _gpg _gphoto2 \
|
||||||
_groff _groups _growisofs _gsettings _guilt \
|
_gprof _gradle _graphicsmagick _grep _groff \
|
||||||
_gzip _have_glob_qual _head _hexdump _host \
|
_groups _growisofs _gsettings _guilt _gzip \
|
||||||
_hostname _hosts _iconv _id _ifconfig \
|
_have_glob_qual _head _hexdump _host _hostname \
|
||||||
_iftop _imagemagick _initctl _init_d _install \
|
_hosts _iconv _id _ifconfig _iftop \
|
||||||
_iostat _ip _ipsec _irssi _ispell \
|
_imagemagick _initctl _init_d _install _iostat \
|
||||||
_java _java_class _joe _join _jq \
|
_ip _ipsec _irssi _ispell _java \
|
||||||
_killall _knock _kvno _last _ldconfig \
|
_java_class _joe _join _jq _killall \
|
||||||
_ldd _ld_debug _less _lha _libvirt \
|
_knock _kvno _last _ldconfig _ldd \
|
||||||
_links _list_files _lldb _ln _loadkeys \
|
_ld_debug _less _lha _libvirt _links \
|
||||||
_locale _localedef _locales _locate _logger \
|
_list_files _lldb _ln _loadkeys _locale \
|
||||||
_look _lp _ls _lsof _lua \
|
_localedef _locales _locate _logger _look \
|
||||||
_luarocks _lynx _lz4 _lzop _mail \
|
_lp _ls _lsof _lua _luarocks \
|
||||||
_mailboxes _make _man _md5sum _mencal \
|
_lynx _lz4 _lzop _mail _mailboxes \
|
||||||
_mh _mime_types _mkdir _mkfifo _mknod \
|
_make _man _md5sum _mencal _mh \
|
||||||
_mktemp _module _monotone _moosic _mosh \
|
_mime_types _mkdir _mkfifo _mknod _mktemp \
|
||||||
_mount _mpc _mt _mtools _mtr \
|
_module _monotone _moosic _mosh _mount \
|
||||||
_mutt _mv _my_accounts _myrepos _mysqldiff \
|
_mpc _mt _mtools _mtr _mutt \
|
||||||
_mysql_utils _ncftp _netcat _net_interfaces _netstat \
|
_mv _my_accounts _myrepos _mysqldiff _mysql_utils \
|
||||||
_newsgroups _nginx _ngrep _nice _nkf \
|
_ncftp _netcat _net_interfaces _netstat _newsgroups \
|
||||||
_nl _nm _nmap _npm _nslookup \
|
_nginx _ngrep _nice _nkf _nl \
|
||||||
_numfmt _objdump _object_files _od _openstack \
|
_nm _nmap _npm _nslookup _numfmt \
|
||||||
_opustools _other_accounts _pack _pandoc _paste \
|
_objdump _object_files _od _openstack _opustools \
|
||||||
_patch _patchutils _path_commands _path_files _pax \
|
_other_accounts _pack _pandoc _paste _patch \
|
||||||
_pbm _pdf _perforce _perl _perl_basepods \
|
_patchutils _path_commands _path_files _pax _pbm \
|
||||||
_perldoc _perl_modules _pgids _pgrep _php \
|
_pdf _perforce _perl _perl_basepods _perldoc \
|
||||||
_picocom _pids _pine _ping _pip \
|
_perl_modules _pgids _pgrep _php _picocom \
|
||||||
_pkgadd _pkg-config _pkginfo _pkg_instance _pkgrm \
|
_pids _pine _ping _pip _pkgadd \
|
||||||
_pon _ports _postfix _postgresql _postscript \
|
_pkg-config _pkginfo _pkg_instance _pkgrm _pon \
|
||||||
_pr _printenv _printers _process_names _prove \
|
_ports _postfix _postgresql _postscript _pr \
|
||||||
_ps _pspdf _psutils _ptx _pump \
|
_printenv _printers _process_names _prove _ps \
|
||||||
_pv _pwgen _pydoc _python _python_modules \
|
_pspdf _psutils _ptx _pump _pv \
|
||||||
_qemu _quilt _rake _ranlib _rar \
|
_pwgen _pydoc _python _python_modules _qemu \
|
||||||
_rclone _rcs _readelf _readlink _remote_files \
|
_quilt _rake _ranlib _rar _rclone \
|
||||||
_renice _ri _rlogin _rm _rmdir \
|
_rcs _readelf _readlink _remote_files _renice \
|
||||||
_route _rrdtool _rsync _rubber _ruby \
|
_ri _rlogin _rm _rmdir _route \
|
||||||
_runit _samba _sccs _scons _screen \
|
_rrdtool _rsync _rubber _ruby _runit \
|
||||||
_script _seafile _sed _seq _service \
|
_samba _sccs _scons _screen _script \
|
||||||
_services _setfacl _sh _shasum _showmount \
|
_seafile _sed _seq _service _services \
|
||||||
_shred _shuf _shutdown _signals _sisu \
|
_setfacl _sh _shasum _showmount _shred \
|
||||||
_slrn _smartmontools _socket _sort _spamassassin \
|
_shuf _shutdown _signals _sisu _slrn \
|
||||||
_split _sqlite _sqsh _ssh _ssh_hosts \
|
_smartmontools _socket _sort _spamassassin _split \
|
||||||
_stat _stdbuf _stgit _stow _strings \
|
_sqlite _sqsh _ssh _ssh_hosts _stat \
|
||||||
_strip _stty _su _subversion _sudo \
|
_stdbuf _stgit _stow _strings _strip \
|
||||||
_surfraw _swaks _swanctl _swift _sys_calls \
|
_stty _su _subversion _sudo _surfraw \
|
||||||
_sysctl _tac _tail _tar _tar_archive \
|
_swaks _swanctl _swift _sys_calls _sysctl \
|
||||||
_tardy _tcpdump _tcptraceroute _tee _telnet \
|
_tac _tail _tar _tar_archive _tardy \
|
||||||
_terminals _tex _texi _texinfo _tidy \
|
_tcpdump _tcptraceroute _tee _telnet _terminals \
|
||||||
_tiff _tilde_files _timeout _time_zone _tin \
|
_tex _texi _texinfo _tidy _tiff \
|
||||||
_tla _tmux _todo.sh _toilet _top \
|
_tilde_files _timeout _time_zone _tin _tla \
|
||||||
_topgit _totd _touch _tput _tr \
|
_tmux _todo.sh _toilet _top _topgit \
|
||||||
_transmission _tree _truncate _truss _tty \
|
_totd _touch _tput _tr _transmission \
|
||||||
_ttys _twidge _twisted _umountable _unace \
|
_tree _truncate _truss _tty _ttys \
|
||||||
_uname _unexpand _uniq _unison _units \
|
_twidge _twisted _umountable _unace _uname \
|
||||||
_uptime _urls _user_admin _user_at_host _users \
|
_unexpand _uniq _unison _units _uptime \
|
||||||
_users_on _vi _vim _visudo _vmstat \
|
_urls _user_admin _user_at_host _users _users_on \
|
||||||
_vorbis _vpnc _w _w3m _watch \
|
_vi _vim _visudo _vmstat _vorbis \
|
||||||
_wc _webbrowser _wget _whereis _who \
|
_vpnc _w _w3m _watch _wc \
|
||||||
_whois _wiggle _xargs _xmlsoft _xmlstarlet \
|
_webbrowser _wget _whereis _who _whois \
|
||||||
_xmms2 _xxd _xz _yafc _yodl \
|
_wiggle _xargs _xmlsoft _xmlstarlet _xmms2 \
|
||||||
_yp _zcat _zdump _zfs _zfs_dataset \
|
_xxd _xz _yafc _yodl _yp \
|
||||||
_zfs_pool _zip _zsh _acroread _code \
|
_zcat _zdump _zfs _zfs_dataset _zfs_pool \
|
||||||
_dcop _eog _evince _geany _gnome-gv \
|
_zip _zsh _acroread _code _dcop \
|
||||||
_gqview _gv _kdeconnect _kfmclient _matlab \
|
_eog _evince _geany _gnome-gv _gqview \
|
||||||
_mozilla _mplayer _mupdf _nautilus _nedit \
|
_gv _kdeconnect _kfmclient _matlab _mozilla \
|
||||||
_netscape _okular _pdftk _qiv _rdesktop \
|
_mplayer _mupdf _nautilus _nedit _netscape \
|
||||||
_setxkbmap _sublimetext _urxvt _vnc _x_arguments \
|
_okular _pdftk _qiv _rdesktop _setxkbmap \
|
||||||
_xauth _xautolock _x_borderwidth _xclip _x_color \
|
_sublimetext _urxvt _vnc _x_arguments _xauth \
|
||||||
_x_colormapid _x_cursor _x_display _xdvi _x_extension \
|
_xautolock _x_borderwidth _xclip _x_color _x_colormapid \
|
||||||
_xfig _x_font _xft_fonts _x_geometry _xinput \
|
_x_cursor _x_display _xdvi _x_extension _xfig \
|
||||||
_x_keysym _xloadimage _x_locale _x_modifier _xmodmap \
|
_x_font _xft_fonts _x_geometry _xinput _x_keysym \
|
||||||
_x_name _xournal _xpdf _xrandr _x_resource \
|
_xloadimage _x_locale _x_modifier _xmodmap _x_name \
|
||||||
_xscreensaver _x_selection_timeout _xset _xt_arguments _xterm \
|
_xournal _xpdf _xrandr _x_resource _xscreensaver \
|
||||||
_x_title _xt_session_id _x_utils _xv _x_visual \
|
_x_selection_timeout _xset _xt_arguments _xterm _x_title \
|
||||||
_x_window _xwit _zeal _add-zle-hook-widget _add-zsh-hook \
|
_xt_session_id _x_utils _xv _x_visual _x_window \
|
||||||
_alias _aliases __arguments _arrays _assign \
|
_xwit _zeal _add-zle-hook-widget _add-zsh-hook _alias \
|
||||||
_autocd _bindkey _brace_parameter _builtin _cd \
|
_aliases __arguments _arrays _assign _autocd \
|
||||||
_command _command_names _compadd _compdef _completers \
|
_bindkey _brace_parameter _builtin _cd _command \
|
||||||
_condition _default _delimiters _directory_stack _dirs \
|
_command_names _compadd _compdef _completers _condition \
|
||||||
_disable _dynamic_directory_name _echotc _echoti _emulate \
|
_default _delimiters _directory_stack _dirs _disable \
|
||||||
_enable _equal _exec _fc _file_descriptors \
|
_dynamic_directory_name _echotc _echoti _emulate _enable \
|
||||||
_first _functions _globflags _globqual_delims _globquals \
|
_equal _exec _fc _file_descriptors _first \
|
||||||
_hash _history_modifiers _in_vared _jobs _jobs_bg \
|
_functions _globflags _globqual_delims _globquals _hash \
|
||||||
_jobs_builtin _jobs_fg _kill _limit _limits \
|
_history_modifiers _in_vared _jobs _jobs_bg _jobs_builtin \
|
||||||
_math _math_params _mere _module_math_func _options \
|
_jobs_fg _kill _limit _limits _math \
|
||||||
_options_set _options_unset _parameter _parameters _precommand \
|
_math_params _mere _module_math_func _options _options_set \
|
||||||
_print _prompt _ps1234 _read _redirect \
|
_options_unset _parameter _parameters _precommand _print \
|
||||||
_run-help _sched _set _setopt _source \
|
_prompt _ps1234 _read _redirect _run-help \
|
||||||
_strftime _subscript _suffix_alias_files _tcpsys _tilde \
|
_sched _set _setopt _source _strftime \
|
||||||
_trap _ttyctl _typeset _ulimit _unhash \
|
_subscript _suffix_alias_files _tcpsys _tilde _trap \
|
||||||
_user_math_func _value _vared _vars _vcs_info \
|
_ttyctl _typeset _ulimit _unhash _user_math_func \
|
||||||
_vcs_info_hooks _wait _which _widgets _zargs \
|
_value _vared _vars _vcs_info _vcs_info_hooks \
|
||||||
_zattr _zcalc _zcalc_line _zcompile _zed \
|
_wait _which _widgets _zargs _zattr \
|
||||||
_zftp _zle _zmodload _zmv _zparseopts \
|
_zcalc _zcalc_line _zcompile _zed _zftp \
|
||||||
_zpty _zsh-mime-handler _zsocket _zstyle _ztodo \
|
_zle _zmodload _zmv _zparseopts _zpty \
|
||||||
_conda _conda _fnm
|
_zsh-mime-handler _zsocket _zstyle _ztodo _conda \
|
||||||
|
_conda _fnm
|
||||||
autoload -Uz +X _call_program
|
autoload -Uz +X _call_program
|
||||||
|
|
||||||
typeset -gUa _comp_assocs
|
typeset -gUa _comp_assocs
|
||||||
|
|
|
||||||
|
|
@ -4,7 +4,7 @@ if [ ${USER} ]; then
|
||||||
export XCURSOR_PATH=/usr/share/icons:${XDG_DATA_HOME}/icons
|
export XCURSOR_PATH=/usr/share/icons:${XDG_DATA_HOME}/icons
|
||||||
#export XCURSOR_THEME="oreo_nord_snow_3_cursors"
|
#export XCURSOR_THEME="oreo_nord_snow_3_cursors"
|
||||||
export XCURSOR_SIZE="16"
|
export XCURSOR_SIZE="16"
|
||||||
export PATH="$(find $HOME/.local/bin -type d | tr '\n' ':' | sed 's/:$//'):$PATH"
|
export PATH="$(find $HOME/.local/bin $HOME/.local/share/cargo/bin -type d | tr '\n' ':' | sed 's/:$//'):$PATH"
|
||||||
export XDG_DATA_HOME="$HOME/.local/share"
|
export XDG_DATA_HOME="$HOME/.local/share"
|
||||||
export XDG_CONFIG_HOME="$HOME/.config"
|
export XDG_CONFIG_HOME="$HOME/.config"
|
||||||
export XDG_STATE_HOME="$HOME/.local/state"
|
export XDG_STATE_HOME="$HOME/.local/state"
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue