clean 🫠
|
@ -1,227 +0,0 @@
|
|||
---------------------------
|
||||
-- Default awesome theme --
|
||||
---------------------------
|
||||
|
||||
-- requirements
|
||||
-- ~~~~~~~~~~~~
|
||||
local gfs = require("gears.filesystem")
|
||||
local theme_assets = require("beautiful.theme_assets")
|
||||
local xresources = require("beautiful.xresources")
|
||||
local rnotification = require("ruled.notification")
|
||||
local dpi = xresources.apply_dpi
|
||||
|
||||
|
||||
-- Theme Dir :
|
||||
local themes_path = os.getenv("HOME") .. "/.config/awesome/themes/"
|
||||
|
||||
-- Titlebar Dir :
|
||||
local titlebar_theme = "mac"
|
||||
local titlebar_icon_path = os.getenv("HOME") .. "/.config/awesome/themes/icons/titlebar/" .. titlebar_theme .. "/"
|
||||
local tip = titlebar_icon_path
|
||||
|
||||
-- Layout Dir :
|
||||
local layout_icons = "colorful"
|
||||
local layout_icon_path = os.getenv("HOME") .. "/.config/awesome/themes/icons/layouts/" .. layout_icons .. "/"
|
||||
local lip = layout_icon_path
|
||||
|
||||
-- others Icons :
|
||||
local other_icon_path = os.getenv("HOME") .. "/.config/awesome/themes/icons/other/"
|
||||
local oip = other_icon_path
|
||||
|
||||
|
||||
-- Colors :
|
||||
colors = {}
|
||||
-- Dark colors
|
||||
colors.black = "#1D2021"
|
||||
colors.red = "#CC241D"
|
||||
colors.green = "#98971A"
|
||||
colors.yellow = "#D79921"
|
||||
colors.blue = "#458588"
|
||||
colors.magenta = "#B16286"
|
||||
colors.cyan = "#689D6A"
|
||||
colors.white = "#B4B4B4"
|
||||
-- Bright colors
|
||||
colors.brightblack = "#2E3233"
|
||||
colors.brightred = "#FB4934"
|
||||
colors.brightgreen = "#B8BB26"
|
||||
colors.brightyellow = "#FABD2F"
|
||||
colors.brightblue = "#83A598"
|
||||
colors.brightmagenta = "#D3869B"
|
||||
colors.brightcyan = "#8EC07C"
|
||||
colors.brightwhite = "#C5C5C5"
|
||||
-- Transparent
|
||||
colors.transparent = "#00000000"
|
||||
colors.container = "#2C3030"
|
||||
|
||||
|
||||
theme = {}
|
||||
|
||||
-- # Fonts :
|
||||
--theme.font = "iosevka Extended Bold 11"
|
||||
--theme.font = "JetBrains Mono Bold 10"
|
||||
--theme.font = "JetBrainsMono Nerd Font Bold 10"
|
||||
theme.font = "RobotoMono Nerd Font Bold 11"
|
||||
theme.taglist_font = "Font Awesome 6 Free Solid 14"
|
||||
theme.icon_font = "Font Awesome 6 Free Solid 10"
|
||||
theme.sidebar_font = "Font Awesome 6 Free Solid 16"
|
||||
theme.ui_font = "RobotoMono Nerd Font Bold 16"
|
||||
|
||||
-- # Background Colors :
|
||||
theme.bg_normal = colors.black
|
||||
theme.bg_focus = colors.brightblack
|
||||
theme.bg_urgent = colors.black
|
||||
theme.bg_minimize = colors.black
|
||||
|
||||
-- # Foreground Colors :
|
||||
theme.fg_normal = colors.brightwhite
|
||||
theme.fg_focus = colors.brightwhite
|
||||
theme.fg_urgent = colors.brightred
|
||||
theme.fg_minimize = colors.brightblack
|
||||
|
||||
--- Systray
|
||||
theme.bg_systray = colors.container
|
||||
|
||||
-- Taglist :
|
||||
theme.taglist_spacing = dpi(4)
|
||||
theme.taglist_bg_focus = colors.container
|
||||
theme.taglist_bg_urgent = colors.container
|
||||
theme.taglist_bg_empty = colors.container
|
||||
theme.taglist_fg_focus = colors.brightblue
|
||||
theme.taglist_fg_empty = colors.brightblack
|
||||
theme.taglist_fg_urgent = colors.brightgreen
|
||||
|
||||
-- Clients :
|
||||
theme.useless_gap = dpi(4)
|
||||
theme.gap_single_client = true
|
||||
theme.border_width = dpi(2)
|
||||
theme.border_normal = colors.black
|
||||
theme.border_focus = colors.brightblack
|
||||
theme.border_marked = colors.brightblack
|
||||
|
||||
-- Tasklist :
|
||||
theme.tasklist_bg_normal = colors.black
|
||||
theme.tasklist_bg_focus = colors.black
|
||||
theme.tasklist_bg_urgent = colors.green
|
||||
theme.tasklist_plain_task_name = true
|
||||
theme.tasklist_disable_task_name = false
|
||||
theme.tasklist_disable_icon = true
|
||||
|
||||
-- Notification :
|
||||
theme.notification_spacing = 20
|
||||
|
||||
-- Menu :
|
||||
theme.submenu = " "
|
||||
theme.menu_bg_normal = colors.black
|
||||
theme.menu_bg_focus = colors.brightblack
|
||||
theme.menu_border_color = colors.black
|
||||
theme.menu_height = dpi(30)
|
||||
theme.menu_width = dpi(180)
|
||||
|
||||
-- Icons :
|
||||
theme.icon_theme = "/usr/share/icons/Papirus-Dark/16x16/apps"
|
||||
theme.awesome_icon = oip .."logoarch.png"
|
||||
|
||||
theme.pfp = oip .. "pfp.jpg"
|
||||
theme.user = string.gsub(os.getenv('USER'), '^%l', string.upper)
|
||||
theme.hostname = "@Neptune"
|
||||
theme.weather_icon = oip .."weather_icon.png"
|
||||
|
||||
|
||||
-- Titlebar :
|
||||
theme.titlebar_size = dpi(20)
|
||||
theme.titlebar_position = "left"
|
||||
theme.titlebar_bg_focus = colors.black
|
||||
theme.titlebar_bg_normal = colors.black
|
||||
theme.titlebar_fg_normal = colors.white
|
||||
theme.titlebar_fg_focus = colors.brightwhite
|
||||
|
||||
-- Close Button :
|
||||
theme.titlebar_close_button_normal = tip.."close_normal.svg"
|
||||
theme.titlebar_close_button_focus = tip.."close_focus.svg"
|
||||
|
||||
-- Minimize Button :
|
||||
theme.titlebar_minimize_button_normal = tip.."minimize_normal.svg"
|
||||
theme.titlebar_minimize_button_focus = tip.."minimize_focus.svg"
|
||||
|
||||
-- Ontop Button :
|
||||
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"
|
||||
|
||||
-- Sticky Button :
|
||||
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"
|
||||
|
||||
-- Floating Button :
|
||||
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.."titlebar/stoplight/floating_focus_active.svg"
|
||||
|
||||
-- Maximized Button :
|
||||
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"
|
||||
|
||||
-- Hovered Close Button
|
||||
theme.titlebar_close_button_normal_hover = tip.. "close_normal_hover.svg"
|
||||
theme.titlebar_close_button_focus_hover = tip.. "close_focus_hover.svg"
|
||||
|
||||
-- Hovered Minimize Buttin
|
||||
theme.titlebar_minimize_button_normal_hover = tip.. "minimize_normal_hover.svg"
|
||||
theme.titlebar_minimize_button_focus_hover = tip.. "minimize_focus_hover.svg"
|
||||
|
||||
-- Hovered Ontop Button
|
||||
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"
|
||||
|
||||
-- Hovered Sticky Button
|
||||
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"
|
||||
|
||||
-- Hovered Floating Button
|
||||
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"
|
||||
|
||||
-- Hovered Maximized Button
|
||||
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"
|
||||
|
||||
-- Layoutbox icons :
|
||||
theme.layout_fairh = lip.. "fairh.png"
|
||||
theme.layout_fairv = lip.. "fairv.png"
|
||||
theme.layout_floating = lip.. "floating.png"
|
||||
theme.layout_magnifier = lip.. "magnifier.png"
|
||||
theme.layout_max = lip.. "max.png"
|
||||
theme.layout_fullscreen = lip.. "fullscreen.png"
|
||||
theme.layout_tilebottom = lip.. "tilebottom.png"
|
||||
theme.layout_tileleft = lip.. "tileleft.png"
|
||||
theme.layout_tile = lip.. "tile.png"
|
||||
theme.layout_tiletop = lip.. "tiletop.png"
|
||||
theme.layout_spiral = lip.. "spiral.png"
|
||||
theme.layout_dwindle = lip.. "dwindle.png"
|
||||
theme.layout_cornernw = lip.. "cornernw.png"
|
||||
theme.layout_cornerne = lip.. "cornerne.png"
|
||||
theme.layout_cornersw = lip.. "cornersw.png"
|
||||
theme.layout_cornerse = lip.. "cornerse.png"
|
||||
-- Bling :
|
||||
theme.layout_mstab = lip.. "mstab.png"
|
||||
theme.layout_vertical = lip.. "vertical.png"
|
||||
theme.layout_horizontal = lip.. "horizontal.png"
|
||||
theme.layout_centered = lip.. "centered.png"
|
||||
theme.layout_equalarea = lip.. "equalarea.png"
|
||||
theme.layout_deck = lip.. "deck.png"
|
||||
|
||||
return theme
|
|
@ -1,227 +0,0 @@
|
|||
---------------------------
|
||||
-- Default awesome theme --
|
||||
---------------------------
|
||||
|
||||
-- requirements
|
||||
-- ~~~~~~~~~~~~
|
||||
local gfs = require("gears.filesystem")
|
||||
local theme_assets = require("beautiful.theme_assets")
|
||||
local xresources = require("beautiful.xresources")
|
||||
local rnotification = require("ruled.notification")
|
||||
local dpi = xresources.apply_dpi
|
||||
|
||||
|
||||
-- Theme Dir :
|
||||
local themes_path = os.getenv("HOME") .. "/.config/awesome/themes/"
|
||||
|
||||
-- Titlebar Dir :
|
||||
local titlebar_theme = "mac"
|
||||
local titlebar_icon_path = os.getenv("HOME") .. "/.config/awesome/themes/icons/titlebar/" .. titlebar_theme .. "/"
|
||||
local tip = titlebar_icon_path
|
||||
|
||||
-- Layout Dir :
|
||||
local layout_icons = "blue"
|
||||
local layout_icon_path = os.getenv("HOME") .. "/.config/awesome/themes/icons/layouts/" .. layout_icons .. "/"
|
||||
local lip = layout_icon_path
|
||||
|
||||
-- others Icons :
|
||||
local other_icon_path = os.getenv("HOME") .. "/.config/awesome/themes/icons/other/"
|
||||
local oip = other_icon_path
|
||||
|
||||
|
||||
-- Colors :
|
||||
colors = {}
|
||||
-- Dark colors
|
||||
colors.black = "#1B1D24"
|
||||
colors.red = "#a54242"
|
||||
colors.green = "#8c9440"
|
||||
colors.yellow = "#de935f"
|
||||
colors.blue = "#548D91"
|
||||
colors.magenta = "#85678f"
|
||||
colors.cyan = "#5e8d87"
|
||||
colors.white = "#acacac"
|
||||
-- Bright colors
|
||||
colors.brightblack = "#242730"
|
||||
colors.brightred = "#cc6666"
|
||||
colors.brightgreen = "#b5bd68"
|
||||
colors.brightyellow = "#f0c674"
|
||||
colors.brightblue = "#81a2be"
|
||||
colors.brightmagenta = "#b294bb"
|
||||
colors.brightcyan = "#8abeb7"
|
||||
colors.brightwhite = "#c5c8c6"
|
||||
-- Transparent
|
||||
colors.transparent = "#00000000"
|
||||
colors.container = "#22252C"
|
||||
|
||||
|
||||
theme = {}
|
||||
|
||||
-- # Fonts :
|
||||
--theme.font = "iosevka Extended Bold 11"
|
||||
--theme.font = "JetBrains Mono Bold 10"
|
||||
--theme.font = "JetBrainsMono Nerd Font Bold 10"
|
||||
theme.font = "RobotoMono Nerd Font Bold 11"
|
||||
theme.taglist_font = "Font Awesome 6 Free Solid 14"
|
||||
theme.icon_font = "Font Awesome 6 Free Solid 10"
|
||||
theme.sidebar_font = "Font Awesome 6 Free Solid 16"
|
||||
theme.ui_font = "RobotoMono Nerd Font Bold 16"
|
||||
|
||||
-- # Background Colors :
|
||||
theme.bg_normal = colors.black
|
||||
theme.bg_focus = colors.brightblack
|
||||
theme.bg_urgent = colors.black
|
||||
theme.bg_minimize = colors.black
|
||||
|
||||
-- # Foreground Colors :
|
||||
theme.fg_normal = colors.brightwhite
|
||||
theme.fg_focus = colors.brightwhite
|
||||
theme.fg_urgent = colors.brightred
|
||||
theme.fg_minimize = colors.brightblack
|
||||
|
||||
--- Systray
|
||||
theme.bg_systray = colors.container
|
||||
|
||||
-- Taglist :
|
||||
theme.taglist_spacing = dpi(4)
|
||||
theme.taglist_bg_focus = colors.container
|
||||
theme.taglist_bg_urgent = colors.container
|
||||
theme.taglist_bg_empty = colors.container
|
||||
theme.taglist_fg_focus = colors.brightblue
|
||||
theme.taglist_fg_empty = colors.brightblack
|
||||
theme.taglist_fg_urgent = colors.brightgreen
|
||||
|
||||
-- Clients :
|
||||
theme.useless_gap = dpi(4)
|
||||
theme.gap_single_client = true
|
||||
theme.border_width = dpi(2)
|
||||
theme.border_normal = colors.black
|
||||
theme.border_focus = colors.brightblack
|
||||
theme.border_marked = colors.brightblack
|
||||
|
||||
-- Tasklist :
|
||||
theme.tasklist_bg_normal = colors.black
|
||||
theme.tasklist_bg_focus = colors.black
|
||||
theme.tasklist_bg_urgent = colors.green
|
||||
theme.tasklist_plain_task_name = true
|
||||
theme.tasklist_disable_task_name = false
|
||||
theme.tasklist_disable_icon = true
|
||||
|
||||
-- Notification :
|
||||
theme.notification_spacing = 20
|
||||
|
||||
-- Menu :
|
||||
theme.submenu = " "
|
||||
theme.menu_bg_normal = colors.black
|
||||
theme.menu_bg_focus = colors.brightblack
|
||||
theme.menu_border_color = colors.black
|
||||
theme.menu_height = dpi(30)
|
||||
theme.menu_width = dpi(180)
|
||||
|
||||
-- Icons :
|
||||
theme.icon_theme = "/usr/share/icons/Papirus-Dark/16x16/apps"
|
||||
theme.awesome_icon = oip .."logoarch.png"
|
||||
|
||||
theme.pfp = oip .. "pfp.jpg"
|
||||
theme.user = string.gsub(os.getenv('USER'), '^%l', string.upper)
|
||||
theme.hostname = "@Neptune"
|
||||
theme.weather_icon = oip .."weather_icon.png"
|
||||
|
||||
|
||||
-- Titlebar :
|
||||
theme.titlebar_size = dpi(20)
|
||||
theme.titlebar_position = "left"
|
||||
theme.titlebar_bg_focus = colors.black
|
||||
theme.titlebar_bg_normal = colors.black
|
||||
theme.titlebar_fg_normal = colors.white
|
||||
theme.titlebar_fg_focus = colors.brightwhite
|
||||
|
||||
-- Close Button :
|
||||
theme.titlebar_close_button_normal = tip.."close_normal.svg"
|
||||
theme.titlebar_close_button_focus = tip.."close_focus.svg"
|
||||
|
||||
-- Minimize Button :
|
||||
theme.titlebar_minimize_button_normal = tip.."minimize_normal.svg"
|
||||
theme.titlebar_minimize_button_focus = tip.."minimize_focus.svg"
|
||||
|
||||
-- Ontop Button :
|
||||
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"
|
||||
|
||||
-- Sticky Button :
|
||||
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"
|
||||
|
||||
-- Floating Button :
|
||||
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.."titlebar/stoplight/floating_focus_active.svg"
|
||||
|
||||
-- Maximized Button :
|
||||
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"
|
||||
|
||||
-- Hovered Close Button
|
||||
theme.titlebar_close_button_normal_hover = tip.. "close_normal_hover.svg"
|
||||
theme.titlebar_close_button_focus_hover = tip.. "close_focus_hover.svg"
|
||||
|
||||
-- Hovered Minimize Buttin
|
||||
theme.titlebar_minimize_button_normal_hover = tip.. "minimize_normal_hover.svg"
|
||||
theme.titlebar_minimize_button_focus_hover = tip.. "minimize_focus_hover.svg"
|
||||
|
||||
-- Hovered Ontop Button
|
||||
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"
|
||||
|
||||
-- Hovered Sticky Button
|
||||
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"
|
||||
|
||||
-- Hovered Floating Button
|
||||
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"
|
||||
|
||||
-- Hovered Maximized Button
|
||||
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"
|
||||
|
||||
-- Layoutbox icons :
|
||||
theme.layout_fairh = lip.. "fairh.png"
|
||||
theme.layout_fairv = lip.. "fairv.png"
|
||||
theme.layout_floating = lip.. "floating.png"
|
||||
theme.layout_magnifier = lip.. "magnifier.png"
|
||||
theme.layout_max = lip.. "max.png"
|
||||
theme.layout_fullscreen = lip.. "fullscreen.png"
|
||||
theme.layout_tilebottom = lip.. "tilebottom.png"
|
||||
theme.layout_tileleft = lip.. "tileleft.png"
|
||||
theme.layout_tile = lip.. "tile.png"
|
||||
theme.layout_tiletop = lip.. "tiletop.png"
|
||||
theme.layout_spiral = lip.. "spiral.png"
|
||||
theme.layout_dwindle = lip.. "dwindle.png"
|
||||
theme.layout_cornernw = lip.. "cornernw.png"
|
||||
theme.layout_cornerne = lip.. "cornerne.png"
|
||||
theme.layout_cornersw = lip.. "cornersw.png"
|
||||
theme.layout_cornerse = lip.. "cornerse.png"
|
||||
-- Bling :
|
||||
theme.layout_mstab = lip.. "mstab.png"
|
||||
theme.layout_vertical = lip.. "vertical.png"
|
||||
theme.layout_horizontal = lip.. "horizontal.png"
|
||||
theme.layout_centered = lip.. "centered.png"
|
||||
theme.layout_equalarea = lip.. "equalarea.png"
|
||||
theme.layout_deck = lip.. "deck.png"
|
||||
|
||||
return theme
|
|
@ -1,227 +0,0 @@
|
|||
---------------------------
|
||||
-- Default awesome theme --
|
||||
---------------------------
|
||||
|
||||
-- requirements
|
||||
-- ~~~~~~~~~~~~
|
||||
local gfs = require("gears.filesystem")
|
||||
local theme_assets = require("beautiful.theme_assets")
|
||||
local xresources = require("beautiful.xresources")
|
||||
local rnotification = require("ruled.notification")
|
||||
local dpi = xresources.apply_dpi
|
||||
|
||||
|
||||
-- Theme Dir :
|
||||
local themes_path = os.getenv("HOME") .. "/.config/awesome/themes/"
|
||||
|
||||
-- Titlebar Dir :
|
||||
local titlebar_theme = "mac"
|
||||
local titlebar_icon_path = os.getenv("HOME") .. "/.config/awesome/themes/icons/titlebar/" .. titlebar_theme .. "/"
|
||||
local tip = titlebar_icon_path
|
||||
|
||||
-- Layout Dir :
|
||||
local layout_icons = "colorful"
|
||||
local layout_icon_path = os.getenv("HOME") .. "/.config/awesome/themes/icons/layouts/" .. layout_icons .. "/"
|
||||
local lip = layout_icon_path
|
||||
|
||||
-- others Icons :
|
||||
local other_icon_path = os.getenv("HOME") .. "/.config/awesome/themes/icons/other/"
|
||||
local oip = other_icon_path
|
||||
|
||||
|
||||
-- Colors :
|
||||
colors = {}
|
||||
-- Dark colors
|
||||
colors.black = "#1B2224"
|
||||
colors.red = "#a54242"
|
||||
colors.green = "#8c9440"
|
||||
colors.yellow = "#de935f"
|
||||
colors.blue = "#548D91"
|
||||
colors.magenta = "#85678f"
|
||||
colors.cyan = "#5e8d87"
|
||||
colors.white = "#acacac"
|
||||
-- Bright colors
|
||||
colors.brightblack = "#263033"
|
||||
colors.brightred = "#cc6666"
|
||||
colors.brightgreen = "#b5bd68"
|
||||
colors.brightyellow = "#f0c674"
|
||||
colors.brightblue = "#81a2be"
|
||||
colors.brightmagenta = "#b294bb"
|
||||
colors.brightcyan = "#8abeb7"
|
||||
colors.brightwhite = "#c5c8c6"
|
||||
-- Transparent
|
||||
colors.transparent = "#00000000"
|
||||
colors.container = "#222B2E"
|
||||
|
||||
|
||||
theme = {}
|
||||
|
||||
-- # Fonts :
|
||||
--theme.font = "iosevka Extended Bold 11"
|
||||
--theme.font = "JetBrains Mono Bold 10"
|
||||
--theme.font = "JetBrainsMono Nerd Font Bold 10"
|
||||
theme.font = "RobotoMono Nerd Font Bold 11"
|
||||
theme.taglist_font = "Font Awesome 6 Free Solid 14"
|
||||
theme.icon_font = "Font Awesome 6 Free Solid 10"
|
||||
theme.sidebar_font = "Font Awesome 6 Free Solid 16"
|
||||
theme.ui_font = "RobotoMono Nerd Font Bold 16"
|
||||
|
||||
-- # Background Colors :
|
||||
theme.bg_normal = colors.black
|
||||
theme.bg_focus = colors.brightblack
|
||||
theme.bg_urgent = colors.black
|
||||
theme.bg_minimize = colors.black
|
||||
|
||||
-- # Foreground Colors :
|
||||
theme.fg_normal = colors.brightwhite
|
||||
theme.fg_focus = colors.brightwhite
|
||||
theme.fg_urgent = colors.brightred
|
||||
theme.fg_minimize = colors.brightblack
|
||||
|
||||
--- Systray
|
||||
theme.bg_systray = colors.container
|
||||
|
||||
-- Taglist :
|
||||
theme.taglist_spacing = dpi(4)
|
||||
theme.taglist_bg_focus = colors.container
|
||||
theme.taglist_bg_urgent = colors.container
|
||||
theme.taglist_bg_empty = colors.container
|
||||
theme.taglist_fg_focus = colors.brightblue
|
||||
theme.taglist_fg_empty = colors.brightblack
|
||||
theme.taglist_fg_urgent = colors.brightgreen
|
||||
|
||||
-- Clients :
|
||||
theme.useless_gap = dpi(4)
|
||||
theme.gap_single_client = true
|
||||
theme.border_width = dpi(2)
|
||||
theme.border_normal = colors.black
|
||||
theme.border_focus = colors.brightblack
|
||||
theme.border_marked = colors.brightblack
|
||||
|
||||
-- Tasklist :
|
||||
theme.tasklist_bg_normal = colors.black
|
||||
theme.tasklist_bg_focus = colors.black
|
||||
theme.tasklist_bg_urgent = colors.green
|
||||
theme.tasklist_plain_task_name = true
|
||||
theme.tasklist_disable_task_name = false
|
||||
theme.tasklist_disable_icon = true
|
||||
|
||||
-- Notification :
|
||||
theme.notification_spacing = 20
|
||||
|
||||
-- Menu :
|
||||
theme.submenu = " "
|
||||
theme.menu_bg_normal = colors.black
|
||||
theme.menu_bg_focus = colors.brightblack
|
||||
theme.menu_border_color = colors.black
|
||||
theme.menu_height = dpi(30)
|
||||
theme.menu_width = dpi(180)
|
||||
|
||||
-- Icons :
|
||||
theme.icon_theme = "/usr/share/icons/Papirus-Dark/16x16/apps"
|
||||
theme.awesome_icon = oip .."logoarch.png"
|
||||
|
||||
theme.pfp = oip .. "pfp.jpg"
|
||||
theme.user = string.gsub(os.getenv('USER'), '^%l', string.upper)
|
||||
theme.hostname = "@Neptune"
|
||||
theme.weather_icon = oip .."weather_icon.png"
|
||||
|
||||
|
||||
-- Titlebar :
|
||||
theme.titlebar_size = dpi(20)
|
||||
theme.titlebar_position = "left"
|
||||
theme.titlebar_bg_focus = colors.black
|
||||
theme.titlebar_bg_normal = colors.black
|
||||
theme.titlebar_fg_normal = colors.white
|
||||
theme.titlebar_fg_focus = colors.brightwhite
|
||||
|
||||
-- Close Button :
|
||||
theme.titlebar_close_button_normal = tip.."close_normal.svg"
|
||||
theme.titlebar_close_button_focus = tip.."close_focus.svg"
|
||||
|
||||
-- Minimize Button :
|
||||
theme.titlebar_minimize_button_normal = tip.."minimize_normal.svg"
|
||||
theme.titlebar_minimize_button_focus = tip.."minimize_focus.svg"
|
||||
|
||||
-- Ontop Button :
|
||||
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"
|
||||
|
||||
-- Sticky Button :
|
||||
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"
|
||||
|
||||
-- Floating Button :
|
||||
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.."titlebar/stoplight/floating_focus_active.svg"
|
||||
|
||||
-- Maximized Button :
|
||||
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"
|
||||
|
||||
-- Hovered Close Button
|
||||
theme.titlebar_close_button_normal_hover = tip.. "close_normal_hover.svg"
|
||||
theme.titlebar_close_button_focus_hover = tip.. "close_focus_hover.svg"
|
||||
|
||||
-- Hovered Minimize Buttin
|
||||
theme.titlebar_minimize_button_normal_hover = tip.. "minimize_normal_hover.svg"
|
||||
theme.titlebar_minimize_button_focus_hover = tip.. "minimize_focus_hover.svg"
|
||||
|
||||
-- Hovered Ontop Button
|
||||
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"
|
||||
|
||||
-- Hovered Sticky Button
|
||||
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"
|
||||
|
||||
-- Hovered Floating Button
|
||||
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"
|
||||
|
||||
-- Hovered Maximized Button
|
||||
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"
|
||||
|
||||
-- Layoutbox icons :
|
||||
theme.layout_fairh = lip.. "fairh.png"
|
||||
theme.layout_fairv = lip.. "fairv.png"
|
||||
theme.layout_floating = lip.. "floating.png"
|
||||
theme.layout_magnifier = lip.. "magnifier.png"
|
||||
theme.layout_max = lip.. "max.png"
|
||||
theme.layout_fullscreen = lip.. "fullscreen.png"
|
||||
theme.layout_tilebottom = lip.. "tilebottom.png"
|
||||
theme.layout_tileleft = lip.. "tileleft.png"
|
||||
theme.layout_tile = lip.. "tile.png"
|
||||
theme.layout_tiletop = lip.. "tiletop.png"
|
||||
theme.layout_spiral = lip.. "spiral.png"
|
||||
theme.layout_dwindle = lip.. "dwindle.png"
|
||||
theme.layout_cornernw = lip.. "cornernw.png"
|
||||
theme.layout_cornerne = lip.. "cornerne.png"
|
||||
theme.layout_cornersw = lip.. "cornersw.png"
|
||||
theme.layout_cornerse = lip.. "cornerse.png"
|
||||
-- Bling :
|
||||
theme.layout_mstab = lip.. "mstab.png"
|
||||
theme.layout_vertical = lip.. "vertical.png"
|
||||
theme.layout_horizontal = lip.. "horizontal.png"
|
||||
theme.layout_centered = lip.. "centered.png"
|
||||
theme.layout_equalarea = lip.. "equalarea.png"
|
||||
theme.layout_deck = lip.. "deck.png"
|
||||
|
||||
return theme
|
|
@ -1,227 +0,0 @@
|
|||
---------------------------
|
||||
-- Default awesome theme --
|
||||
---------------------------
|
||||
|
||||
-- requirements
|
||||
-- ~~~~~~~~~~~~
|
||||
local gfs = require("gears.filesystem")
|
||||
local theme_assets = require("beautiful.theme_assets")
|
||||
local xresources = require("beautiful.xresources")
|
||||
local rnotification = require("ruled.notification")
|
||||
local dpi = xresources.apply_dpi
|
||||
|
||||
|
||||
-- Theme Dir :
|
||||
local themes_path = os.getenv("HOME") .. "/.config/awesome/themes/"
|
||||
|
||||
-- Titlebar Dir :
|
||||
local titlebar_theme = "mac"
|
||||
local titlebar_icon_path = os.getenv("HOME") .. "/.config/awesome/themes/icons/titlebar/" .. titlebar_theme .. "/"
|
||||
local tip = titlebar_icon_path
|
||||
|
||||
-- Layout Dir :
|
||||
local layout_icons = "blue"
|
||||
local layout_icon_path = os.getenv("HOME") .. "/.config/awesome/themes/icons/layouts/" .. layout_icons .. "/"
|
||||
local lip = layout_icon_path
|
||||
|
||||
-- others Icons :
|
||||
local other_icon_path = os.getenv("HOME") .. "/.config/awesome/themes/icons/other/"
|
||||
local oip = other_icon_path
|
||||
|
||||
|
||||
-- Colors :
|
||||
colors = {}
|
||||
-- Dark colors
|
||||
colors.black = "#2E3440"
|
||||
colors.red = "#df5b61"
|
||||
colors.green = "#78b892"
|
||||
colors.yellow = "#de8f78"
|
||||
colors.blue = "#6791c9"
|
||||
colors.magenta = "#bc83e3"
|
||||
colors.cyan = "#67afc1"
|
||||
colors.white = "#e4e6e7"
|
||||
-- Bright colors
|
||||
colors.brightblack = "#3B4252"
|
||||
colors.brightred = "#e8646a"
|
||||
colors.brightgreen = "#81c19b"
|
||||
colors.brightyellow = "#e79881"
|
||||
colors.brightblue = "#709ad2"
|
||||
colors.brightmagenta = "#c58cec"
|
||||
colors.brightcyan = "#70b8ca"
|
||||
colors.brightwhite = "#f2f4f5"
|
||||
-- Transparent
|
||||
colors.transparent = "#00000000"
|
||||
colors.container = "#353C4A"
|
||||
|
||||
|
||||
theme = {}
|
||||
|
||||
-- # Fonts :
|
||||
--theme.font = "iosevka Extended Bold 11"
|
||||
--theme.font = "JetBrains Mono Bold 10"
|
||||
--theme.font = "JetBrainsMono Nerd Font Bold 10"
|
||||
theme.font = "RobotoMono Nerd Font Bold 11"
|
||||
theme.taglist_font = "Font Awesome 6 Free Solid 14"
|
||||
theme.icon_font = "Font Awesome 6 Free Solid 10"
|
||||
theme.sidebar_font = "Font Awesome 6 Free Solid 16"
|
||||
theme.ui_font = "RobotoMono Nerd Font Bold 16"
|
||||
|
||||
-- # Background Colors :
|
||||
theme.bg_normal = colors.black
|
||||
theme.bg_focus = colors.brightblack
|
||||
theme.bg_urgent = colors.black
|
||||
theme.bg_minimize = colors.black
|
||||
|
||||
-- # Foreground Colors :
|
||||
theme.fg_normal = colors.brightwhite
|
||||
theme.fg_focus = colors.brightwhite
|
||||
theme.fg_urgent = colors.brightred
|
||||
theme.fg_minimize = colors.brightblack
|
||||
|
||||
--- Systray
|
||||
theme.bg_systray = colors.container
|
||||
|
||||
-- Taglist :
|
||||
theme.taglist_spacing = dpi(4)
|
||||
theme.taglist_bg_focus = colors.container
|
||||
theme.taglist_bg_urgent = colors.container
|
||||
theme.taglist_bg_empty = colors.container
|
||||
theme.taglist_fg_focus = colors.brightblue
|
||||
theme.taglist_fg_empty = colors.brightblack
|
||||
theme.taglist_fg_urgent = colors.brightgreen
|
||||
|
||||
-- Clients :
|
||||
theme.useless_gap = dpi(4)
|
||||
theme.gap_single_client = true
|
||||
theme.border_width = dpi(2)
|
||||
theme.border_normal = colors.black
|
||||
theme.border_focus = colors.brightblack
|
||||
theme.border_marked = colors.brightblack
|
||||
|
||||
-- Tasklist :
|
||||
theme.tasklist_bg_normal = colors.black
|
||||
theme.tasklist_bg_focus = colors.black
|
||||
theme.tasklist_bg_urgent = colors.green
|
||||
theme.tasklist_plain_task_name = true
|
||||
theme.tasklist_disable_task_name = false
|
||||
theme.tasklist_disable_icon = true
|
||||
|
||||
-- Notification :
|
||||
theme.notification_spacing = 20
|
||||
|
||||
-- Menu :
|
||||
theme.submenu = " "
|
||||
theme.menu_bg_normal = colors.black
|
||||
theme.menu_bg_focus = colors.brightblack
|
||||
theme.menu_border_color = colors.black
|
||||
theme.menu_height = dpi(30)
|
||||
theme.menu_width = dpi(180)
|
||||
|
||||
-- Icons :
|
||||
theme.icon_theme = "/usr/share/icons/Papirus-Dark/16x16/apps"
|
||||
theme.awesome_icon = oip .."logoarch.png"
|
||||
|
||||
theme.pfp = oip .. "pfp.jpg"
|
||||
theme.user = string.gsub(os.getenv('USER'), '^%l', string.upper)
|
||||
theme.hostname = "@Neptune"
|
||||
theme.weather_icon = oip .."weather_icon.png"
|
||||
|
||||
|
||||
-- Titlebar :
|
||||
theme.titlebar_size = dpi(20)
|
||||
theme.titlebar_position = "left"
|
||||
theme.titlebar_bg_focus = colors.black
|
||||
theme.titlebar_bg_normal = colors.black
|
||||
theme.titlebar_fg_normal = colors.white
|
||||
theme.titlebar_fg_focus = colors.brightwhite
|
||||
|
||||
-- Close Button :
|
||||
theme.titlebar_close_button_normal = tip.."close_normal.svg"
|
||||
theme.titlebar_close_button_focus = tip.."close_focus.svg"
|
||||
|
||||
-- Minimize Button :
|
||||
theme.titlebar_minimize_button_normal = tip.."minimize_normal.svg"
|
||||
theme.titlebar_minimize_button_focus = tip.."minimize_focus.svg"
|
||||
|
||||
-- Ontop Button :
|
||||
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"
|
||||
|
||||
-- Sticky Button :
|
||||
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"
|
||||
|
||||
-- Floating Button :
|
||||
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.."titlebar/stoplight/floating_focus_active.svg"
|
||||
|
||||
-- Maximized Button :
|
||||
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"
|
||||
|
||||
-- Hovered Close Button
|
||||
theme.titlebar_close_button_normal_hover = tip.. "close_normal_hover.svg"
|
||||
theme.titlebar_close_button_focus_hover = tip.. "close_focus_hover.svg"
|
||||
|
||||
-- Hovered Minimize Buttin
|
||||
theme.titlebar_minimize_button_normal_hover = tip.. "minimize_normal_hover.svg"
|
||||
theme.titlebar_minimize_button_focus_hover = tip.. "minimize_focus_hover.svg"
|
||||
|
||||
-- Hovered Ontop Button
|
||||
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"
|
||||
|
||||
-- Hovered Sticky Button
|
||||
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"
|
||||
|
||||
-- Hovered Floating Button
|
||||
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"
|
||||
|
||||
-- Hovered Maximized Button
|
||||
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"
|
||||
|
||||
-- Layoutbox icons :
|
||||
theme.layout_fairh = lip.. "fairh.png"
|
||||
theme.layout_fairv = lip.. "fairv.png"
|
||||
theme.layout_floating = lip.. "floating.png"
|
||||
theme.layout_magnifier = lip.. "magnifier.png"
|
||||
theme.layout_max = lip.. "max.png"
|
||||
theme.layout_fullscreen = lip.. "fullscreen.png"
|
||||
theme.layout_tilebottom = lip.. "tilebottom.png"
|
||||
theme.layout_tileleft = lip.. "tileleft.png"
|
||||
theme.layout_tile = lip.. "tile.png"
|
||||
theme.layout_tiletop = lip.. "tiletop.png"
|
||||
theme.layout_spiral = lip.. "spiral.png"
|
||||
theme.layout_dwindle = lip.. "dwindle.png"
|
||||
theme.layout_cornernw = lip.. "cornernw.png"
|
||||
theme.layout_cornerne = lip.. "cornerne.png"
|
||||
theme.layout_cornersw = lip.. "cornersw.png"
|
||||
theme.layout_cornerse = lip.. "cornerse.png"
|
||||
-- Bling :
|
||||
theme.layout_mstab = lip.. "mstab.png"
|
||||
theme.layout_vertical = lip.. "vertical.png"
|
||||
theme.layout_horizontal = lip.. "horizontal.png"
|
||||
theme.layout_centered = lip.. "centered.png"
|
||||
theme.layout_equalarea = lip.. "equalarea.png"
|
||||
theme.layout_deck = lip.. "deck.png"
|
||||
|
||||
return theme
|
|
@ -1,227 +0,0 @@
|
|||
---------------------------
|
||||
-- Default awesome theme --
|
||||
---------------------------
|
||||
|
||||
-- requirements
|
||||
-- ~~~~~~~~~~~~
|
||||
local gfs = require("gears.filesystem")
|
||||
local theme_assets = require("beautiful.theme_assets")
|
||||
local xresources = require("beautiful.xresources")
|
||||
local rnotification = require("ruled.notification")
|
||||
local dpi = xresources.apply_dpi
|
||||
|
||||
|
||||
-- Theme Dir :
|
||||
local themes_path = os.getenv("HOME") .. "/.config/awesome/themes/"
|
||||
|
||||
-- Titlebar Dir :
|
||||
local titlebar_theme = "mac"
|
||||
local titlebar_icon_path = os.getenv("HOME") .. "/.config/awesome/themes/icons/titlebar/" .. titlebar_theme .. "/"
|
||||
local tip = titlebar_icon_path
|
||||
|
||||
-- Layout Dir :
|
||||
local layout_icons = "blue"
|
||||
local layout_icon_path = os.getenv("HOME") .. "/.config/awesome/themes/icons/layouts/" .. layout_icons .. "/"
|
||||
local lip = layout_icon_path
|
||||
|
||||
-- others Icons :
|
||||
local other_icon_path = os.getenv("HOME") .. "/.config/awesome/themes/icons/other/"
|
||||
local oip = other_icon_path
|
||||
|
||||
|
||||
-- Colors :
|
||||
colors = {}
|
||||
-- Dark colors
|
||||
colors.black = "#232526"
|
||||
colors.red = "#df5b61"
|
||||
colors.green = "#78b892"
|
||||
colors.yellow = "#de8f78"
|
||||
colors.blue = "#6791c9"
|
||||
colors.magenta = "#bc83e3"
|
||||
colors.cyan = "#67afc1"
|
||||
colors.white = "#e4e6e7"
|
||||
-- Bright colors
|
||||
colors.brightblack = "#2c2e2f"
|
||||
colors.brightred = "#e8646a"
|
||||
colors.brightgreen = "#81c19b"
|
||||
colors.brightyellow = "#e79881"
|
||||
colors.brightblue = "#709ad2"
|
||||
colors.brightmagenta = "#c58cec"
|
||||
colors.brightcyan = "#70b8ca"
|
||||
colors.brightwhite = "#f2f4f5"
|
||||
-- Transparent
|
||||
colors.transparent = "#00000000"
|
||||
colors.container = "#2F3233"
|
||||
|
||||
|
||||
theme = {}
|
||||
|
||||
-- # Fonts :
|
||||
--theme.font = "iosevka Extended Bold 11"
|
||||
--theme.font = "JetBrains Mono Bold 10"
|
||||
--theme.font = "JetBrainsMono Nerd Font Bold 10"
|
||||
theme.font = "RobotoMono Nerd Font Bold 11"
|
||||
theme.taglist_font = "Font Awesome 6 Free Solid 14"
|
||||
theme.icon_font = "Font Awesome 6 Free Solid 10"
|
||||
theme.sidebar_font = "Font Awesome 6 Free Solid 16"
|
||||
theme.ui_font = "RobotoMono Nerd Font Bold 16"
|
||||
|
||||
-- # Background Colors :
|
||||
theme.bg_normal = colors.black
|
||||
theme.bg_focus = colors.brightblack
|
||||
theme.bg_urgent = colors.black
|
||||
theme.bg_minimize = colors.black
|
||||
|
||||
-- # Foreground Colors :
|
||||
theme.fg_normal = colors.brightwhite
|
||||
theme.fg_focus = colors.brightwhite
|
||||
theme.fg_urgent = colors.brightred
|
||||
theme.fg_minimize = colors.brightblack
|
||||
|
||||
--- Systray
|
||||
theme.bg_systray = colors.container
|
||||
|
||||
-- Taglist :
|
||||
theme.taglist_spacing = dpi(4)
|
||||
theme.taglist_bg_focus = colors.container
|
||||
theme.taglist_bg_urgent = colors.container
|
||||
theme.taglist_bg_empty = colors.container
|
||||
theme.taglist_fg_focus = colors.brightblue
|
||||
theme.taglist_fg_empty = colors.brightblack
|
||||
theme.taglist_fg_urgent = colors.brightgreen
|
||||
|
||||
-- Clients :
|
||||
theme.useless_gap = dpi(4)
|
||||
theme.gap_single_client = true
|
||||
theme.border_width = dpi(2)
|
||||
theme.border_normal = colors.black
|
||||
theme.border_focus = colors.brightblack
|
||||
theme.border_marked = colors.brightblack
|
||||
|
||||
-- Tasklist :
|
||||
theme.tasklist_bg_normal = colors.black
|
||||
theme.tasklist_bg_focus = colors.black
|
||||
theme.tasklist_bg_urgent = colors.green
|
||||
theme.tasklist_plain_task_name = true
|
||||
theme.tasklist_disable_task_name = false
|
||||
theme.tasklist_disable_icon = true
|
||||
|
||||
-- Notification :
|
||||
theme.notification_spacing = 20
|
||||
|
||||
-- Menu :
|
||||
theme.submenu = " "
|
||||
theme.menu_bg_normal = colors.black
|
||||
theme.menu_bg_focus = colors.brightblack
|
||||
theme.menu_border_color = colors.black
|
||||
theme.menu_height = dpi(30)
|
||||
theme.menu_width = dpi(180)
|
||||
|
||||
-- Icons :
|
||||
theme.icon_theme = "/usr/share/icons/Papirus-Dark/16x16/apps"
|
||||
theme.awesome_icon = oip .."logoarch.png"
|
||||
|
||||
theme.pfp = oip .. "pfp.jpg"
|
||||
theme.user = string.gsub(os.getenv('USER'), '^%l', string.upper)
|
||||
theme.hostname = "@Neptune"
|
||||
theme.weather_icon = oip .."weather_icon.png"
|
||||
|
||||
|
||||
-- Titlebar :
|
||||
theme.titlebar_size = dpi(20)
|
||||
theme.titlebar_position = "left"
|
||||
theme.titlebar_bg_focus = colors.black
|
||||
theme.titlebar_bg_normal = colors.black
|
||||
theme.titlebar_fg_normal = colors.white
|
||||
theme.titlebar_fg_focus = colors.brightwhite
|
||||
|
||||
-- Close Button :
|
||||
theme.titlebar_close_button_normal = tip.."close_normal.svg"
|
||||
theme.titlebar_close_button_focus = tip.."close_focus.svg"
|
||||
|
||||
-- Minimize Button :
|
||||
theme.titlebar_minimize_button_normal = tip.."minimize_normal.svg"
|
||||
theme.titlebar_minimize_button_focus = tip.."minimize_focus.svg"
|
||||
|
||||
-- Ontop Button :
|
||||
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"
|
||||
|
||||
-- Sticky Button :
|
||||
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"
|
||||
|
||||
-- Floating Button :
|
||||
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.."titlebar/stoplight/floating_focus_active.svg"
|
||||
|
||||
-- Maximized Button :
|
||||
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"
|
||||
|
||||
-- Hovered Close Button
|
||||
theme.titlebar_close_button_normal_hover = tip.. "close_normal_hover.svg"
|
||||
theme.titlebar_close_button_focus_hover = tip.. "close_focus_hover.svg"
|
||||
|
||||
-- Hovered Minimize Buttin
|
||||
theme.titlebar_minimize_button_normal_hover = tip.. "minimize_normal_hover.svg"
|
||||
theme.titlebar_minimize_button_focus_hover = tip.. "minimize_focus_hover.svg"
|
||||
|
||||
-- Hovered Ontop Button
|
||||
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"
|
||||
|
||||
-- Hovered Sticky Button
|
||||
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"
|
||||
|
||||
-- Hovered Floating Button
|
||||
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"
|
||||
|
||||
-- Hovered Maximized Button
|
||||
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"
|
||||
|
||||
-- Layoutbox icons :
|
||||
theme.layout_fairh = lip.. "fairh.png"
|
||||
theme.layout_fairv = lip.. "fairv.png"
|
||||
theme.layout_floating = lip.. "floating.png"
|
||||
theme.layout_magnifier = lip.. "magnifier.png"
|
||||
theme.layout_max = lip.. "max.png"
|
||||
theme.layout_fullscreen = lip.. "fullscreen.png"
|
||||
theme.layout_tilebottom = lip.. "tilebottom.png"
|
||||
theme.layout_tileleft = lip.. "tileleft.png"
|
||||
theme.layout_tile = lip.. "tile.png"
|
||||
theme.layout_tiletop = lip.. "tiletop.png"
|
||||
theme.layout_spiral = lip.. "spiral.png"
|
||||
theme.layout_dwindle = lip.. "dwindle.png"
|
||||
theme.layout_cornernw = lip.. "cornernw.png"
|
||||
theme.layout_cornerne = lip.. "cornerne.png"
|
||||
theme.layout_cornersw = lip.. "cornersw.png"
|
||||
theme.layout_cornerse = lip.. "cornerse.png"
|
||||
-- Bling :
|
||||
theme.layout_mstab = lip.. "mstab.png"
|
||||
theme.layout_vertical = lip.. "vertical.png"
|
||||
theme.layout_horizontal = lip.. "horizontal.png"
|
||||
theme.layout_centered = lip.. "centered.png"
|
||||
theme.layout_equalarea = lip.. "equalarea.png"
|
||||
theme.layout_deck = lip.. "deck.png"
|
||||
|
||||
return theme
|
|
@ -1,228 +0,0 @@
|
|||
---------------------------
|
||||
-- Default awesome theme --
|
||||
---------------------------
|
||||
|
||||
-- requirements
|
||||
-- ~~~~~~~~~~~~
|
||||
local gfs = require("gears.filesystem")
|
||||
local theme_assets = require("beautiful.theme_assets")
|
||||
local xresources = require("beautiful.xresources")
|
||||
local rnotification = require("ruled.notification")
|
||||
local dpi = xresources.apply_dpi
|
||||
|
||||
|
||||
-- Theme Dir :
|
||||
local themes_path = os.getenv("HOME") .. "/.config/awesome/themes/"
|
||||
|
||||
-- Titlebar Dir :
|
||||
local titlebar_theme = "mac"
|
||||
local titlebar_icon_path = os.getenv("HOME") .. "/.config/awesome/themes/icons/titlebar/" .. titlebar_theme .. "/"
|
||||
local tip = titlebar_icon_path
|
||||
|
||||
-- Layout Dir :
|
||||
local layout_icons = "blue"
|
||||
local layout_icon_path = os.getenv("HOME") .. "/.config/awesome/themes/icons/layouts/" .. layout_icons .. "/"
|
||||
local lip = layout_icon_path
|
||||
|
||||
-- others Icons :
|
||||
local other_icon_path = os.getenv("HOME") .. "/.config/awesome/themes/icons/other/"
|
||||
local oip = other_icon_path
|
||||
|
||||
|
||||
-- Colors :
|
||||
colors = {}
|
||||
-- Dark colors
|
||||
colors.black = "#1A2026"
|
||||
colors.red = "#a54242"
|
||||
colors.green = "#8c9440"
|
||||
colors.yellow = "#de935f"
|
||||
colors.blue = "#548D91"
|
||||
colors.magenta = "#85678f"
|
||||
colors.cyan = "#5e8d87"
|
||||
colors.white = "#acacac"
|
||||
-- Bright colors
|
||||
colors.brightblack = "#262F38"
|
||||
colors.brightred = "#cc6666"
|
||||
colors.brightgreen = "#b5bd68"
|
||||
colors.brightyellow = "#f0c674"
|
||||
colors.brightblue = "#81a2be"
|
||||
colors.brightmagenta = "#b294bb"
|
||||
colors.brightcyan = "#8abeb7"
|
||||
colors.brightwhite = "#c5c8c6"
|
||||
-- Transparent
|
||||
colors.transparent = "#00000000"
|
||||
colors.container = "#232B33"
|
||||
|
||||
|
||||
theme = {}
|
||||
|
||||
-- # Fonts :
|
||||
--theme.font = "iosevka Extended Bold 11"
|
||||
--theme.font = "JetBrains Mono Bold 10"
|
||||
--theme.font = "JetBrainsMono Nerd Font Bold 10"
|
||||
--theme.font = "RobotoMono Nerd Font Bold 11"
|
||||
theme.font = "Roboto Bold 11"
|
||||
theme.taglist_font = "Font Awesome 6 Free Solid 14"
|
||||
theme.icon_font = "Font Awesome 6 Free Solid 10"
|
||||
theme.sidebar_font = "Font Awesome 6 Free Solid 16"
|
||||
theme.ui_font = "RobotoMono Nerd Font Bold 16"
|
||||
|
||||
-- # Background Colors :
|
||||
theme.bg_normal = colors.black
|
||||
theme.bg_focus = colors.brightblack
|
||||
theme.bg_urgent = colors.black
|
||||
theme.bg_minimize = colors.black
|
||||
|
||||
-- # Foreground Colors :
|
||||
theme.fg_normal = colors.brightwhite
|
||||
theme.fg_focus = colors.brightwhite
|
||||
theme.fg_urgent = colors.brightred
|
||||
theme.fg_minimize = colors.brightblack
|
||||
|
||||
--- Systray
|
||||
theme.bg_systray = colors.container
|
||||
|
||||
-- Taglist :
|
||||
theme.taglist_spacing = dpi(4)
|
||||
theme.taglist_bg_focus = colors.container
|
||||
theme.taglist_bg_urgent = colors.container
|
||||
theme.taglist_bg_empty = colors.container
|
||||
theme.taglist_fg_focus = colors.brightblue
|
||||
theme.taglist_fg_empty = colors.brightblack
|
||||
theme.taglist_fg_urgent = colors.brightgreen
|
||||
|
||||
|
||||
-- Clients :
|
||||
theme.useless_gap = dpi(4)
|
||||
theme.gap_single_client = true
|
||||
theme.border_width = dpi(2)
|
||||
theme.border_normal = colors.black
|
||||
theme.border_focus = colors.brightblack
|
||||
theme.border_marked = colors.brightblack
|
||||
|
||||
-- Tasklist :
|
||||
theme.tasklist_bg_normal = colors.black
|
||||
theme.tasklist_bg_focus = colors.black
|
||||
theme.tasklist_bg_urgent = colors.green
|
||||
theme.tasklist_plain_task_name = true
|
||||
theme.tasklist_disable_task_name = false
|
||||
theme.tasklist_disable_icon = true
|
||||
|
||||
-- Notification :
|
||||
theme.notification_spacing = 20
|
||||
|
||||
-- Menu :
|
||||
theme.submenu = " "
|
||||
theme.menu_bg_normal = colors.black
|
||||
theme.menu_bg_focus = colors.brightblack
|
||||
theme.menu_border_color = colors.black
|
||||
theme.menu_height = dpi(30)
|
||||
theme.menu_width = dpi(180)
|
||||
|
||||
-- Icons :
|
||||
theme.icon_theme = "/usr/share/icons/Papirus-Dark/16x16/apps"
|
||||
theme.awesome_icon = oip .."logoarch.png"
|
||||
|
||||
theme.pfp = oip .. "pfp.jpg"
|
||||
theme.user = string.gsub(os.getenv('USER'), '^%l', string.upper)
|
||||
theme.hostname = "@Neptune"
|
||||
theme.weather_icon = oip .."weather_icon.png"
|
||||
|
||||
|
||||
-- Titlebar :
|
||||
theme.titlebar_size = dpi(20)
|
||||
theme.titlebar_position = "left"
|
||||
theme.titlebar_bg_focus = colors.black
|
||||
theme.titlebar_bg_normal = colors.black
|
||||
theme.titlebar_fg_normal = colors.white
|
||||
theme.titlebar_fg_focus = colors.brightwhite
|
||||
|
||||
-- Close Button :
|
||||
theme.titlebar_close_button_normal = tip.."close_normal.svg"
|
||||
theme.titlebar_close_button_focus = tip.."close_focus.svg"
|
||||
|
||||
-- Minimize Button :
|
||||
theme.titlebar_minimize_button_normal = tip.."minimize_normal.svg"
|
||||
theme.titlebar_minimize_button_focus = tip.."minimize_focus.svg"
|
||||
|
||||
-- Ontop Button :
|
||||
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"
|
||||
|
||||
-- Sticky Button :
|
||||
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"
|
||||
|
||||
-- Floating Button :
|
||||
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.."titlebar/stoplight/floating_focus_active.svg"
|
||||
|
||||
-- Maximized Button :
|
||||
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"
|
||||
|
||||
-- Hovered Close Button
|
||||
theme.titlebar_close_button_normal_hover = tip.. "close_normal_hover.svg"
|
||||
theme.titlebar_close_button_focus_hover = tip.. "close_focus_hover.svg"
|
||||
|
||||
-- Hovered Minimize Buttin
|
||||
theme.titlebar_minimize_button_normal_hover = tip.. "minimize_normal_hover.svg"
|
||||
theme.titlebar_minimize_button_focus_hover = tip.. "minimize_focus_hover.svg"
|
||||
|
||||
-- Hovered Ontop Button
|
||||
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"
|
||||
|
||||
-- Hovered Sticky Button
|
||||
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"
|
||||
|
||||
-- Hovered Floating Button
|
||||
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"
|
||||
|
||||
-- Hovered Maximized Button
|
||||
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"
|
||||
|
||||
-- Layoutbox icons :
|
||||
theme.layout_fairh = lip.. "fairh.png"
|
||||
theme.layout_fairv = lip.. "fairv.png"
|
||||
theme.layout_floating = lip.. "floating.png"
|
||||
theme.layout_magnifier = lip.. "magnifier.png"
|
||||
theme.layout_max = lip.. "max.png"
|
||||
theme.layout_fullscreen = lip.. "fullscreen.png"
|
||||
theme.layout_tilebottom = lip.. "tilebottom.png"
|
||||
theme.layout_tileleft = lip.. "tileleft.png"
|
||||
theme.layout_tile = lip.. "tile.png"
|
||||
theme.layout_tiletop = lip.. "tiletop.png"
|
||||
theme.layout_spiral = lip.. "spiral.png"
|
||||
theme.layout_dwindle = lip.. "dwindle.png"
|
||||
theme.layout_cornernw = lip.. "cornernw.png"
|
||||
theme.layout_cornerne = lip.. "cornerne.png"
|
||||
theme.layout_cornersw = lip.. "cornersw.png"
|
||||
-- Bling :
|
||||
theme.layout_mstab = lip.. "mstab.png"
|
||||
theme.layout_vertical = lip.. "vertical.png"
|
||||
theme.layout_horizontal = lip.. "horizontal.png"
|
||||
theme.layout_centered = lip.. "centered.png"
|
||||
theme.layout_equalarea = lip.. "equalarea.png"
|
||||
theme.layout_deck = lip.. "deck.png"
|
||||
|
||||
return theme
|
Before Width: | Height: | Size: 272 B |
Before Width: | Height: | Size: 263 B |
Before Width: | Height: | Size: 264 B |
Before Width: | Height: | Size: 263 B |
Before Width: | Height: | Size: 320 B |
Before Width: | Height: | Size: 245 B |
Before Width: | Height: | Size: 246 B |
Before Width: | Height: | Size: 282 B |
Before Width: | Height: | Size: 866 B |
Before Width: | Height: | Size: 345 B |
Before Width: | Height: | Size: 574 B |
Before Width: | Height: | Size: 328 B |
Before Width: | Height: | Size: 265 B |
Before Width: | Height: | Size: 264 B |
Before Width: | Height: | Size: 266 B |
Before Width: | Height: | Size: 4.9 KiB |
Before Width: | Height: | Size: 5.1 KiB |
Before Width: | Height: | Size: 6.8 KiB |
Before Width: | Height: | Size: 6.8 KiB |
Before Width: | Height: | Size: 6.7 KiB |
Before Width: | Height: | Size: 6.9 KiB |
Before Width: | Height: | Size: 5.3 KiB |
Before Width: | Height: | Size: 6.7 KiB |
Before Width: | Height: | Size: 5.5 KiB |
Before Width: | Height: | Size: 6.3 KiB |
Before Width: | Height: | Size: 7.2 KiB |
Before Width: | Height: | Size: 6.3 KiB |
Before Width: | Height: | Size: 5.8 KiB |
Before Width: | Height: | Size: 4.9 KiB |
Before Width: | Height: | Size: 6.3 KiB |
Before Width: | Height: | Size: 7.3 KiB |
Before Width: | Height: | Size: 4.9 KiB |
Before Width: | Height: | Size: 6.8 KiB |
Before Width: | Height: | Size: 6.6 KiB |
Before Width: | Height: | Size: 6.2 KiB |
Before Width: | Height: | Size: 6.4 KiB |
Before Width: | Height: | Size: 6.5 KiB |
Before Width: | Height: | Size: 4.8 KiB |
Before Width: | Height: | Size: 5.7 KiB |
Before Width: | Height: | Size: 7.9 KiB |
Before Width: | Height: | Size: 7.9 KiB |
Before Width: | Height: | Size: 7.9 KiB |
Before Width: | Height: | Size: 7.9 KiB |
Before Width: | Height: | Size: 5.7 KiB |
Before Width: | Height: | Size: 214 B |
Before Width: | Height: | Size: 6.1 KiB |
Before Width: | Height: | Size: 212 B |
Before Width: | Height: | Size: 224 B |
Before Width: | Height: | Size: 187 B |
Before Width: | Height: | Size: 188 B |
Before Width: | Height: | Size: 5.3 KiB |
Before Width: | Height: | Size: 188 B |
Before Width: | Height: | Size: 323 B |
Before Width: | Height: | Size: 5.4 KiB |
Before Width: | Height: | Size: 215 B |
Before Width: | Height: | Size: 7.4 KiB |
Before Width: | Height: | Size: 205 B |
Before Width: | Height: | Size: 212 B |
Before Width: | Height: | Size: 205 B |
Before Width: | Height: | Size: 5.4 KiB |
Before Width: | Height: | Size: 4.9 KiB |
Before Width: | Height: | Size: 4.9 KiB |
Before Width: | Height: | Size: 5 KiB |
Before Width: | Height: | Size: 4.9 KiB |
Before Width: | Height: | Size: 4.9 KiB |
Before Width: | Height: | Size: 4.9 KiB |
Before Width: | Height: | Size: 4.9 KiB |
Before Width: | Height: | Size: 4.9 KiB |
Before Width: | Height: | Size: 6.1 KiB |
Before Width: | Height: | Size: 5.1 KiB |
Before Width: | Height: | Size: 5.6 KiB |
Before Width: | Height: | Size: 4.9 KiB |
Before Width: | Height: | Size: 4.8 KiB |
Before Width: | Height: | Size: 4.9 KiB |
Before Width: | Height: | Size: 4.8 KiB |
Before Width: | Height: | Size: 5.1 KiB |
Before Width: | Height: | Size: 165 B |
Before Width: | Height: | Size: 159 B |
Before Width: | Height: | Size: 163 B |
Before Width: | Height: | Size: 161 B |
Before Width: | Height: | Size: 163 B |
Before Width: | Height: | Size: 191 B |
Before Width: | Height: | Size: 194 B |
Before Width: | Height: | Size: 195 B |
Before Width: | Height: | Size: 191 B |
Before Width: | Height: | Size: 1.1 KiB |
Before Width: | Height: | Size: 357 B |
Before Width: | Height: | Size: 372 B |
Before Width: | Height: | Size: 1.1 KiB |
Before Width: | Height: | Size: 558 B |
Before Width: | Height: | Size: 426 B |
Before Width: | Height: | Size: 610 B |
Before Width: | Height: | Size: 1.3 KiB |
Before Width: | Height: | Size: 383 B |