GithubHelp home page GithubHelp logo

njcsih / battery.nvim Goto Github PK

View Code? Open in Web Editor NEW

This project forked from justinhj/battery.nvim

0.0 0.0 0.0 81 KB

Neovim plugin to detect and view battery information; FIXED FONTS

License: MIT License

Lua 93.96% Makefile 4.59% Vim Script 1.44%

battery.nvim's Introduction

battery.nvim

Neovim plugin to collect and view information on battery power in your status line.

What?

This is a cross platform Neovim plugin to provide battery information including percent charge remaining, number of batteries and whether the power cable is connected or not. The information is then provided as a programmatic API you can call from Lua and also suitable to add to your status line.

Why?

When I'm working on a small 12" laptop there's not a lot of screen real estate, so I tend to maximize my terminal window when editing code. Unfortunately, that means I can't see the battery status, and don't know how long I've got without switching windows. I decided to fix that by adding it to the the statusline.

How?

The plugin is written in Lua and depends heavily on the Plenary library for its excellent support for processes (Jobs). When you start the plugin (by calling require"battery".setup({})) it runs a job in the background every 5 minutes (or however often you want, see config) and updates the battery status. Then you can call require"battery".get_status_line() in your statusline plugin to show the battery percentage and an appropriate icon.

Features

  • Gracefully handle no battery (either remove battery info from the status line or just show a desktop icon)
  • Show charge level and whether there is a power cable attached or not via icons (requires nvim-tree/nvim-web-devicons)
  • Configurable update rate
  • Support for Microsoft Windows, Linux and Apple macOS.

Required dependencies

Lua dependencies

OS dependencies

On Windows and macOS, PowerShell and pmset are used to obtain battery status respectively. For Linux acpi is used, and may not be installed by default on your distribution. See How to handle acpi events on Linux. The package must be correctly installed and in your executable path.

Installation

Use your package manager to add the dependencies and the plugin.

Plug 'nvim-lua/plenary.nvim'
Plug 'nvim-tree/nvim-web-devicons'
Plug 'justinhj/battery.nvim'
use { 'justinhj/battery.nvim', requires = {{'nvim-tree/nvim-web-devicons'}, {'nvim-lua/plenary.nvim'}}}

Configuration

Once installed you need to run the setup function and pass in an optional config. This starts the internal timer so that the battery status is updated periodically. Since the process to get the battery can take a second or two, even though it happens in the background, I don't recommend setting it below about 10 seconds, and several minutes should be fine for most purposes. Running setup will always refresh the battery status.

There are some configuration options.

lua << END
local battery = require("battery")
battery.setup({
	update_rate_seconds = 30,           -- Number of seconds between checking battery status
	show_status_when_no_battery = true, -- Don't show any icon or text when no battery found (desktop for example)
	show_plugged_icon = true,           -- If true show a cable icon alongside the battery icon when plugged in
	show_unplugged_icon = true,         -- When true show a diconnected cable icon when not plugged in
	show_percent = true,                -- Whether or not to show the percent charge remaining in digits
    vertical_icons = true,              -- When true icons are vertical, otherwise shows horizontal battery icon
    multiple_battery_selection = 1,     -- Which battery to choose when multiple found. "max" or "maximum", "min" or "minimum" or a number to pick the nth battery found (currently linux acpi only)
})
END

Adding to lualine

Ensure minimal setup in your config.

lua require"battery".setup({})

In your lualine config add the following.

local nvimbattery = {
  function()
    return require("battery").get_status_line()
  end,
  color = { fg = colors.violet, bg = colors.bg },
}

Add it where you want it, something like below.

sections = { lualine_a = nvimbattery }

Adding to galaxyline

Add this to your galaxy line config in the section you want:

local gl = require 'galaxyline'
local gls = gl.section

-- in this example 5th section on the right, change as needed!
gls.right[5] = {
  BatteryNvim = {
    provider = function()
      -- note that battery.nvim uses format specifiers such as %% instead of %
      -- which is needed for other status line plugins like lualine and staline.
      -- galaxy line expects a formatted string so we must format it here...
      local status = require("battery").get_status_line()
      local formatted = string.format(status)
      return formatted
    end,
    separator = '๎‚ผ',
    separator_highlight = { colors.bg, colors.purple },
    highlight = { colors.grey, colors.purple },
  },
}

Diagnostics and debugging

If something breaks you should see a standard Vim error telling you what the problem is. There is some info logging you will find wherever your Neovim cache is :h stdpath.

For more than just info,warn and error logging you can enable debug logs which show a more verbose behaviour of the plugin using the following command to launch nvim.

PLENARY_DEBUG=true nvim

Notes

Inspired by lambdalisue/battery.vim, which in turn uses code from b4b4r07/dotfiles.

Copyright (c) 2022 Justin Heyes-Jones

battery.nvim's People

Contributors

justinhj avatar yoginalex avatar david-0609 avatar softinio avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.