add new calendar widget with ics file support, fix some bugs and added some game rules so steam games fullscreen isn't as annoying
This commit is contained in:
@@ -144,6 +144,52 @@ Theme_config.tasklist = {
|
||||
]] --
|
||||
|
||||
--#region Module Settings
|
||||
Theme_config.calendar = {
|
||||
bg = color["Grey900"],
|
||||
fg = color["Grey100"],
|
||||
border_color = color["Grey800"],
|
||||
border_width = dpi(2),
|
||||
day = {
|
||||
today_border_color = color["Blue200"],
|
||||
bg = color["Grey900"],
|
||||
bg_focus = color["Teal200"],
|
||||
bg_unfocus = color["Grey900"],
|
||||
fg = color["Grey100"],
|
||||
fg_focus = color["Grey900"],
|
||||
fg_unfocus = color["Grey600"],
|
||||
border_color = color["Grey800"],
|
||||
border_width = dpi(2),
|
||||
shape = function(cr, width, height)
|
||||
gears.shape.rounded_rect(cr, width, height, dpi(4))
|
||||
end,
|
||||
},
|
||||
task = {
|
||||
bg = color["Purple200"],
|
||||
fg = color["Grey900"],
|
||||
shape = function(cr, width, height)
|
||||
gears.shape.rounded_rect(cr, width, height, dpi(4))
|
||||
end,
|
||||
},
|
||||
weekdays = {
|
||||
bg = color["Grey900"],
|
||||
fg = color["Blue200"]
|
||||
},
|
||||
add_ical = {
|
||||
bg = color["Red200"],
|
||||
fg = color["Grey900"],
|
||||
shape = function(cr, width, height)
|
||||
gears.shape.rounded_rect(cr, width, height, dpi(4))
|
||||
end,
|
||||
},
|
||||
add_task = {
|
||||
bg = color["LightBlue200"],
|
||||
fg = color["Grey900"],
|
||||
shape = function(cr, width, height)
|
||||
gears.shape.rounded_rect(cr, width, height, dpi(4))
|
||||
end,
|
||||
}
|
||||
}
|
||||
|
||||
Theme_config.notification = {
|
||||
border_color = color["Grey800"],
|
||||
border_width = dpi(4),
|
||||
|
||||
@@ -20,9 +20,11 @@ User_config = {
|
||||
"picom --experimental-backends",
|
||||
"xfce4-power-manager",
|
||||
"light-locker --lock-on-suspend --lock-on-lid &",
|
||||
"spotify",
|
||||
"discord",
|
||||
"/usr/lib/policykit-1-gnome/polkit-gnome-authentication-agent-1",
|
||||
"setxkbmap -option caps:swapescape",
|
||||
"protonmail-bridge"
|
||||
"jamesdsp"
|
||||
},
|
||||
|
||||
--[[
|
||||
@@ -45,7 +47,7 @@ User_config = {
|
||||
"MEDIA_PLAYER"
|
||||
More information at: https://lazka.github.io/pgi-docs/UPowerGlib-1.0/enums.html#UPowerGlib.DeviceKind.KEYBOARD
|
||||
]] --
|
||||
battery_kind = "BATTERY",
|
||||
battery_kind = "LINE_POWER",
|
||||
|
||||
--[[
|
||||
If your battery is not found you can specify its path here.
|
||||
@@ -191,8 +193,8 @@ User_config = {
|
||||
"ram_usage",
|
||||
"microphone",
|
||||
"volume",
|
||||
"backlight",
|
||||
"battery"
|
||||
"gpu_temp",
|
||||
"gpu_usage"
|
||||
},
|
||||
|
||||
--[[
|
||||
@@ -275,8 +277,10 @@ User_config = {
|
||||
"Tasklist"
|
||||
},
|
||||
right_bar = {
|
||||
"Battery",
|
||||
"Bluetooth",
|
||||
"Gpu Usage",
|
||||
"Gpu Temperature",
|
||||
"Cpu Usage",
|
||||
"Cpu Temperature",
|
||||
"Audio",
|
||||
"Keyboard Layout",
|
||||
"Date",
|
||||
|
||||
Reference in New Issue
Block a user