changed colorscheme and font for other applications

This commit is contained in:
paul-loedige
2021-04-28 11:28:14 +02:00
parent a00073669d
commit 6b8cc1ffa8
5 changed files with 60 additions and 41 deletions
+36 -19
View File
@@ -1,19 +1,36 @@
! Dracula Xresources palette
*.foreground: #F8F8F2
*.background: #282A36
*.color0: #000000
*.color8: #4D4D4D
*.color1: #FF5555
*.color9: #FF6E67
*.color2: #50FA7B
*.color10: #5AF78E
*.color3: #F1FA8C
*.color11: #F4F99D
*.color4: #BD93F9
*.color12: #CAA9FA
*.color5: #FF79C6
*.color13: #FF92D0
*.color6: #8BE9FD
*.color14: #9AEDFE
*.color7: #BFBFBF
*.color15: #E6E6E6
! -----------------------------------------------------------------------------
! File: gruvbox-dark.xresources
! Description: Retro groove colorscheme generalized
! Author: morhetz <morhetz@gmail.com>
! Source: https://github.com/morhetz/gruvbox-generalized
! Last Modified: 6 Sep 2014
! -----------------------------------------------------------------------------
! hard contrast: *background: #1d2021
*background: #282828
! soft contrast: *background: #32302f
*foreground: #ebdbb2
! Black + DarkGrey
*color0: #282828
*color8: #928374
! DarkRed + Red
*color1: #cc241d
*color9: #fb4934
! DarkGreen + Green
*color2: #98971a
*color10: #b8bb26
! DarkYellow + Yellow
*color3: #d79921
*color11: #fabd2f
! DarkBlue + Blue
*color4: #458588
*color12: #83a598
! DarkMagenta + Magenta
*color5: #b16286
*color13: #d3869b
! DarkCyan + Cyan
*color6: #689d6a
*color14: #8ec07c
! LightGrey + White
*color7: #a89984
*color15: #ebdbb2
@@ -3,15 +3,15 @@ from powerline_shell.themes.default import DefaultColor
class Color(DefaultColor):
USERNAME_FG = 250
USERNAME_FG = 230
USERNAME_BG = 240
USERNAME_ROOT_BG = 124
HOSTNAME_FG = 250
HOSTNAME_FG = 230
HOSTNAME_BG = 238
HOME_SPECIAL_DISPLAY = True
HOME_BG = 31 # blueish
HOME_BG = 4 # blueish
HOME_FG = 15 # white
PATH_BG = 237 # dark grey
PATH_FG = 250 # light grey
@@ -68,4 +68,4 @@ class Color(DefaultColor):
AWS_PROFILE_BG = 238
TIME_FG = 250
TIME_BG = 238
TIME_BG = 238
+2 -2
View File
@@ -104,9 +104,9 @@ class Mic(widget.base._TextBox):
def _update_drawer(self):
if self.emoji:
if self.volume > 0:
self.text = ''
self.text = ''
elif self.volume <= 0:
self.text = ''
self.text = ''
else:
if self.volume == -1:
self.text = 'M'
+11 -11
View File
@@ -4,16 +4,16 @@ from libqtile.command import lazy
from defines import term
from Keys import keys
group_names = [("","Home", 'h',{'layout': 'monadtall'}),
("","Coding", 'c',{'layout': 'monadtall'}),
("","Browser", 'f',{'layout': 'monadtall'}),
("","Mail", 'm',{'layout': 'monadtall'}),
("","Music", 's',{'layout': 'monadtall'}),
("","Video", 'v',{'layout': 'monadtall'}),
("","Documents", 'l',{'layout': 'monadtall'}),
("","Discord", 'd',{'layout': 'monadtall'}),
("","VM's", 'o',{'layout': 'monadtall'}),
("","Gaming", 'g',{'layout': 'monadtall'})]
group_names = [("","Home", 'h',{'layout': 'monadtall'}),
("","Coding", 'c',{'layout': 'monadtall'}),
("","Browser", 'f',{'layout': 'monadtall'}),
("","Mail", 'm',{'layout': 'monadtall'}),
("","Music", 's',{'layout': 'monadtall'}),
("","Video", 'v',{'layout': 'monadtall'}),
("","Documents", 'l',{'layout': 'monadtall'}),
("","Discord", 'd',{'layout': 'monadtall'}),
("","VM's", 'o',{'layout': 'monadtall'}),
("","Gaming", 'g',{'layout': 'monadtall'})]
groups = [Group(icon, **kwargs) for icon, name, key, kwargs in group_names]
@@ -86,4 +86,4 @@ keys.extend([
desc="open the dropdown for WhatsApp"),
Key(['mod1','control'],'i',lazy.group['scratchpad'].dropdown_toggle('Signal'),
desc="open the dropdown for Signal"),
])
])
+7 -5
View File
@@ -36,14 +36,16 @@ def Left_widgets(size,fontsize,prompt=False):
return [
widget.CurrentLayoutIcon(),
*powerline_arrow('r',base_color,blue_color,size),
widget.Image(
filename='~/.config/qtile/icons/archlinux-logo-small.png',
widget.TextBox(
text='',
foreground=dark_foreground_color,
fontsize=fontsize+14,
margin=5,
background=blue_color
),
*powerline_arrow('r',blue_color,base_color,size),
widget.GroupBox(
fontsize=fontsize,
fontsize=fontsize+10,
rounded=False,
active=light_foreground_color,
inactive=dark_foreground_color,
@@ -80,7 +82,7 @@ def volume_widget(prev_color,color,size,fontsize):
foreground=dark_foreground_color,
background=color,
emoji=True,
fontsize=fontsize,
fontsize=fontsize + 6,
),
Mic(
foreground=dark_foreground_color,
@@ -254,4 +256,4 @@ def Laptop_widgets(prev_color,last_color,size,fontsize):
mouse_callbacks = launch_htop,
),
]
#endregion
#endregion