Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 0 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
# My Personal Dotfiles.
ITS MESSY DON'T BULLY ME!!!
## current state of the rice
### some pole.
![some_pole](https://user-images.githubusercontent.com/118438453/210382415-bbd424c0-0815-46e1-b759-42daa47ca997.png)
Expand Down
Binary file added config/awesome/theme/icons/top.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
108 changes: 55 additions & 53 deletions config/awesome/theme/theme.lua
Original file line number Diff line number Diff line change
@@ -1,91 +1,93 @@
---------------------------
-- Default awesome theme --
---------------------------
-------------------
-- awesome theme --
-------------------

local theme_assets = require("beautiful.theme_assets")
local xresources = require("beautiful.xresources")
local dpi = xresources.apply_dpi

local gcs = require("gears.color")
local gfs = require("gears.filesystem")
local themes_path = gfs.get_configuration_dir() .. "theme/"

local theme = {}

theme.font = "Iosevka Nerd Font Bold 10"

-- Number Stuff
theme.titlebar_height = dpi(36)
theme.bar_height = dpi(40)
theme.titlebar_button_spacing = dpi(5)

-- Specific Colors
theme.taglist_bg_focus = "#ffffff"
theme.taglist_fg_normal = "#dddddd"
theme.taglist_fg_focus = "#999999"
theme.font = "Iosevka Nerd Font Medium 12"

theme.titlebar_bg_focus = "#101010"
theme.titlebar_bg_normal = "#101010"
-- Stuff
theme.tasklist_plain_task_name = true
theme.tasklist_disable_task_name = true

-- Main Colors
theme.bg_normal = "#101010"
theme.bg_focus = "#161616"
theme.bg_urgent = "#101010"
theme.bg_minimize = "#161616"
-- Colors
theme.bg_normal = "#44475a"
theme.bg_focus = "#dfdfdf"
theme.titlebar_bg_normal = "#44475a"
theme.titlebar_bg_focus = "#44475a"
theme.tasklist_bg_focus = theme.bg_normal
theme.bg_urgent = "#fefefe"
theme.bg_minimize = "#fefefe"
theme.bg_systray = theme.bg_normal

theme.fg_normal = "#ffffff"
theme.fg_focus = "#dfdfdf"
theme.bg_focus = "#44475a"
theme.textclock_fg = "#c5d5e1"
theme.accent2 = "#dfdfdf"
theme.accent3 = "#c5d5e1"

theme.taglist_bg_focus = theme.accent2
theme.taglist_fg_focus = theme.bg_normal
theme.fg_normal = "#101010"
theme.fg_focus = "#101010"
theme.fg_urgent = "#101010"
theme.fg_minimize = "#101010"
theme.fg_focus = "#ffffff"
theme.fg_urgent = "#ffffff"
theme.fg_minimize = "#ffffff"

theme.useless_gap = dpi(5)
theme.useless_gap = dpi(20)
theme.border_width = dpi(0)
theme.border_normal = "#efefef"
theme.border_focus = "#ffffff"
theme.border_marked = "#efefef"
theme.border_normal = "#fefefe"
theme.border_focus = "#dfdfdf"
theme.border_marked = "#91231c"

-- Taglist Squares
local taglist_square_size = dpi(0)
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
taglist_square_size, theme.textclock_fg
)

theme.menu_submenu_icon = themes_path.."default/submenu.png"
theme.menu_height = dpi(50)
theme.menu_width = dpi(150)
theme.menu_height = dpi(40)
theme.menu_width = dpi(180)

-- Define the image to load
-- Titlebar Button Icons
theme.titlebar_close_button_normal = themes_path.."icons/inac.png"
theme.titlebar_close_button_focus = themes_path.."icons/close.png"

theme.titlebar_ontop_button_normal_inactive = themes_path.."icons/inac.png"
theme.titlebar_ontop_button_focus_inactive = themes_path.."icons/ontop.png"
theme.titlebar_ontop_button_normal_active = themes_path.."icons/inac.png"
theme.titlebar_ontop_button_focus_active = themes_path.."icons/ontop.png"
theme.titlebar_ontop_button_focus_active = themes_path.."icons/top.png"

theme.titlebar_maximized_button_normal_inactive = themes_path.."icons/inac.png"
theme.titlebar_maximized_button_focus_inactive = themes_path.."icons/max.png"
theme.titlebar_maximized_button_normal_active = themes_path.."icons/inac.png"
theme.titlebar_maximized_button_focus_active = themes_path.."icons/max.png"

theme.wallpaper = themes_path.."walls/absolutelynothing.jpeg"

-- You can use your own layout icons like this:
theme.layout_floating = themes_path.."default/layouts/floatingw.png"
theme.layout_tile = themes_path.."default/layouts/tilew.png"

-- Generate Awesome icon:
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.wallpaper = themes_path.."Wallpaper/background.png"

-- Layout Icons
theme.layout_floating = themes_path.."icons/floating.png"
theme.layout_tile = themes_path.."icons/tile.png"

-- Idek
theme.taglist_squares_sel = "none.png"
theme.taglist_squares_unsel = "non.png"
theme.taglist_spacing = 13

-- Awesome Icon
theme.awesome_icon = theme_assets.awesome_icon(
theme.menu_height, theme.fg_focus, theme.bg_focus
theme.menu_height, theme.accent3, theme.bg_normal
)

-- 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