Add awesome home configs
2
awesome-home/.config/awesome/themes/archlabs/assets.lua
Normal file
@ -0,0 +1,2 @@
|
||||
require("gears.debug").deprecate("Use beautiful.theme_assets instead.", {raw=true})
|
||||
return require("beautiful.theme_assets")
|
BIN
awesome-home/.config/awesome/themes/archlabs/submenu.png
Normal file
After Width: | Height: | Size: 24 KiB |
After Width: | Height: | Size: 969 B |
BIN
awesome-home/.config/awesome/themes/archlabs/taglist/squarew.png
Normal file
After Width: | Height: | Size: 974 B |
275
awesome-home/.config/awesome/themes/archlabs/theme.lua
Normal file
@ -0,0 +1,275 @@
|
||||
--[[
|
||||
▄▄▄· ▄▄▄ ▄▄· ▄ .▄▄▄▌ ▄▄▄· ▄▄▄▄· .▄▄ ·
|
||||
▐█ ▀█ ▀▄ █·▐█ ▌▪██▪▐███• ▐█ ▀█ ▐█ ▀█▪▐█ ▀.
|
||||
▄█▀▀█ ▐▀▀▄ ██ ▄▄██▀▐███▪ ▄█▀▀█ ▐█▀▀█▄▄▀▀▀█▄
|
||||
▐█ ▪▐▌▐█•█▌▐███▌██▌▐▀▐█▌▐▌▐█ ▪▐▌██▄▪▐█▐█▄▪▐█
|
||||
▀ ▀ .▀ ▀·▀▀▀ ▀▀▀ ·.▀▀▀ ▀ ▀ ·▀▀▀▀ ▀▀▀▀
|
||||
--]]
|
||||
|
||||
local theme_assets = require("beautiful.theme_assets")
|
||||
local xresources = require("beautiful.xresources")
|
||||
local dpi = xresources.apply_dpi
|
||||
local xrdb = xresources.get_current_theme()
|
||||
local gears = require("gears")
|
||||
local gfs = require("gears.filesystem")
|
||||
local themes_path = gfs.get_themes_dir()
|
||||
|
||||
-- Inherit default theme
|
||||
local theme = dofile(themes_path.."default/theme.lua")
|
||||
-- Titlebar icon path
|
||||
local tip = "~/.config/awesome/themes/archlabs/titlebar/"
|
||||
|
||||
theme.wallpaper = gears.filesystem.get_configuration_dir() .. "wallpapers/minimal_space.png"
|
||||
|
||||
-- Load ~/.Xresources colors and set fallback colors
|
||||
theme.xbackground = xrdb.background or "#1c2023"
|
||||
theme.xforeground = xrdb.foreground or "#E1E1E1"
|
||||
theme.xcolor0 = xrdb.color0 or "#1c2023"
|
||||
theme.xcolor1 = xrdb.color1 or "#bf616a"
|
||||
theme.xcolor2 = xrdb.color2 or "#a3be8c"
|
||||
theme.xcolor3 = xrdb.color3 or "#ebcb8b"
|
||||
theme.xcolor4 = xrdb.color4 or "#8fa1b3"
|
||||
theme.xcolor5 = xrdb.color5 or "#b48ead"
|
||||
theme.xcolor6 = xrdb.color6 or "#96b5b4"
|
||||
theme.xcolor7 = xrdb.color7 or "#E1E1E1"
|
||||
theme.xcolor8 = xrdb.color8 or "#919ba0"
|
||||
theme.xcolor9 = xrdb.color9 or "#bf616a"
|
||||
theme.xcolor10 = xrdb.color10 or "#a3be8c"
|
||||
theme.xcolor11 = xrdb.color11 or "#ebcb8b"
|
||||
theme.xcolor12 = xrdb.color12 or "#8fa1b3"
|
||||
theme.xcolor13 = xrdb.color13 or "#b48ead"
|
||||
theme.xcolor14 = xrdb.color14 or "#96b5b4"
|
||||
theme.xcolor15 = xrdb.color15 or "#c0c5ce"
|
||||
|
||||
-- RBGA
|
||||
local transparent = "#00000000"
|
||||
|
||||
theme.font = "sans 10"
|
||||
|
||||
theme.bg_normal = theme.xcolor8
|
||||
theme.bg_focus = theme.xcolor8
|
||||
theme.bg_urgent = theme.xcolor9
|
||||
theme.bg_minimize = theme.xbackground
|
||||
theme.bg_systray = theme.xbackground
|
||||
|
||||
theme.fg_normal = theme.xforeground
|
||||
theme.fg_focus = theme.xcolor4
|
||||
theme.fg_urgent = theme.xbackground
|
||||
theme.fg_minimize = theme.xcolor8
|
||||
|
||||
theme.useless_gap = dpi(4)
|
||||
theme.border_width = dpi(0)
|
||||
theme.border_radius = dpi(6)
|
||||
theme.border_normal = theme.xcolor0
|
||||
theme.border_focus = theme.bg_focus
|
||||
theme.border_marked = theme.xcolor10
|
||||
|
||||
-- Other variable sets
|
||||
-- mouse_finder_[color|timeout|animate_timeout|radius|factor]
|
||||
|
||||
-- Taglist
|
||||
theme.taglist_font = "sans bold 10"
|
||||
theme.taglist_bg = theme.xcolor0
|
||||
theme.taglist_shape = gears.shape.circle
|
||||
theme.taglist_bg_focus = theme.xcolor4
|
||||
theme.taglist_fg_focus = theme.xforeground
|
||||
theme.taglist_bg_urgent = theme.xcolor1
|
||||
theme.taglist_fg_urgent = theme.xforeground
|
||||
theme.taglist_bg_occupied = transparent
|
||||
theme.taglist_fg_occupied = theme.xcolor4
|
||||
theme.taglist_bg_empty = transparent
|
||||
theme.taglist_fg_empty = theme.xforeground
|
||||
theme.taglist_bg_volatile = transparent
|
||||
theme.taglist_fg_volatile = theme.xcolor11
|
||||
|
||||
-- Tasklist
|
||||
theme.tasklist_font = "sans bold 10"
|
||||
theme.tasklist_bg_focus = theme.xbackground
|
||||
theme.tasklist_fg_focus = theme.xcolor4
|
||||
theme.tasklist_bg_urgent = theme.xbackground
|
||||
theme.tasklist_fg_urgent = theme.xcolor9
|
||||
theme.tasklist_bg_normal = theme.xbackground
|
||||
theme.tasklist_fg_normal = theme.xcolor7
|
||||
|
||||
-- Titlebars
|
||||
theme.titlebar_size = dpi(30)
|
||||
theme.titlebar_bg_focus = theme.xcolor7
|
||||
theme.titlebar_bg_normal = theme.xcolor7
|
||||
theme.titlebar_fg_focus = theme.xcolor7
|
||||
theme.titlebar_fg_normal = theme.xcolor7
|
||||
|
||||
-- Tooltips
|
||||
-- tooltip_[font|opacity|fg_color|bg_color|border_width|border_color]
|
||||
theme.tooltip_fg = theme.fg_normal
|
||||
theme.tooltip_bg = theme.bg_normal
|
||||
|
||||
-- Notifications
|
||||
-- Position: bottom_left, bottom_right, bottom_middle,
|
||||
-- top_left, top_right, top_middle
|
||||
-- BUG: some notifications (e.g. by notify-send) appear at top_right regardless of this setting
|
||||
theme.notification_position = "top_right"
|
||||
theme.notification_border_width = dpi(0)
|
||||
theme.notification_border_radius = theme.border_radius
|
||||
theme.notification_border_color = theme.xcolor10
|
||||
theme.notification_bg = theme.xbackground
|
||||
theme.notification_fg = theme.xcolor7
|
||||
theme.notification_crit_bg = theme.xcolor9
|
||||
theme.notification_crit_fg = theme.xcolor0
|
||||
theme.notification_icon_size = dpi(60)
|
||||
-- theme.notification_height = dpi(80)
|
||||
-- theme.notification_width = dpi(300)
|
||||
theme.notification_margin = dpi(15)
|
||||
theme.notification_opacity = 1
|
||||
theme.notification_font = theme.font
|
||||
theme.notification_padding = dpi(20)
|
||||
theme.notification_spacing = dpi(10)
|
||||
|
||||
-- Edge snap
|
||||
theme.snap_bg = theme.xcolor4
|
||||
theme.snap_shape = gears.shape.rectangle
|
||||
|
||||
-- Prompts
|
||||
theme.prompt_bg = transparent
|
||||
theme.prompt_fg = theme.xforeground
|
||||
|
||||
-- Tooltips
|
||||
theme.tooltip_bg = theme.xcolor0
|
||||
theme.tooltip_fg = theme.xforeground
|
||||
theme.tooltip_font = theme.font
|
||||
theme.tooltip_border_width = dpi(0)
|
||||
theme.tooltip_border_color = theme.xcolor0
|
||||
theme.tooltip_opacity = 1
|
||||
theme.tooltip_align = "left"
|
||||
|
||||
-- Sidebar
|
||||
-- (Sidebar items can be customized in sidebar.lua)
|
||||
theme.sidebar_bg = theme.xbackground
|
||||
theme.sidebar_bg_alt = theme.xcolor0
|
||||
theme.sidebar_fg = theme.xcolor7
|
||||
theme.sidebar_opacity = 1
|
||||
theme.sidebar_position = "right" -- left or right
|
||||
theme.sidebar_width = dpi(330)
|
||||
-- theme.sidebar_height =
|
||||
theme.sidebar_y = dpi(0)
|
||||
theme.sidebar_hide_on_mouse_leave = true
|
||||
theme.sidebar_show_on_mouse_edge = true
|
||||
|
||||
-- Mpd song
|
||||
theme.mpd_song_title_color = theme.xcolor7
|
||||
theme.mpd_song_artist_color = theme.xcolor7
|
||||
theme.mpd_song_paused_color = theme.xcolor8
|
||||
|
||||
-- Volume bar
|
||||
theme.volume_bar_active_color = theme.xcolor4
|
||||
theme.volume_bar_active_background_color = theme.xcolor0
|
||||
theme.volume_bar_muted_color = theme.xcolor8
|
||||
theme.volume_bar_muted_background_color = theme.xcolor0
|
||||
|
||||
-- Temperature bar
|
||||
theme.temperature_bar_active_color = theme.xcolor4
|
||||
theme.temperature_bar_background_color = theme.xcolor0
|
||||
|
||||
-- Battery bar
|
||||
theme.battery_bar_active_color = theme.xcolor4
|
||||
theme.battery_bar_background_color = theme.xcolor0
|
||||
|
||||
-- CPU bar
|
||||
theme.cpu_bar_active_color = theme.xcolor4
|
||||
theme.cpu_bar_background_color = theme.xcolor0
|
||||
|
||||
-- RAM bar
|
||||
theme.ram_bar_active_color = theme.xcolor4
|
||||
theme.ram_bar_background_color = theme.xcolor0
|
||||
|
||||
|
||||
-- Menu
|
||||
theme.menu_bg_focus = theme.xcolor4
|
||||
theme.menu_fg_focus = theme.xcolor7
|
||||
theme.menu_bg_normal = theme.xbackground
|
||||
theme.menu_fg_normal = theme.xcolor7
|
||||
theme.menu_submenu_icon = "~/.config/awesome/themes/archlabs/submenu.png"
|
||||
theme.menu_height = dpi(30)
|
||||
theme.menu_width = dpi(180)
|
||||
theme.menu_border_color = theme.xbackground
|
||||
theme.menu_border_width = dpi(8)
|
||||
|
||||
-- You can add as many variables as
|
||||
-- you wish and access them by using
|
||||
-- beautiful.variable in your rc.lua
|
||||
--theme.bg_widget = "#cc0000"
|
||||
|
||||
-- Recolor Layout icons:
|
||||
theme = theme_assets.recolor_layout(theme, theme.xforeground)
|
||||
|
||||
-- Titlebar buttons: Define the images to load
|
||||
theme.titlebar_close_button_normal = tip .. "close_normal.svg"
|
||||
theme.titlebar_close_button_focus = tip .. "close_focus.svg"
|
||||
theme.titlebar_minimize_button_normal = tip .. "minimize_normal.svg"
|
||||
theme.titlebar_minimize_button_focus = tip .. "minimize_focus.svg"
|
||||
theme.titlebar_ontop_button_normal_inactive = tip .. "ontop_normal_inactive.svg"
|
||||
theme.titlebar_ontop_button_focus_inactive = tip .. "ontop_focus_inactive.svg"
|
||||
theme.titlebar_ontop_button_normal_active = tip .. "ontop_normal_active.svg"
|
||||
theme.titlebar_ontop_button_focus_active = tip .. "ontop_focus_active.svg"
|
||||
theme.titlebar_sticky_button_normal_inactive = tip .. "sticky_normal_inactive.svg"
|
||||
theme.titlebar_sticky_button_focus_inactive = tip .. "sticky_focus_inactive.svg"
|
||||
theme.titlebar_sticky_button_normal_active = tip .. "sticky_normal_active.svg"
|
||||
theme.titlebar_sticky_button_focus_active = tip .. "sticky_focus_active.svg"
|
||||
theme.titlebar_floating_button_normal_inactive = tip .. "floating_normal_inactive.svg"
|
||||
theme.titlebar_floating_button_focus_inactive = tip .. "floating_focus_inactive.svg"
|
||||
theme.titlebar_floating_button_normal_active = tip .. "floating_normal_active.svg"
|
||||
theme.titlebar_floating_button_focus_active = tip .. "floating_focus_active.svg"
|
||||
theme.titlebar_maximized_button_normal_inactive = tip .. "maximized_normal_inactive.svg"
|
||||
theme.titlebar_maximized_button_focus_inactive = tip .. "maximized_focus_inactive.svg"
|
||||
theme.titlebar_maximized_button_normal_active = tip .. "maximized_normal_active.svg"
|
||||
theme.titlebar_maximized_button_focus_active = tip .. "maximized_focus_active.svg"
|
||||
-- (hover)
|
||||
theme.titlebar_close_button_normal_hover = tip .. "close_normal_hover.svg"
|
||||
theme.titlebar_close_button_focus_hover = tip .. "close_focus_hover.svg"
|
||||
theme.titlebar_minimize_button_normal_hover = tip .. "minimize_normal_hover.svg"
|
||||
theme.titlebar_minimize_button_focus_hover = tip .. "minimize_focus_hover.svg"
|
||||
theme.titlebar_ontop_button_normal_inactive_hover = tip .. "ontop_normal_inactive_hover.svg"
|
||||
theme.titlebar_ontop_button_focus_inactive_hover = tip .. "ontop_focus_inactive_hover.svg"
|
||||
theme.titlebar_ontop_button_normal_active_hover = tip .. "ontop_normal_active_hover.svg"
|
||||
theme.titlebar_ontop_button_focus_active_hover = tip .. "ontop_focus_active_hover.svg"
|
||||
theme.titlebar_sticky_button_normal_inactive_hover = tip .. "sticky_normal_inactive_hover.svg"
|
||||
theme.titlebar_sticky_button_focus_inactive_hover = tip .. "sticky_focus_inactive_hover.svg"
|
||||
theme.titlebar_sticky_button_normal_active_hover = tip .. "sticky_normal_active_hover.svg"
|
||||
theme.titlebar_sticky_button_focus_active_hover = tip .. "sticky_focus_active_hover.svg"
|
||||
theme.titlebar_floating_button_normal_inactive_hover = tip .. "floating_normal_inactive_hover.svg"
|
||||
theme.titlebar_floating_button_focus_inactive_hover = tip .. "floating_focus_inactive_hover.svg"
|
||||
theme.titlebar_floating_button_normal_active_hover = tip .. "floating_normal_active_hover.svg"
|
||||
theme.titlebar_floating_button_focus_active_hover = tip .. "floating_focus_active_hover.svg"
|
||||
theme.titlebar_maximized_button_normal_inactive_hover = tip .. "maximized_normal_inactive_hover.svg"
|
||||
theme.titlebar_maximized_button_focus_inactive_hover = tip .. "maximized_focus_inactive_hover.svg"
|
||||
theme.titlebar_maximized_button_normal_active_hover = tip .. "maximized_normal_active_hover.svg"
|
||||
theme.titlebar_maximized_button_focus_active_hover = tip .. "maximized_focus_active_hover.svg"
|
||||
|
||||
-- Define the icon theme for application icons. If not set then the icons
|
||||
-- from /usr/share/icons and /usr/share/icons/hicolor will be used.
|
||||
theme.icon_theme = nil
|
||||
|
||||
-- Generate Awesome icon:
|
||||
theme.awesome_icon = theme_assets.awesome_icon(
|
||||
theme.menu_height, theme.bg_focus, theme.fg_focus
|
||||
)
|
||||
|
||||
-- Generate taglist squares:
|
||||
-- Set size 0 to disable
|
||||
local taglist_square_size = dpi(0)
|
||||
theme.taglist_squares_sel = theme_assets.taglist_squares_sel(
|
||||
taglist_square_size, theme.xcolor4
|
||||
)
|
||||
theme.taglist_squares_unsel = theme_assets.taglist_squares_unsel(
|
||||
taglist_square_size, theme.xcolor7
|
||||
)
|
||||
|
||||
-- Try to determine if we are running light or dark colorscheme:
|
||||
local bg_numberic_value = 0;
|
||||
for s in theme.bg_normal:gmatch("[a-fA-F0-9][a-fA-F0-9]") do
|
||||
bg_numberic_value = bg_numberic_value + tonumber("0x"..s);
|
||||
end
|
||||
local is_dark_bg = (bg_numberic_value < 383)
|
||||
|
||||
return theme
|
||||
|
||||
|
@ -0,0 +1,11 @@
|
||||
<svg viewBox="0 0 100 100">
|
||||
<rect
|
||||
style="fill:#1da0e2; fill-opacity:1; stroke:#1E2541; stroke-width:0; stroke-opacity:1"
|
||||
width="50"
|
||||
height="50"
|
||||
x="25"
|
||||
y="25"
|
||||
ry="25"
|
||||
rx="25"
|
||||
/>
|
||||
</svg>
|
After Width: | Height: | Size: 248 B |
@ -0,0 +1,11 @@
|
||||
<svg viewBox="0 0 100 100">
|
||||
<rect
|
||||
style="fill:#57c7ff; fill-opacity:1; stroke:#1E2541; stroke-width:0; stroke-opacity:1"
|
||||
width="50"
|
||||
height="50"
|
||||
x="25"
|
||||
y="25"
|
||||
ry="25"
|
||||
rx="25"
|
||||
/>
|
||||
</svg>
|
After Width: | Height: | Size: 248 B |
@ -0,0 +1,11 @@
|
||||
<svg viewBox="0 0 100 100">
|
||||
<rect
|
||||
style="fill:#DEE6E7; fill-opacity:1; stroke:#1E2541; stroke-width:0; stroke-opacity:1"
|
||||
width="50"
|
||||
height="50"
|
||||
x="25"
|
||||
y="25"
|
||||
ry="25"
|
||||
rx="25"
|
||||
/>
|
||||
</svg>
|
After Width: | Height: | Size: 248 B |
@ -0,0 +1,11 @@
|
||||
<svg viewBox="0 0 100 100">
|
||||
<rect
|
||||
style="fill:#57c7ff; fill-opacity:1; stroke:#1E2541; stroke-width:0; stroke-opacity:1"
|
||||
width="50"
|
||||
height="50"
|
||||
x="25"
|
||||
y="25"
|
||||
ry="25"
|
||||
rx="25"
|
||||
/>
|
||||
</svg>
|
After Width: | Height: | Size: 248 B |
@ -0,0 +1,11 @@
|
||||
<svg viewBox="0 0 100 100">
|
||||
<rect
|
||||
style="fill:#1da0e2; fill-opacity:1; stroke:#1E2541; stroke-width:0; stroke-opacity:1"
|
||||
width="50"
|
||||
height="50"
|
||||
x="25"
|
||||
y="25"
|
||||
ry="25"
|
||||
rx="25"
|
||||
/>
|
||||
</svg>
|
After Width: | Height: | Size: 248 B |
@ -0,0 +1,11 @@
|
||||
<svg viewBox="0 0 100 100">
|
||||
<rect
|
||||
style="fill:#57c7ff; fill-opacity:1; stroke:#1E2541; stroke-width:0; stroke-opacity:1"
|
||||
width="50"
|
||||
height="50"
|
||||
x="25"
|
||||
y="25"
|
||||
ry="25"
|
||||
rx="25"
|
||||
/>
|
||||
</svg>
|
After Width: | Height: | Size: 248 B |
@ -0,0 +1,11 @@
|
||||
<svg viewBox="0 0 100 100">
|
||||
<rect
|
||||
style="fill:#1da0e2; fill-opacity:1; stroke:#1E2541; stroke-width:0; stroke-opacity:1"
|
||||
width="50"
|
||||
height="50"
|
||||
x="25"
|
||||
y="25"
|
||||
ry="25"
|
||||
rx="25"
|
||||
/>
|
||||
</svg>
|
After Width: | Height: | Size: 248 B |
@ -0,0 +1,11 @@
|
||||
<svg viewBox="0 0 100 100">
|
||||
<rect
|
||||
style="fill:#57c7ff; fill-opacity:1; stroke:#1E2541; stroke-width:0; stroke-opacity:1"
|
||||
width="50"
|
||||
height="50"
|
||||
x="25"
|
||||
y="25"
|
||||
ry="25"
|
||||
rx="25"
|
||||
/>
|
||||
</svg>
|
After Width: | Height: | Size: 248 B |
@ -0,0 +1,11 @@
|
||||
<svg viewBox="0 0 100 100">
|
||||
<rect
|
||||
style="fill:#DEE6E7; fill-opacity:1; stroke:#1E2541; stroke-width:0; stroke-opacity:1"
|
||||
width="50"
|
||||
height="50"
|
||||
x="25"
|
||||
y="25"
|
||||
ry="25"
|
||||
rx="25"
|
||||
/>
|
||||
</svg>
|
After Width: | Height: | Size: 248 B |
@ -0,0 +1,11 @@
|
||||
<svg viewBox="0 0 100 100">
|
||||
<rect
|
||||
style="fill:#57c7ff; fill-opacity:1; stroke:#1E2541; stroke-width:0; stroke-opacity:1"
|
||||
width="50"
|
||||
height="50"
|
||||
x="25"
|
||||
y="25"
|
||||
ry="25"
|
||||
rx="25"
|
||||
/>
|
||||
</svg>
|
After Width: | Height: | Size: 248 B |
@ -0,0 +1,11 @@
|
||||
<svg viewBox="0 0 100 100">
|
||||
<rect
|
||||
style="fill:#DEE6E7; fill-opacity:1; stroke:#1E2541; stroke-width:0; stroke-opacity:1"
|
||||
width="50"
|
||||
height="50"
|
||||
x="25"
|
||||
y="25"
|
||||
ry="25"
|
||||
rx="25"
|
||||
/>
|
||||
</svg>
|
After Width: | Height: | Size: 248 B |
@ -0,0 +1,11 @@
|
||||
<svg viewBox="0 0 100 100">
|
||||
<rect
|
||||
style="fill:#57c7ff; fill-opacity:1; stroke:#1E2541; stroke-width:0; stroke-opacity:1"
|
||||
width="50"
|
||||
height="50"
|
||||
x="25"
|
||||
y="25"
|
||||
ry="25"
|
||||
rx="25"
|
||||
/>
|
||||
</svg>
|
After Width: | Height: | Size: 248 B |
@ -0,0 +1,11 @@
|
||||
<svg viewBox="0 0 100 100">
|
||||
<rect
|
||||
style="fill:#1da0e2; fill-opacity:1; stroke:#1E2541; stroke-width:0; stroke-opacity:1"
|
||||
width="50"
|
||||
height="50"
|
||||
x="25"
|
||||
y="25"
|
||||
ry="25"
|
||||
rx="25"
|
||||
/>
|
||||
</svg>
|
After Width: | Height: | Size: 248 B |
@ -0,0 +1,11 @@
|
||||
<svg viewBox="0 0 100 100">
|
||||
<rect
|
||||
style="fill:#57c7ff; fill-opacity:1; stroke:#1E2541; stroke-width:0; stroke-opacity:1"
|
||||
width="50"
|
||||
height="50"
|
||||
x="25"
|
||||
y="25"
|
||||
ry="25"
|
||||
rx="25"
|
||||
/>
|
||||
</svg>
|
After Width: | Height: | Size: 248 B |
@ -0,0 +1,11 @@
|
||||
<svg viewBox="0 0 100 100">
|
||||
<rect
|
||||
style="fill:#1da0e2; fill-opacity:1; stroke:#1E2541; stroke-width:0; stroke-opacity:1"
|
||||
width="50"
|
||||
height="50"
|
||||
x="25"
|
||||
y="25"
|
||||
ry="25"
|
||||
rx="25"
|
||||
/>
|
||||
</svg>
|
After Width: | Height: | Size: 248 B |
@ -0,0 +1,11 @@
|
||||
<svg viewBox="0 0 100 100">
|
||||
<rect
|
||||
style="fill:#57c7ff; fill-opacity:1; stroke:#1E2541; stroke-width:0; stroke-opacity:1"
|
||||
width="50"
|
||||
height="50"
|
||||
x="25"
|
||||
y="25"
|
||||
ry="25"
|
||||
rx="25"
|
||||
/>
|
||||
</svg>
|
After Width: | Height: | Size: 248 B |
@ -0,0 +1,11 @@
|
||||
<svg viewBox="0 0 100 100">
|
||||
<rect
|
||||
style="fill:#DEE6E7; fill-opacity:1; stroke:#1E2541; stroke-width:0; stroke-opacity:1"
|
||||
width="50"
|
||||
height="50"
|
||||
x="25"
|
||||
y="25"
|
||||
ry="25"
|
||||
rx="25"
|
||||
/>
|
||||
</svg>
|
After Width: | Height: | Size: 248 B |
@ -0,0 +1,11 @@
|
||||
<svg viewBox="0 0 100 100">
|
||||
<rect
|
||||
style="fill:#57c7ff; fill-opacity:1; stroke:#1E2541; stroke-width:0; stroke-opacity:1"
|
||||
width="50"
|
||||
height="50"
|
||||
x="25"
|
||||
y="25"
|
||||
ry="25"
|
||||
rx="25"
|
||||
/>
|
||||
</svg>
|
After Width: | Height: | Size: 248 B |
@ -0,0 +1,11 @@
|
||||
<svg viewBox="0 0 100 100">
|
||||
<rect
|
||||
style="fill:#DEE6E7; fill-opacity:1; stroke:#1E2541; stroke-width:0; stroke-opacity:1"
|
||||
width="50"
|
||||
height="50"
|
||||
x="25"
|
||||
y="25"
|
||||
ry="25"
|
||||
rx="25"
|
||||
/>
|
||||
</svg>
|
After Width: | Height: | Size: 248 B |
@ -0,0 +1,11 @@
|
||||
<svg viewBox="0 0 100 100">
|
||||
<rect
|
||||
style="fill:#57c7ff; fill-opacity:1; stroke:#1E2541; stroke-width:0; stroke-opacity:1"
|
||||
width="50"
|
||||
height="50"
|
||||
x="25"
|
||||
y="25"
|
||||
ry="25"
|
||||
rx="25"
|
||||
/>
|
||||
</svg>
|
After Width: | Height: | Size: 248 B |
@ -0,0 +1,11 @@
|
||||
<svg viewBox="0 0 100 100">
|
||||
<rect
|
||||
style="fill:#1da0e2; fill-opacity:1; stroke:#1E2541; stroke-width:0; stroke-opacity:1"
|
||||
width="50"
|
||||
height="50"
|
||||
x="25"
|
||||
y="25"
|
||||
ry="25"
|
||||
rx="25"
|
||||
/>
|
||||
</svg>
|
After Width: | Height: | Size: 248 B |
@ -0,0 +1,11 @@
|
||||
<svg viewBox="0 0 100 100">
|
||||
<rect
|
||||
style="fill:#57c7ff; fill-opacity:1; stroke:#1E2541; stroke-width:0; stroke-opacity:1"
|
||||
width="50"
|
||||
height="50"
|
||||
x="25"
|
||||
y="25"
|
||||
ry="25"
|
||||
rx="25"
|
||||
/>
|
||||
</svg>
|
After Width: | Height: | Size: 248 B |
@ -0,0 +1,11 @@
|
||||
<svg viewBox="0 0 100 100">
|
||||
<rect
|
||||
style="fill:#DEE6E7; fill-opacity:1; stroke:#1E2541; stroke-width:0; stroke-opacity:1"
|
||||
width="50"
|
||||
height="50"
|
||||
x="25"
|
||||
y="25"
|
||||
ry="25"
|
||||
rx="25"
|
||||
/>
|
||||
</svg>
|
After Width: | Height: | Size: 248 B |
@ -0,0 +1,11 @@
|
||||
<svg viewBox="0 0 100 100">
|
||||
<rect
|
||||
style="fill:#57c7ff; fill-opacity:1; stroke:#1E2541; stroke-width:0; stroke-opacity:1"
|
||||
width="50"
|
||||
height="50"
|
||||
x="25"
|
||||
y="25"
|
||||
ry="25"
|
||||
rx="25"
|
||||
/>
|
||||
</svg>
|
After Width: | Height: | Size: 248 B |
@ -0,0 +1,11 @@
|
||||
<svg viewBox="0 0 100 100">
|
||||
<rect
|
||||
style="fill:#1da0e2; fill-opacity:1; stroke:#1E2541; stroke-width:0; stroke-opacity:1"
|
||||
width="50"
|
||||
height="50"
|
||||
x="25"
|
||||
y="25"
|
||||
ry="25"
|
||||
rx="25"
|
||||
/>
|
||||
</svg>
|
After Width: | Height: | Size: 248 B |
@ -0,0 +1,11 @@
|
||||
<svg viewBox="0 0 100 100">
|
||||
<rect
|
||||
style="fill:#57c7ff; fill-opacity:1; stroke:#1E2541; stroke-width:0; stroke-opacity:1"
|
||||
width="50"
|
||||
height="50"
|
||||
x="25"
|
||||
y="25"
|
||||
ry="25"
|
||||
rx="25"
|
||||
/>
|
||||
</svg>
|
After Width: | Height: | Size: 248 B |
@ -0,0 +1,11 @@
|
||||
<svg viewBox="0 0 100 100">
|
||||
<rect
|
||||
style="fill:#1da0e2; fill-opacity:1; stroke:#1E2541; stroke-width:0; stroke-opacity:1"
|
||||
width="50"
|
||||
height="50"
|
||||
x="25"
|
||||
y="25"
|
||||
ry="25"
|
||||
rx="25"
|
||||
/>
|
||||
</svg>
|
After Width: | Height: | Size: 248 B |
@ -0,0 +1,11 @@
|
||||
<svg viewBox="0 0 100 100">
|
||||
<rect
|
||||
style="fill:#57c7ff; fill-opacity:1; stroke:#1E2541; stroke-width:0; stroke-opacity:1"
|
||||
width="50"
|
||||
height="50"
|
||||
x="25"
|
||||
y="25"
|
||||
ry="25"
|
||||
rx="25"
|
||||
/>
|
||||
</svg>
|
After Width: | Height: | Size: 248 B |
@ -0,0 +1,11 @@
|
||||
<svg viewBox="0 0 100 100">
|
||||
<rect
|
||||
style="fill:#DEE6E7; fill-opacity:1; stroke:#1E2541; stroke-width:0; stroke-opacity:1"
|
||||
width="50"
|
||||
height="50"
|
||||
x="25"
|
||||
y="25"
|
||||
ry="25"
|
||||
rx="25"
|
||||
/>
|
||||
</svg>
|
After Width: | Height: | Size: 248 B |
@ -0,0 +1,11 @@
|
||||
<svg viewBox="0 0 100 100">
|
||||
<rect
|
||||
style="fill:#57c7ff; fill-opacity:1; stroke:#1E2541; stroke-width:0; stroke-opacity:1"
|
||||
width="50"
|
||||
height="50"
|
||||
x="25"
|
||||
y="25"
|
||||
ry="25"
|
||||
rx="25"
|
||||
/>
|
||||
</svg>
|
After Width: | Height: | Size: 248 B |
@ -0,0 +1,11 @@
|
||||
<svg viewBox="0 0 100 100">
|
||||
<rect
|
||||
style="fill:#DEE6E7; fill-opacity:1; stroke:#1E2541; stroke-width:0; stroke-opacity:1"
|
||||
width="50"
|
||||
height="50"
|
||||
x="25"
|
||||
y="25"
|
||||
ry="25"
|
||||
rx="25"
|
||||
/>
|
||||
</svg>
|
After Width: | Height: | Size: 248 B |
@ -0,0 +1,11 @@
|
||||
<svg viewBox="0 0 100 100">
|
||||
<rect
|
||||
style="fill:#57c7ff; fill-opacity:1; stroke:#1E2541; stroke-width:0; stroke-opacity:1"
|
||||
width="50"
|
||||
height="50"
|
||||
x="25"
|
||||
y="25"
|
||||
ry="25"
|
||||
rx="25"
|
||||
/>
|
||||
</svg>
|
After Width: | Height: | Size: 248 B |
@ -0,0 +1,11 @@
|
||||
<svg viewBox="0 0 100 100">
|
||||
<rect
|
||||
style="fill:#1da0e2; fill-opacity:1; stroke:#1E2541; stroke-width:0; stroke-opacity:1"
|
||||
width="50"
|
||||
height="50"
|
||||
x="25"
|
||||
y="25"
|
||||
ry="25"
|
||||
rx="25"
|
||||
/>
|
||||
</svg>
|
After Width: | Height: | Size: 248 B |
@ -0,0 +1,11 @@
|
||||
<svg viewBox="0 0 100 100">
|
||||
<rect
|
||||
style="fill:#57c7ff; fill-opacity:1; stroke:#1E2541; stroke-width:0; stroke-opacity:1"
|
||||
width="50"
|
||||
height="50"
|
||||
x="25"
|
||||
y="25"
|
||||
ry="25"
|
||||
rx="25"
|
||||
/>
|
||||
</svg>
|
After Width: | Height: | Size: 248 B |
@ -0,0 +1,11 @@
|
||||
<svg viewBox="0 0 100 100">
|
||||
<rect
|
||||
style="fill:#1da0e2; fill-opacity:1; stroke:#1E2541; stroke-width:0; stroke-opacity:1"
|
||||
width="50"
|
||||
height="50"
|
||||
x="25"
|
||||
y="25"
|
||||
ry="25"
|
||||
rx="25"
|
||||
/>
|
||||
</svg>
|
After Width: | Height: | Size: 248 B |
@ -0,0 +1,11 @@
|
||||
<svg viewBox="0 0 100 100">
|
||||
<rect
|
||||
style="fill:#57c7ff; fill-opacity:1; stroke:#1E2541; stroke-width:0; stroke-opacity:1"
|
||||
width="50"
|
||||
height="50"
|
||||
x="25"
|
||||
y="25"
|
||||
ry="25"
|
||||
rx="25"
|
||||
/>
|
||||
</svg>
|
After Width: | Height: | Size: 248 B |
@ -0,0 +1,11 @@
|
||||
<svg viewBox="0 0 100 100">
|
||||
<rect
|
||||
style="fill:#DEE6E7; fill-opacity:1; stroke:#1E2541; stroke-width:0; stroke-opacity:1"
|
||||
width="50"
|
||||
height="50"
|
||||
x="25"
|
||||
y="25"
|
||||
ry="25"
|
||||
rx="25"
|
||||
/>
|
||||
</svg>
|
After Width: | Height: | Size: 248 B |
@ -0,0 +1,11 @@
|
||||
<svg viewBox="0 0 100 100">
|
||||
<rect
|
||||
style="fill:#57c7ff; fill-opacity:1; stroke:#1E2541; stroke-width:0; stroke-opacity:1"
|
||||
width="50"
|
||||
height="50"
|
||||
x="25"
|
||||
y="25"
|
||||
ry="25"
|
||||
rx="25"
|
||||
/>
|
||||
</svg>
|
After Width: | Height: | Size: 248 B |
@ -0,0 +1,11 @@
|
||||
<svg viewBox="0 0 100 100">
|
||||
<rect
|
||||
style="fill:#DEE6E7; fill-opacity:1; stroke:#1E2541; stroke-width:0; stroke-opacity:1"
|
||||
width="50"
|
||||
height="50"
|
||||
x="25"
|
||||
y="25"
|
||||
ry="25"
|
||||
rx="25"
|
||||
/>
|
||||
</svg>
|
After Width: | Height: | Size: 248 B |
@ -0,0 +1,11 @@
|
||||
<svg viewBox="0 0 100 100">
|
||||
<rect
|
||||
style="fill:#57c7ff; fill-opacity:1; stroke:#1E2541; stroke-width:0; stroke-opacity:1"
|
||||
width="50"
|
||||
height="50"
|
||||
x="25"
|
||||
y="25"
|
||||
ry="25"
|
||||
rx="25"
|
||||
/>
|
||||
</svg>
|
After Width: | Height: | Size: 248 B |
3
awesome-home/.config/awesome/themes/default/README
Normal file
@ -0,0 +1,3 @@
|
||||
Background images:
|
||||
Mikael Eriksson <mikael_eriksson@miffe.org>
|
||||
Licensed under CC-BY-SA-3.0
|
BIN
awesome-home/.config/awesome/themes/default/background.png
Normal file
After Width: | Height: | Size: 218 KiB |
BIN
awesome-home/.config/awesome/themes/default/background_white.png
Normal file
After Width: | Height: | Size: 262 KiB |
BIN
awesome-home/.config/awesome/themes/default/layouts/cornerne.png
Normal file
After Width: | Height: | Size: 272 B |
After Width: | Height: | Size: 272 B |
BIN
awesome-home/.config/awesome/themes/default/layouts/cornernw.png
Normal file
After Width: | Height: | Size: 263 B |
After Width: | Height: | Size: 264 B |
BIN
awesome-home/.config/awesome/themes/default/layouts/cornerse.png
Normal file
After Width: | Height: | Size: 264 B |
After Width: | Height: | Size: 264 B |
BIN
awesome-home/.config/awesome/themes/default/layouts/cornersw.png
Normal file
After Width: | Height: | Size: 263 B |
After Width: | Height: | Size: 264 B |
BIN
awesome-home/.config/awesome/themes/default/layouts/dwindle.png
Normal file
After Width: | Height: | Size: 320 B |
BIN
awesome-home/.config/awesome/themes/default/layouts/dwindlew.png
Normal file
After Width: | Height: | Size: 320 B |
BIN
awesome-home/.config/awesome/themes/default/layouts/fairh.png
Normal file
After Width: | Height: | Size: 245 B |
BIN
awesome-home/.config/awesome/themes/default/layouts/fairhw.png
Normal file
After Width: | Height: | Size: 245 B |
BIN
awesome-home/.config/awesome/themes/default/layouts/fairv.png
Normal file
After Width: | Height: | Size: 246 B |
BIN
awesome-home/.config/awesome/themes/default/layouts/fairvw.png
Normal file
After Width: | Height: | Size: 246 B |
BIN
awesome-home/.config/awesome/themes/default/layouts/floating.png
Normal file
After Width: | Height: | Size: 282 B |
After Width: | Height: | Size: 282 B |
After Width: | Height: | Size: 866 B |
After Width: | Height: | Size: 865 B |
After Width: | Height: | Size: 345 B |
After Width: | Height: | Size: 345 B |
BIN
awesome-home/.config/awesome/themes/default/layouts/max.png
Normal file
After Width: | Height: | Size: 574 B |
BIN
awesome-home/.config/awesome/themes/default/layouts/maxw.png
Normal file
After Width: | Height: | Size: 581 B |
BIN
awesome-home/.config/awesome/themes/default/layouts/spiral.png
Normal file
After Width: | Height: | Size: 328 B |
BIN
awesome-home/.config/awesome/themes/default/layouts/spiralw.png
Normal file
After Width: | Height: | Size: 328 B |
BIN
awesome-home/.config/awesome/themes/default/layouts/tile.png
Normal file
After Width: | Height: | Size: 265 B |
After Width: | Height: | Size: 264 B |
After Width: | Height: | Size: 264 B |
BIN
awesome-home/.config/awesome/themes/default/layouts/tileleft.png
Normal file
After Width: | Height: | Size: 266 B |
After Width: | Height: | Size: 266 B |
BIN
awesome-home/.config/awesome/themes/default/layouts/tiletop.png
Normal file
After Width: | Height: | Size: 260 B |
BIN
awesome-home/.config/awesome/themes/default/layouts/tiletopw.png
Normal file
After Width: | Height: | Size: 265 B |
BIN
awesome-home/.config/awesome/themes/default/layouts/tilew.png
Normal file
After Width: | Height: | Size: 265 B |
BIN
awesome-home/.config/awesome/themes/default/submenu.png
Normal file
After Width: | Height: | Size: 440 B |
BIN
awesome-home/.config/awesome/themes/default/taglist/squarefw.png
Normal file
After Width: | Height: | Size: 969 B |
BIN
awesome-home/.config/awesome/themes/default/taglist/squarew.png
Normal file
After Width: | Height: | Size: 974 B |
131
awesome-home/.config/awesome/themes/default/theme.lua
Normal file
@ -0,0 +1,131 @@
|
||||
---------------------------
|
||||
-- Default awesome theme --
|
||||
---------------------------
|
||||
|
||||
local theme_assets = require("beautiful.theme_assets")
|
||||
local xresources = require("beautiful.xresources")
|
||||
local dpi = xresources.apply_dpi
|
||||
|
||||
local gfs = require("gears.filesystem")
|
||||
local themes_path = gfs.get_themes_dir()
|
||||
|
||||
local theme = {}
|
||||
|
||||
theme.font = "sans 8"
|
||||
|
||||
theme.bg_normal = "#222222"
|
||||
theme.bg_focus = "#535d6c"
|
||||
theme.bg_urgent = "#ff0000"
|
||||
theme.bg_minimize = "#444444"
|
||||
theme.bg_systray = theme.bg_normal
|
||||
|
||||
theme.fg_normal = "#aaaaaa"
|
||||
theme.fg_focus = "#ffffff"
|
||||
theme.fg_urgent = "#ffffff"
|
||||
theme.fg_minimize = "#ffffff"
|
||||
|
||||
theme.useless_gap = dpi(0)
|
||||
theme.border_width = dpi(1)
|
||||
theme.border_normal = "#000000"
|
||||
theme.border_focus = "#535d6c"
|
||||
theme.border_marked = "#91231c"
|
||||
|
||||
-- There are other variable sets
|
||||
-- overriding the default one when
|
||||
-- defined, the sets are:
|
||||
-- taglist_[bg|fg]_[focus|urgent|occupied|empty|volatile]
|
||||
-- tasklist_[bg|fg]_[focus|urgent]
|
||||
-- titlebar_[bg|fg]_[normal|focus]
|
||||
-- tooltip_[font|opacity|fg_color|bg_color|border_width|border_color]
|
||||
-- mouse_finder_[color|timeout|animate_timeout|radius|factor]
|
||||
-- prompt_[fg|bg|fg_cursor|bg_cursor|font]
|
||||
-- hotkeys_[bg|fg|border_width|border_color|shape|opacity|modifiers_fg|label_bg|label_fg|group_margin|font|description_font]
|
||||
-- Example:
|
||||
--theme.taglist_bg_focus = "#ff0000"
|
||||
|
||||
-- Generate taglist squares:
|
||||
local taglist_square_size = dpi(4)
|
||||
theme.taglist_squares_sel = theme_assets.taglist_squares_sel(
|
||||
taglist_square_size, theme.fg_normal
|
||||
)
|
||||
theme.taglist_squares_unsel = theme_assets.taglist_squares_unsel(
|
||||
taglist_square_size, theme.fg_normal
|
||||
)
|
||||
|
||||
-- Variables set for theming notifications:
|
||||
-- notification_font
|
||||
-- notification_[bg|fg]
|
||||
-- notification_[width|height|margin]
|
||||
-- notification_[border_color|border_width|shape|opacity]
|
||||
|
||||
-- Variables set for theming the menu:
|
||||
-- menu_[bg|fg]_[normal|focus]
|
||||
-- menu_[border_color|border_width]
|
||||
theme.menu_submenu_icon = themes_path.."default/submenu.png"
|
||||
theme.menu_height = dpi(15)
|
||||
theme.menu_width = dpi(100)
|
||||
|
||||
-- You can add as many variables as
|
||||
-- you wish and access them by using
|
||||
-- beautiful.variable in your rc.lua
|
||||
--theme.bg_widget = "#cc0000"
|
||||
|
||||
-- Define the image to load
|
||||
theme.titlebar_close_button_normal = themes_path.."default/titlebar/close_normal.png"
|
||||
theme.titlebar_close_button_focus = themes_path.."default/titlebar/close_focus.png"
|
||||
|
||||
theme.titlebar_minimize_button_normal = themes_path.."default/titlebar/minimize_normal.png"
|
||||
theme.titlebar_minimize_button_focus = themes_path.."default/titlebar/minimize_focus.png"
|
||||
|
||||
theme.titlebar_ontop_button_normal_inactive = themes_path.."default/titlebar/ontop_normal_inactive.png"
|
||||
theme.titlebar_ontop_button_focus_inactive = themes_path.."default/titlebar/ontop_focus_inactive.png"
|
||||
theme.titlebar_ontop_button_normal_active = themes_path.."default/titlebar/ontop_normal_active.png"
|
||||
theme.titlebar_ontop_button_focus_active = themes_path.."default/titlebar/ontop_focus_active.png"
|
||||
|
||||
theme.titlebar_sticky_button_normal_inactive = themes_path.."default/titlebar/sticky_normal_inactive.png"
|
||||
theme.titlebar_sticky_button_focus_inactive = themes_path.."default/titlebar/sticky_focus_inactive.png"
|
||||
theme.titlebar_sticky_button_normal_active = themes_path.."default/titlebar/sticky_normal_active.png"
|
||||
theme.titlebar_sticky_button_focus_active = themes_path.."default/titlebar/sticky_focus_active.png"
|
||||
|
||||
theme.titlebar_floating_button_normal_inactive = themes_path.."default/titlebar/floating_normal_inactive.png"
|
||||
theme.titlebar_floating_button_focus_inactive = themes_path.."default/titlebar/floating_focus_inactive.png"
|
||||
theme.titlebar_floating_button_normal_active = themes_path.."default/titlebar/floating_normal_active.png"
|
||||
theme.titlebar_floating_button_focus_active = themes_path.."default/titlebar/floating_focus_active.png"
|
||||
|
||||
theme.titlebar_maximized_button_normal_inactive = themes_path.."default/titlebar/maximized_normal_inactive.png"
|
||||
theme.titlebar_maximized_button_focus_inactive = themes_path.."default/titlebar/maximized_focus_inactive.png"
|
||||
theme.titlebar_maximized_button_normal_active = themes_path.."default/titlebar/maximized_normal_active.png"
|
||||
theme.titlebar_maximized_button_focus_active = themes_path.."default/titlebar/maximized_focus_active.png"
|
||||
|
||||
theme.wallpaper = themes_path.."default/background.png"
|
||||
|
||||
-- You can use your own layout icons like this:
|
||||
theme.layout_fairh = themes_path.."default/layouts/fairhw.png"
|
||||
theme.layout_fairv = themes_path.."default/layouts/fairvw.png"
|
||||
theme.layout_floating = themes_path.."default/layouts/floatingw.png"
|
||||
theme.layout_magnifier = themes_path.."default/layouts/magnifierw.png"
|
||||
theme.layout_max = themes_path.."default/layouts/maxw.png"
|
||||
theme.layout_fullscreen = themes_path.."default/layouts/fullscreenw.png"
|
||||
theme.layout_tilebottom = themes_path.."default/layouts/tilebottomw.png"
|
||||
theme.layout_tileleft = themes_path.."default/layouts/tileleftw.png"
|
||||
theme.layout_tile = themes_path.."default/layouts/tilew.png"
|
||||
theme.layout_tiletop = themes_path.."default/layouts/tiletopw.png"
|
||||
theme.layout_spiral = themes_path.."default/layouts/spiralw.png"
|
||||
theme.layout_dwindle = themes_path.."default/layouts/dwindlew.png"
|
||||
theme.layout_cornernw = themes_path.."default/layouts/cornernww.png"
|
||||
theme.layout_cornerne = themes_path.."default/layouts/cornernew.png"
|
||||
theme.layout_cornersw = themes_path.."default/layouts/cornersww.png"
|
||||
theme.layout_cornerse = themes_path.."default/layouts/cornersew.png"
|
||||
|
||||
-- Generate Awesome icon:
|
||||
theme.awesome_icon = theme_assets.awesome_icon(
|
||||
theme.menu_height, theme.bg_focus, theme.fg_focus
|
||||
)
|
||||
|
||||
-- Define the icon theme for application icons. If not set then the icons
|
||||
-- from /usr/share/icons and /usr/share/icons/hicolor will be used.
|
||||
theme.icon_theme = nil
|
||||
|
||||
return theme
|
||||
|
||||
-- vim: filetype=lua:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:textwidth=80
|
After Width: | Height: | Size: 966 B |
After Width: | Height: | Size: 966 B |
After Width: | Height: | Size: 386 B |
After Width: | Height: | Size: 237 B |
After Width: | Height: | Size: 386 B |
After Width: | Height: | Size: 237 B |
After Width: | Height: | Size: 480 B |
After Width: | Height: | Size: 452 B |
After Width: | Height: | Size: 480 B |
After Width: | Height: | Size: 452 B |
After Width: | Height: | Size: 234 B |
After Width: | Height: | Size: 225 B |
After Width: | Height: | Size: 467 B |
After Width: | Height: | Size: 604 B |
After Width: | Height: | Size: 467 B |
After Width: | Height: | Size: 604 B |