diff --git a/i3wm/.config/i3status/config b/i3wm/.config/i3status/config index 1943f71..66100c6 100644 --- a/i3wm/.config/i3status/config +++ b/i3wm/.config/i3status/config @@ -1,20 +1,58 @@ +# i3status configuration file. +# see "man i3status" for documentation. + +# It is important that this file is edited as UTF-8. +# The following line should contain a sharp s: +# ß +# If the above line is not correctly displayed, fix your editor first! + general { - output_format = "i3bar" - colors = false - markup = pango - interval = 5 - color_good = '#2f343f' - color_degraded = '#ebcb8b' - color_bad = '#ba5e57' + colors = true + interval = 5 } -order += "battery" +order += "ipv6" +order += "cpu_temperature 0" +order += "wireless _first_" +order += "ethernet _first_" +order += "battery all" +order += "load" +order += "tztime local" -battery { - format = "%status %percentage %remaining" - last_full_capacity = true - low_threshold = 10 - threshold_type = percentage - format_down = "No battery" - path = "/sys/class/power_supply/BAT0/uevent" +cpu_temperature 0 { + format = "Tea: %degrees °C" +} + +wireless _first_ { + # format_up = "W: (%quality at %essid) %ip" + format_up = "W: (%quality) Leaked IP: %ip" + format_down = "W: down" +} + +ethernet _first_ { + # if you use %speed, i3status requires root privileges + # format_up = "E: %ip (%speed)" + format_up = "E: Leaked IP: %ip (%speed)" + format_down = "E: down" +} + +battery all { + format = "Fairy Dust: %percentage %status %remaining" +} + +tztime local { + format = "%Y-%m-%d %I:%M:%S" +} + +load { + format = "Hot Loads: %1min" +} + +disk "/" { + format = "Penger Folder: %avail" +} + +ipv6 { + format_up = "Useless Protocol: %ipv6" + format_down = "Useless Protocol: Down" } diff --git a/nvim/.config/nvim/lua/vxclutch/lazy/appearance.lua b/nvim/.config/nvim/lua/vxclutch/lazy/appearance.lua index 9993137..9e1bfae 100644 --- a/nvim/.config/nvim/lua/vxclutch/lazy/appearance.lua +++ b/nvim/.config/nvim/lua/vxclutch/lazy/appearance.lua @@ -21,36 +21,6 @@ return { ColorMyPencils() end, }, - { - "ellisonleao/gruvbox.nvim", - name = "gruvbox", - config = function() - require("gruvbox").setup { - terminal_colors = true, -- add neovim terminal colors - undercurl = true, - underline = false, - bold = true, - italic = { - strings = false, - emphasis = false, - comments = false, - operators = false, - folds = false, - }, - strikethrough = true, - invert_selection = false, - invert_signs = false, - invert_tabline = false, - invert_intend_guides = false, - inverse = true, -- invert background for search, diffs, statuslines and errors - contrast = "", -- can be "hard", "soft" or empty string - palette_overrides = {}, - overrides = {}, - dim_inactive = false, - transparent_mode = false, - } - end, - }, { "folke/tokyonight.nvim", config = function()