add os config
This commit is contained in:
parent
d8d692d313
commit
33bf5ec883
30 changed files with 271 additions and 5 deletions
17
home/dotfiles/keepmenu.ini
Normal file
17
home/dotfiles/keepmenu.ini
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
[dmenu]
|
||||
dmenu_command = rofi -i
|
||||
|
||||
[dmenu_passphrase]
|
||||
nf = #222222
|
||||
nb = #222222
|
||||
rofi_obscure = True
|
||||
|
||||
[database]
|
||||
database_1 = ~/.local/share/passdb/passdb.kdbx
|
||||
keyfile_1 =
|
||||
pw_cache_period_min = 360
|
||||
autotype_default = {USERNAME}{TAB}{PASSWORD}
|
||||
editor = nvim
|
||||
terminal = alacritty
|
||||
|
||||
type_library = wtype
|
||||
21
home/dotfiles/kitty/dark.conf
Normal file
21
home/dotfiles/kitty/dark.conf
Normal file
|
|
@ -0,0 +1,21 @@
|
|||
background #0d0f18
|
||||
foreground #fffaf3
|
||||
cursor #ff0017
|
||||
selection_background #002a3a
|
||||
color0 #222222
|
||||
color8 #444444
|
||||
color1 #ff000f
|
||||
color9 #ff273f
|
||||
color2 #8ce00a
|
||||
color10 #abe05a
|
||||
color3 #ffb900
|
||||
color11 #ffd141
|
||||
color4 #008df8
|
||||
color12 #0092ff
|
||||
color5 #6c43a5
|
||||
color13 #9a5feb
|
||||
color6 #00d7eb
|
||||
color14 #67ffef
|
||||
color7 #ffffff
|
||||
color15 #ffffff
|
||||
selection_foreground #0d0f18
|
||||
21
home/dotfiles/kitty/light.conf
Normal file
21
home/dotfiles/kitty/light.conf
Normal file
|
|
@ -0,0 +1,21 @@
|
|||
background #f8f8f8
|
||||
foreground #2a2b33
|
||||
cursor #bbbbbb
|
||||
selection_background #e5e5e6
|
||||
color0 #000000
|
||||
color8 #000000
|
||||
color1 #de3d35
|
||||
color9 #de3d35
|
||||
color2 #3e953a
|
||||
color10 #3e953a
|
||||
color3 #d2b67b
|
||||
color11 #d2b67b
|
||||
color4 #2f5af3
|
||||
color12 #2f5af3
|
||||
color5 #950095
|
||||
color13 #a00095
|
||||
color6 #3e953a
|
||||
color14 #3e953a
|
||||
color7 #bbbbbb
|
||||
color15 #ffffff
|
||||
selection_foreground #2a2b33
|
||||
8
home/dotfiles/rofi/colors-dark.rasi
Normal file
8
home/dotfiles/rofi/colors-dark.rasi
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
* {
|
||||
accent: #53BDFA;
|
||||
warning: #EA6C73;
|
||||
bg: #0A0E14;
|
||||
fg: #B3B1AD;
|
||||
alternate: #01060E;
|
||||
transparent: #00000000;
|
||||
}
|
||||
8
home/dotfiles/rofi/colors-light.rasi
Normal file
8
home/dotfiles/rofi/colors-light.rasi
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
* {
|
||||
accent: #4196df;
|
||||
warning: #FF7383;
|
||||
bg: #F8F9FA;
|
||||
fg: #26292f;
|
||||
alternate: #eeeeee;
|
||||
transparent: #00000000;
|
||||
}
|
||||
1
home/dotfiles/rofi/config.rasi
Normal file
1
home/dotfiles/rofi/config.rasi
Normal file
|
|
@ -0,0 +1 @@
|
|||
@theme "theme.rasi"
|
||||
122
home/dotfiles/rofi/theme.rasi
Normal file
122
home/dotfiles/rofi/theme.rasi
Normal file
|
|
@ -0,0 +1,122 @@
|
|||
/**
|
||||
* A floating box version of the paper theme.
|
||||
*
|
||||
* User: Qball
|
||||
* Copyright: Dave Davenport
|
||||
*/
|
||||
|
||||
@import "colors-current.rasi"
|
||||
|
||||
* {
|
||||
spacing: 0;
|
||||
background-color: @transparent;
|
||||
border-color: @fg;
|
||||
anchor: north;
|
||||
location: center;
|
||||
text-color: @fg;
|
||||
}
|
||||
window {
|
||||
transparency: "real";
|
||||
background-color: @transparent;
|
||||
border: 0;
|
||||
padding: 0% 0% 1em 0%;
|
||||
x-offset: 0;
|
||||
y-offset: -10%;
|
||||
}
|
||||
mainbox {
|
||||
padding: 0px;
|
||||
border: 0;
|
||||
spacing: 1%;
|
||||
}
|
||||
inputbar {
|
||||
spacing: 0;
|
||||
border: 0;
|
||||
padding: 0.4em 0.2em;
|
||||
background-color: @bg;
|
||||
index: 0;
|
||||
children: [ prompt,textbox-prompt-colon,entry,case-indicator ];
|
||||
}
|
||||
textbox-prompt-colon {
|
||||
expand: false;
|
||||
str: ":";
|
||||
margin: 0px 0.3em 0em 0em ;
|
||||
}
|
||||
|
||||
prompt {
|
||||
text-color: inherit;
|
||||
}
|
||||
entry {
|
||||
text-color: inherit;
|
||||
}
|
||||
|
||||
listview {
|
||||
border: 0;
|
||||
reverse: false;
|
||||
|
||||
columns: 1;
|
||||
background-color: @bg;
|
||||
/* fixed-height: false; */
|
||||
/* dynamic: true; */
|
||||
}
|
||||
|
||||
element {
|
||||
border: 0;
|
||||
padding: 2px;
|
||||
highlight: bold ;
|
||||
}
|
||||
element-text {
|
||||
background-color: inherit;
|
||||
text-color: inherit;
|
||||
}
|
||||
|
||||
element {
|
||||
text-color: @fg;
|
||||
background-color: @transparent;
|
||||
}
|
||||
element normal.urgent {
|
||||
text-color: @warning;
|
||||
}
|
||||
|
||||
element selected {
|
||||
text-color: @bg;
|
||||
background-color: @accent;
|
||||
}
|
||||
element selected.urgent {
|
||||
text-color: @warning;
|
||||
}
|
||||
|
||||
element alternate {
|
||||
background-color: @alternate;
|
||||
}
|
||||
element alternate.urgent {
|
||||
text-color: @warning;
|
||||
}
|
||||
|
||||
scrollbar {
|
||||
border: 0;
|
||||
padding: 0;
|
||||
}
|
||||
mode-switcher {
|
||||
border: 1px;
|
||||
padding: 0.4em 1em;
|
||||
background-color: @alternate;
|
||||
index: 10;
|
||||
}
|
||||
|
||||
message {
|
||||
border: 1px;
|
||||
padding: 1em;
|
||||
background-color: @bg;
|
||||
text-color: @fg;
|
||||
}
|
||||
textbox normal {
|
||||
text-color: @fg;
|
||||
padding: 0;
|
||||
border: 0;
|
||||
}
|
||||
error-message {
|
||||
border: 1px;
|
||||
padding: 0.4em;
|
||||
background-color: #FF8888;
|
||||
text-color: @fg;
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue