pull/2/head
E. Almqvist 2 years ago
parent f12a98a942
commit 777a1353f9
No known key found for this signature in database
GPG Key ID: E31A99CE3E75A158
  1. 52
      alacritty/.config/alacritty/alacritty.yml
  2. 20
      dunst/.config/dunst/dunstrc
  3. 2
      emacs/.config/emacs/config.el
  4. 2
      emacs/.config/emacs/init.el
  5. 50
      eww/.config/eww/eww.scss
  6. 6
      leftwm/.config/leftwm/themes/gruv/theme.ron
  7. 4
      oh-my-zsh/.oh-my-zsh/custom/themes/almtech2.zsh-theme
  8. 56
      rofi/.config/rofi/doomsidebar.rasi

@ -67,29 +67,45 @@ font:
draw_bold_text_with_bright_colors: true draw_bold_text_with_bright_colors: true
colors: colors:
# Default colors
primary: primary:
background: '0xffffff' background: '0x1d1f21'
foreground: '0x4d4d4c' foreground: '0xc5c8c6'
# Colors the cursor will use if `custom_cursor_colors` is true
cursor:
text: '0x1d1f21'
cursor: '0xc5c8c6'
# Normal colors
normal: normal:
black: '0x1d1f21' black: '0x1d1f21'
red: '0xc82829' red: '0xcc6666'
green: '0x718c00' green: '0xb5bd68'
yellow: '0xf5871f' yellow: '0xf0c674'
blue: '0x4271ae' blue: '0x81a2be'
magenta: '0x8959a8' magenta: '0xb294bb'
cyan: '0x3e999f' cyan: '0x8abeb7'
white: '0x565656' white: '0xc5c8c6'
# Bright colors
bright: bright:
black: '0x8e908c' black: '0x969896'
red: '0xff3334' red: '0xcc6666'
green: '0x89aa00' green: '0xb5bd68'
yellow: '0xeab700' yellow: '0xf0c674'
blue: '0x5795e6' blue: '0x81a2be'
magenta: '0xb777e0' magenta: '0xb294bb'
cyan: '0x66bdc3' cyan: '0x8abeb7'
white: '0x262626' white: '0xffffff'
indexed_colors:
- { index: 16, color: '0xde935f' }
- { index: 17, color: '0xa3685a' }
- { index: 18, color: '0x282a2e' }
- { index: 19, color: '0x373b41' }
- { index: 20, color: '0xb4b7b4' }
- { index: 21, color: '0xe0e0e0' }
cursor: cursor:
# Values for `style`: # Values for `style`:

@ -64,7 +64,7 @@
frame_width = 1 frame_width = 1
# Defines color of the frame around the notification window. # Defines color of the frame around the notification window.
frame_color = "#ffffff" frame_color = "#1d1f21"
# Define a color for the separator. # Define a color for the separator.
# possible values are: # possible values are:
@ -275,25 +275,25 @@
[urgency_low] [urgency_low]
# IMPORTANT: colors have to be defined in quotation marks. # IMPORTANT: colors have to be defined in quotation marks.
# Otherwise the "#" and following would be interpreted as a comment. # Otherwise the "#" and following would be interpreted as a comment.
background = "#ffffff" background = "#1d1f21"
foreground = "#000000" foreground = "#c5c8c6"
frame_color = "#ffffff" frame_color = "#1d1f21"
timeout = 10 timeout = 10
# Icon for notifications with low urgency, uncomment to enable # Icon for notifications with low urgency, uncomment to enable
#icon = /path/to/icon #icon = /path/to/icon
[urgency_normal] [urgency_normal]
background = "#ffffff" background = "#1d1f21"
foreground = "#000000" foreground = "#c5c8c6"
frame_color = "#ffffff" frame_color = "#1d1f21"
timeout = 10 timeout = 10
# Icon for notifications with normal urgency, uncomment to enable # Icon for notifications with normal urgency, uncomment to enable
#icon = /path/to/icon #icon = /path/to/icon
[urgency_critical] [urgency_critical]
background = "#ffffff" background = "#1d1f21"
foreground = "#000000" foreground = "#c5c8c6"
frame_color = "#ffffff" frame_color = "#1d1f21"
timeout = 0 timeout = 0
# Icon for notifications with critical urgency, uncomment to enable # Icon for notifications with critical urgency, uncomment to enable
#icon = /path/to/icon #icon = /path/to/icon

@ -3,7 +3,7 @@
user-mail-address "elalmqvist@gmail.com") user-mail-address "elalmqvist@gmail.com")
;; Theme ;; Theme
(load-theme 'doom-tomorrow-day t) (load-theme 'doom-tomorrow-night t)
;; Font size ;; Font size
(set-face-attribute 'default nil :height 140 :family "Fira Code") (set-face-attribute 'default nil :height 140 :family "Fira Code")

@ -44,7 +44,7 @@
'(elcord-idle-message "Thinking...") '(elcord-idle-message "Thinking...")
'(elcord-idle-timer 300) '(elcord-idle-timer 300)
'(elcord-quiet t) '(elcord-quiet t)
'(elcord-use-major-mode-as-main-icon nil) '(elcord-use-major-mode-as-main-icon t)
'(evil-undo-system 'undo-redo) '(evil-undo-system 'undo-redo)
'(package-selected-packages '(package-selected-packages
'(scss-mode yaml-mode ligature evil-smartparens smartparens web-mode sublimity typescript-mode glsl-mode format-all hl-todo elcord evil-tabs evil-commentary format-all auto-complete editorconfig haskell-mode counsel ivy go-mode rust-mode use-package treemacs-evil treemacs projectile doom-themes lsp-mode evil))) '(scss-mode yaml-mode ligature evil-smartparens smartparens web-mode sublimity typescript-mode glsl-mode format-all hl-todo elcord evil-tabs evil-commentary format-all auto-complete editorconfig haskell-mode counsel ivy go-mode rust-mode use-package treemacs-evil treemacs projectile doom-themes lsp-mode evil)))

@ -4,25 +4,25 @@ $icon-size: 18px;
$logo-size: 22px; $logo-size: 22px;
// Basic colors // Basic colors
$blue: #81a2be;
$cyan: #add9ff;
$black: #1d1f21; $black: #1d1f21;
$red: #c82829; $red: #cc6666;
$green: #718c00; $green: #b5bd68;
$yellow: #eab700; $yellow: #f0c674;
$blue: #4271ae; $magenta: #b294bb;
$magenta: #8959a8; $white: #c5c8c6;
$cyan: #66bdc3;
$white: #d6d6d6;
// Colors // Colors
$bg-color: #fff; $bg-color: #1d1f21;
$bg-alt-color: #d6d6d6; $bg-alt-color: #131519;
$fg-color: #4d4d4c; $fg-color: #c5c8c6;
$fg-alt-color: #4d4d4c; $fg-alt-color: #5f5f5f;
$fg-sel-color: $blue; $fg-sel-color: $cyan;
$fg-desel-color: #c9c9c9; $fg-desel-color: $fg-alt-color;
$border-color: #d6d6d6; $border-color: #434549;
$fg-accent: $blue; $fg-accent: $cyan;
// Misc // Misc
$anim-transition: 150ms; $anim-transition: 150ms;
@ -41,9 +41,8 @@ tooltip {
.bar-1, .bar-1,
.bar-2 { .bar-2 {
background-color: $bg-color; background-color: $bg-color;
color: $fg-color; color: $fg-alt-color;
border-right: solid 1px $border-color; border-right: solid 1px $border-color;
padding: 0.3rem;
} }
.segment-end { .segment-end {
@ -57,10 +56,7 @@ button {
// Workspaces // Workspaces
.workspaces { .workspaces {
// background-color: $bg-alt-color;
// padding: .3rem; // padding: .3rem;
// border: solid 1px $black;
// border-radius: $font-size;
} }
.workspaces > button { .workspaces > button {
@ -77,6 +73,7 @@ button.active {
// font-weight: bold; // font-weight: bold;
color: $fg-sel-color; color: $fg-sel-color;
} }
button.inactive { button.inactive {
color: $fg-desel-color; color: $fg-desel-color;
} }
@ -107,7 +104,7 @@ scale trough {
// Colors for the buttons // Colors for the buttons
.lock:hover { .lock:hover {
color: $white; color: $blue;
} }
.quit:hover { .quit:hover {
color: $green; color: $green;
@ -131,11 +128,9 @@ scale trough {
// Control // Control
.control { .control {
margin-bottom: $logo-size; margin-bottom: $logo-size;
padding: 0.5rem; margin-bottom: 0.5rem;
margin: 0;
font-family: Material Icons; font-family: Material Icons;
font-size: 1.6em; font-size: 1.6em;
border-radius: 5px;
} }
.icon { .icon {
@ -157,11 +152,11 @@ scale trough {
// Time // Time
.time { .time {
// color: $fg-alt-color;
font-size: 11px; font-size: 11px;
font-weight: bold; font-weight: bold;
border-top: solid 2px $border-color; border-top: solid 2px $fg-alt-color;
padding: 1rem 0; padding-top: 1rem;
padding-bottom: 0rem;
margin-bottom: 0.5rem; margin-bottom: 0.5rem;
} }
@ -170,7 +165,6 @@ scale trough {
margin: 0 0.8rem; margin: 0 0.8rem;
margin-top: 6px; margin-top: 6px;
font-size: $logo-size; font-size: $logo-size;
// opacity: 0.6;
} }
.logo-seperator { .logo-seperator {

@ -2,7 +2,7 @@
( (
border_width: 1, border_width: 1,
margin: 16, margin: 16,
default_border_color: "#d6d6d6", default_border_color: "#434549",
focused_border_color: "#565656", focused_border_color: "#636569",
floating_border_color: "#f6f6f6", floating_border_color: "#434549",
) )

@ -35,7 +35,5 @@ ZSH_THEME_GIT_PROMPT_SHA_BEFORE=" %{$WHITE%}[%{$YELLOW%}"
ZSH_THEME_GIT_PROMPT_SHA_AFTER="%{$WHITE%}]" ZSH_THEME_GIT_PROMPT_SHA_AFTER="%{$WHITE%}]"
# Prompt format # Prompt format
PROMPT=' PROMPT='%{$BLUE%}%n@%m%{$WHITE%}:%{$YELLOW%}%~%u$(parse_git_dirty)$(git_prompt_ahead)%{$RESET_COLOR%}%{$BLUE%}>%{$RESET_COLOR%} '
%{$BLUE%}%n@%m%{$WHITE%}:%{$YELLOW%}%~%u$(parse_git_dirty)$(git_prompt_ahead)%{$RESET_COLOR%}
%{$BLUE%}>%{$RESET_COLOR%} '
RPROMPT='%{$GREEN%}$(git_current_branch)$(git_prompt_short_sha)$(git_prompt_status)%{$RESET_COLOR%}' RPROMPT='%{$GREEN%}$(git_current_branch)$(git_prompt_short_sha)$(git_prompt_status)%{$RESET_COLOR%}'

@ -1,49 +1,35 @@
* { * {
text-color: #000; text-color: #efefef;
background-color: rgba(1, 0, 0, 0); background-color: rgba(1, 0, 0, 0);
dark: #282828; dark: #282828;
border-color: #1d1f21; border-color: #1d1f21;
// Black // Black
black: #fff; blue: #81a2be;
blackop: #eee; lightblue: #81a2be;
lightblack: #222222; cyan: #add9ff;
// lightcyan: #add9ff;
// Red black: #1d1f21;
red: #cc241d; lightblack: #1d1f21;
lightred: #cc241d; blackop: #1d1f21aa;
// red: #cc6666;
// Green lightred: #cc6666;
green: #98971a; green: #b5bd68;
lightgreen: #98971a; lightgreen: #b5bd68;
// yellow: #f0c674;
// Yellow lightyellow: #f0c674;
yellow: #d79921; magenta: #b294bb;
lightyellow: #d79921; lightmagenta: #b294bb;
// white: #c5c8c6;
// Blue lightwhite: #c5c8c6;
blue: #4271ae;
lightblue: #4271ae;
//
// Magenta
magenta: #b16286;
lightmagenta: #b16286;
//
// Cyan
cyan: #458588;
lightcyan: #458588;
//
// White
white: #a89984;
lightwhite: #a89984;
// //
// Bold, Italic, Underline // Bold, Italic, Underline
highlight: bold #ffffff; highlight: bold #ccc;
} }
window { window {
/* height: 14em; */ /* height: 14em; */
width: 24em; /* width: 24em; */
height: 100%; height: 100%;
/* width: 100%; */ width: 100%;
location: west; location: west;
/* anchor: center; */ /* anchor: center; */
text-color: @lightwhite; text-color: @lightwhite;

Loading…
Cancel
Save