Multiple changes including random wallpaper, theme colors and switching to yay instead of yaourt
This commit is contained in:
parent
b78b817a33
commit
5b7475e50f
7 changed files with 609 additions and 46 deletions
|
@ -7,9 +7,17 @@ class Config(BaseConfig):
|
|||
debug = False
|
||||
verbose = False
|
||||
|
||||
# Colors
|
||||
foreground = "#ffffff"
|
||||
background = "#000000"
|
||||
highlight = "#1793d0"
|
||||
inactive_light = "#777777"
|
||||
inactive_dark = "#333333"
|
||||
|
||||
# Default Applications
|
||||
app_terminal = "terminator"
|
||||
app_launcher = "dmenu_run -i -p '»' -nb '#000000' -fn 'Noto Sans-11' -nf '#777777' -sb '#1793d0' -sf '#ffffff'"
|
||||
app_launcher = "dmenu_run -i -p '»' -nb '" + background + "' -fn 'Noto Sans-11' -nf '" + inactive_light + \
|
||||
"' -sb '" + highlight + "' -sf '" + foreground + "'"
|
||||
web_browser = "firefox-developer-edition"
|
||||
file_manager = "thunar"
|
||||
cmd_brightness_up = "sudo /usr/bin/xbacklight -inc 10"
|
||||
|
@ -18,7 +26,9 @@ class Config(BaseConfig):
|
|||
|
||||
# Images
|
||||
desktop_bg = "/home/kevin/Pictures/wallpapers/desktop.png"
|
||||
desktop_bg_folder = "/home/kevin/Pictures/wallpapers/desktop_rotation"
|
||||
applauncher_image = "/home/kevin/.config/qtile/kuro/resources/arch.png"
|
||||
custom_layout_icon_paths = ['/home/kevin/.config/qtile/kuro/resources/layout_icons/']
|
||||
|
||||
# Fonts
|
||||
font_default = "Noto Sans"
|
||||
|
@ -41,14 +51,14 @@ class Config(BaseConfig):
|
|||
width_zoomy_column = 300
|
||||
|
||||
# Colours
|
||||
colour_border_normal = "#333333"
|
||||
colour_border_focus = "#ffffff"
|
||||
colour_border_urgent = "#774400"
|
||||
colour_spacer_background = "#777777"
|
||||
colour_border_normal = inactive_dark
|
||||
colour_border_focus = foreground
|
||||
colour_border_urgent = highlight
|
||||
colour_spacer_background = inactive_light
|
||||
|
||||
# Bar variables
|
||||
bar_background = "#000000"
|
||||
bar_opacity = 0.65
|
||||
bar_background = background
|
||||
bar_opacity = 0.8
|
||||
bar_hover_opacity = 1
|
||||
|
||||
# Groupbox variables
|
||||
|
@ -59,14 +69,14 @@ class Config(BaseConfig):
|
|||
margin_groupbox = 0
|
||||
bool_groupbox_disable_drag = True
|
||||
bool_groupbox_rounded_borders = True
|
||||
colour_groupbox_border_normal = "#333333"
|
||||
colour_groupbox_border_focus = "#aaaaaa"
|
||||
colour_groupbox_icon_active = "#ffffff"
|
||||
colour_groupbox_icon_inactive = "#777777"
|
||||
colour_groupbox_border_normal = inactive_dark
|
||||
colour_groupbox_border_focus = foreground
|
||||
colour_groupbox_icon_active = foreground
|
||||
colour_groupbox_icon_inactive = inactive_light
|
||||
|
||||
# Tasklist variables
|
||||
tasklist_border = "#ffffff"
|
||||
tasklist_urgent_border = "#774400"
|
||||
tasklist_border = foreground
|
||||
tasklist_urgent_border = highlight
|
||||
tasklist_font = "Noto Sans"
|
||||
tasklist_fontsize = 11
|
||||
|
||||
|
@ -97,10 +107,10 @@ class Config(BaseConfig):
|
|||
volume_font = "Noto Sans"
|
||||
volume_fontsize = 11
|
||||
volume_theme_path = "/home/kevin/.config/qtile/kuro/resources/volume"
|
||||
volume_get_command = "pamixer --sink 0 --get-volume".split()
|
||||
volume_mute_command = "pamixer --sink 0 -t".split()
|
||||
volume_up_command = "pamixer --sink 0 -i 2".split()
|
||||
volume_down_command = "pamixer --sink 0 -d 2".split()
|
||||
volume_get_command = "pamixer --sink 2 --get-volume".split()
|
||||
volume_mute_command = "pamixer --sink 2 -t".split()
|
||||
volume_up_command = "pamixer --sink 2 -i 2".split()
|
||||
volume_down_command = "pamixer --sink 2 -d 2".split()
|
||||
volume_is_bluetooth_icon = False
|
||||
volume_update_interval = 0.2
|
||||
|
||||
|
@ -117,6 +127,15 @@ class Config(BaseConfig):
|
|||
|
||||
# CheckUpdates variables
|
||||
updates_display_format = "{updates}"
|
||||
updates_execute_command = "terminator -e 'echo Updating\ via\ yaourt\ -Sayu...; yaourt -Sayu'"
|
||||
updates_execute_command = "terminator -e 'echo Updating\ via\ yay...; yay'"
|
||||
updates_colour_available = '#f4d742'
|
||||
|
||||
# Screen organization
|
||||
laptop_screen = "eDP-1-1"
|
||||
|
||||
# Keyboard colors
|
||||
do_keyboard_updates = False
|
||||
|
||||
# Show audio visualizer
|
||||
show_audio_visualizer = True
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue