This commit is contained in:
talksik
2023-10-31 09:14:03 -07:00
parent 7892f8cda2
commit 9254d69403
2 changed files with 14 additions and 3 deletions
+2 -1
View File
@@ -9,7 +9,8 @@
# #
# Please see https://i3wm.org/docs/userguide.html for a complete reference! # Please see https://i3wm.org/docs/userguide.html for a complete reference!
set $mod Mod4 # Set mod key (Mod1=<Alt>, Mod4=<Super>)
set $mod Mod1
# Font for window titles. Will also be used by the bar unless a different font # Font for window titles. Will also be used by the bar unless a different font
# is used in the bar {} block below. # is used in the bar {} block below.
+11 -1
View File
@@ -1,7 +1,7 @@
require('lualine').setup { require('lualine').setup {
options = { options = {
icons_enabled = true, icons_enabled = true,
theme = 'material', theme = 'codedark',
}, },
sections = { sections = {
lualine_a = { lualine_a = {
@@ -19,13 +19,23 @@ require('lualine').setup {
{ {
'diff' 'diff'
}, },
{
'diagnostics'
},
}, },
-- lualine_x = { -- lualine_x = {
-- }, -- },
-- lualine_y = { -- lualine_y = {
-- }, -- },
lualine_z = { lualine_z = {
{
'datetime',
-- options: default, us, uk, iso, or your own format string ("%H:%M", etc..)
style = '%H:%M:%S',
},
{
'filesize' 'filesize'
} }
} }
}
} }