Skip to content

Commit 8f1626f

Browse files
rux616martinbeentjes
authored andcommitted
Color icon upgrade (tmux-plugins#80)
* Upgrade color and icons to have higher granularity This is a large overhaul of the colors and icons in the plugin to enable higher granularity. All efforts have been made to have sane defaults. Additionally, a new 'status' has been added that is a catch-all 'unknown' in case a battery tool acts up or fails to report something meaningful. Added 8 new format strings: * #{battery_color_bg} - will set the background color of the status bar based on the battery charge level and status * #{battery_color_fg} - will set the foreground color of the status bar based on the battery charge level and status * #{battery_color_charge_bg} - will set the background color of the status bar based solely on the battery charge level * #{battery_color_charge_fg} - will set the foreground color of the status bar based solely on the battery charge level * #{battery_color_status_bg} - will set the background color of the status bar based solely on the battery status * #{battery_color_status_fg} - will set the foreground color of the status bar based solely on the battery status * #{battery_icon_charge} - will display a battery charge icon * #{battery_icon_status} - will display a battery status icon Removed 2 format strings: * #{battery_status_bg} * #{battery_status_fg} Added 39 new options: * @batt_color_charge_primary_tier8 - primary color to show at [95%-100%] battery charge * @batt_color_charge_primary_tier7 - primary color to show at [80%-95%) battery charge * @batt_color_charge_primary_tier6 - primary color to show at [65%-90%) battery charge * @batt_color_charge_primary_tier5 - primary color to show at [50%-65%) battery charge * @batt_color_charge_primary_tier4 - primary color to show at [35%-50%) battery charge * @batt_color_charge_primary_tier3 - primary color to show at [20%-35%) battery charge * @batt_color_charge_primary_tier2 - primary color to show at [5%-20%) battery charge * @batt_color_charge_primary_tier1 - primary color to show at [0%-5%) battery charge * @batt_color_charge_secondary_tier8 - secondary color to show at [95%- 100%] battery charge * @batt_color_charge_secondary_tier7 - secondary color to show at [80%- 95%) battery charge * @batt_color_charge_secondary_tier6 - secondary color to show at [65%- 90%) battery charge * @batt_color_charge_secondary_tier5 - secondary color to show at [50%- 65%) battery charge * @batt_color_charge_secondary_tier4 - secondary color to show at [35%- 50%) battery charge * @batt_color_charge_secondary_tier3 - secondary color to show at [20%- 35%) battery charge * @batt_color_charge_secondary_tier2 - secondary color to show at [5%- 20%) battery charge * @batt_color_charge_secondary_tier1 - secondary color to show at [0%- 5%) battery charge * @batt_color_status_primary_charged - primary color to show for a battery in 'fully-charged' status * @batt_color_status_primary_charging - primary color to show for a battery in 'charging' status * @batt_color_status_primary_discharging - primary color to show for a battery in 'discharging' status * @batt_color_status_primary_attached - primary color to show for a battery in 'attached' status * @batt_color_status_primary_unknown - primary color to show for a battery in an unknown status * @batt_color_status_secondary_charged - secondary color to show for a battery in 'fully-charged' status * @batt_color_status_secondary_charging - secondary color to show for a battery in 'charging' status * @batt_color_status_secondary_discharging - secondary color to show for a battery in 'discharging' status * @batt_color_status_secondary_attached - secondary color to show for a battery in 'attached' status * @batt_color_status_secondary_unknown - secondary color to show for a battery in an unknown status * @batt_icon_charge_tier8 - icon to show at [95%-100%] battery charge * @batt_icon_charge_tier7 - icon to show at [80%-95%) battery charge * @batt_icon_charge_tier6 - icon to show at [65%-90%) battery charge * @batt_icon_charge_tier5 - icon to show at [50%-65%) battery charge * @batt_icon_charge_tier4 - icon to show at [35%-50%) battery charge * @batt_icon_charge_tier3 - icon to show at [20%-35%) battery charge * @batt_icon_charge_tier2 - icon to show at [5%-20%) battery charge * @batt_icon_charge_tier1 - icon to show at [0%-5%) battery charge * @batt_icon_status_charged - icon to show for a battery in 'fully- charged' status * @batt_icon_status_charging - icon to show for a battery in 'charging' status * @batt_icon_status_discharging - icon to show for a battery in 'discharging' status * @batt_icon_status_attached - icon to show for a battery in 'attached' status * @batt_icon_status_unknown - icon to show for a battery in an unknown status Removed 12 options: * @batt_charged_icon * @batt_charging_icon * @batt_attached_icon * @batt_full_charge_icon * @batt_high_charge_icon * @batt_medium_charge_icon * @batt_low_charge_icon * @batt_color_full_charge * @batt_color_high_charge * @batt_color_medium_charge * @batt_color_low_charge * @batt_color_charging Format string notes: * #{battery_color_bg} and #{battery_color_fg} replace #{battery_status_bg} and #{battery_status_fg}, respectively and continue to act the same way * #{battery_color_charge_bg/fg} changes colors based ONLY on the battery charge level * #{battery_color_status_bg/fg} changes colors based ONLY on the battery status * #{battery_icon_charge} displays ONLY an icon for the charge level * #{battery_icon_status} displays ONLY an icon for the charge status * #{battery_icon} continues to display both Option notes: * @batt_color_..._primary options are what will be displayed in the main bg or fg you choose - e.g. if you use #{battery_color_bg}, the primary color will be the background * Likewise, the corresponding @batt_color_..._secondary option will be the foreground in the example above * Fixed #{battery_graph} format string Previously, the #{battery_graph} format string wouldn't show an actual graph. This has been fixed. The graph is also 5 characters wide now, regardless of battery charge level. * Clarified some language in README.md * Changed a word because words are hard
1 parent 8e5f5ab commit 8f1626f

36 files changed

+547
-135
lines changed

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
# Changelog
22

33
### master
4+
- Fixed `#{battery_graph}` to actually display graph (@rux616)
5+
- High-granularity icons and colors added. (@rux616)
46
- Changed preferred order of utility applications to be `pmset` -> `acpi` -> `upower` -> `termux-battery-status` due to CPU usage issues with `upower` (2019-03-05) (@rux616)
57
- Added `#{battery_status_bg}` feature (@RyanFrantz)
68
- Added multibattery output support for `upower` (@futuro)

README.md

Lines changed: 173 additions & 58 deletions
Original file line numberDiff line numberDiff line change
@@ -9,112 +9,227 @@ In order to read the battery status, this plugin depends on having one of the fo
99
- acpi
1010
- upower
1111
- termux-battery-status
12+
- apm
1213

1314
In a normal situation, one of the above should be installed on your system by default and thus it should not be necessary to specifically install one of them. That being said, the `acpi` utility is currently recommended for use over `upower` where possible due to ongoing CPU usage issues.
1415

1516
### Installation with [Tmux Plugin Manager](https://github.com/tmux-plugins/tpm) (recommended)
1617

1718
Add plugin to the list of TPM plugins in `.tmux.conf`:
1819

19-
set -g @plugin 'tmux-plugins/tmux-battery'
20+
```tmux
21+
set -g @plugin 'tmux-plugins/tmux-battery'
22+
```
2023

21-
Hit `prefix + I` to fetch the plugin and source it.
24+
Hit `<prefix> + I` to fetch the plugin and source it.
2225

2326
If format strings are added to `status-right`, they should now be visible.
2427

2528
### Manual Installation
2629

2730
Clone the repo:
2831

29-
$ git clone https://github.com/tmux-plugins/tmux-battery ~/clone/path
32+
```shell
33+
git clone https://github.com/tmux-plugins/tmux-battery ~/clone/path
34+
```
3035

3136
Add this line to the bottom of `.tmux.conf`:
3237

33-
run-shell ~/clone/path/battery.tmux
38+
```tmux
39+
run-shell ~/clone/path/battery.tmux
40+
```
3441

35-
Reload TMUX environment:
42+
From the terminal, reload TMUX environment:
3643

37-
# type this in terminal
38-
$ tmux source-file ~/.tmux.conf
44+
```shell
45+
tmux source-file ~/.tmux.conf
46+
```
3947

4048
If format strings are added to `status-right`, they should now be visible.
4149

4250
## Usage
4351

44-
Add `#{battery_icon}`, `#{battery_percentage}` `#{battery_remain}`, or
45-
`#{battery_status_bg}` format strings to existing `status-right` tmux option.
46-
Example:
52+
Add any of the supported format strings (see below) to the `status-right` tmux option in `.tmux.conf`. Example:
4753

48-
# in .tmux.conf
49-
set -g status-right '#{battery_status_bg} Batt: #{battery_icon} #{battery_percentage} #{battery_remain} | %a %h-%d %H:%M '
54+
```tmux
55+
set -g status-right '#{battery_status_bg} Batt: #{battery_icon} #{battery_percentage} #{battery_remain} | %a %h-%d %H:%M '
56+
```
5057

58+
### Supported Format Strings
59+
60+
- `#{battery_color_bg}` - will set the background color of the status bar based on the battery charge level and status
61+
- `#{battery_color_fg}` - will set the foreground color of the status bar based on the battery charge level and status
62+
- `#{battery_color_charge_bg}` - will set the background color of the status bar based solely on the battery charge level
63+
- `#{battery_color_charge_fg}` - will set the foreground color of the status bar based solely on the battery charge level
64+
- `#{battery_color_status_bg}` - will set the background color of the status bar based solely on the battery status
65+
- `#{battery_color_status_fg}` - will set the foreground color of the status bar based solely on the battery status
66+
- `#{battery_graph}` - will show battery percentage as a bar graph: ▁▂▄▆█
67+
- `#{battery_icon}` - will display a battery status/charge icon
68+
- `#{battery_icon_charge}` - will display a battery charge icon
69+
- `#{battery_icon_status}` - will display a battery status icon
70+
- `#{battery_percentage}` - will show battery percentage
71+
- `#{battery_remain}` - will show remaining time of battery charge\*
72+
73+
\* These format strings can be further customized via options as described below.
74+
75+
#### Options
76+
77+
`#{battery_remain}`
78+
79+
- `@batt_remain_short`: 'true' / 'false' - This will shorten the time remaining (when charging or discharging) to `~H:MM`.
80+
81+
### Defaults
82+
83+
#### Options
84+
85+
- `@batt_remain_short`: 'false'
86+
87+
#### Icons/Colors
88+
89+
By default, the following colors and icons are used. (The exact colors displayed depends on your terminal / X11 config.)
90+
91+
Please be aware that the 'level of charge' as noted below (e.g. `[80%-95%)`) uses interval notation. If you are unfamiliar with it, <a href="https://en.wikipedia.org/wiki/Bracket_(mathematics)#Intervals">check it out here</a>.
92+
93+
Also, a note about the `@batt_color_...` options: `@batt_color_..._primary` options are what will be displayed in the main `bg` or `fg` format strings you choose - e.g. if you use `#{battery_color_bg}`, the `@batt_color_..._primary` color you choose will be the background. Likewise, the corresponding `@batt_color_..._secondary` color will be the foreground.
94+
95+
Level of Charge Colors:
96+
97+
- primary tier 8 \[95%-100%] (`@batt_tier8_charge_color_primary`): '#00ff00'
98+
- primary tier 7 \[80%-95%) (`@batt_tier7_charge_color_primary`): '#55ff00'
99+
- primary tier 6 \[65%-80%) (`@batt_tier6_charge_color_primary`): '#aaff00'
100+
- primary tier 5 \[50%-65%) (`@batt_tier5_charge_color_primary`): '#ffff00'
101+
- primary tier 4 \[35%-50%) (`@batt_tier4_charge_color_primary`): '#ffc000'
102+
- primary tier 3 \[20%-35%) (`@batt_tier3_charge_color_primary`): '#ff8000'
103+
- primary tier 2 (5%-20%) (`@batt_tier2_charge_color_primary`): '#ff4000'
104+
- primary tier 1 \[0%-5%] (`@batt_tier1_charge_color_primary`): '#ff0000'
105+
- secondary tier 8 \[95%-100%] (`@batt_tier8_charge_color_secondary`): 'colour0'
106+
- secondary tier 7 \[80%-95%) (`@batt_tier7_charge_color_secondary`): 'colour0'
107+
- secondary tier 6 \[65%-80%) (`@batt_tier6_charge_color_secondary`): 'colour0'
108+
- secondary tier 5 \[50%-65%) (`@batt_tier5_charge_color_secondary`): 'colour0'
109+
- secondary tier 4 \[35%-50%) (`@batt_tier4_charge_color_secondary`): 'colour0'
110+
- secondary tier 3 \[20%-35%) (`@batt_tier3_charge_color_secondary`): 'colour0'
111+
- secondary tier 2 (5%-20%) (`@batt_tier2_charge_color_secondary`): 'colour0'
112+
- secondary tier 1 \[0%-5%] (`@batt_tier1_charge_color_secondary`): 'colour0'
113+
114+
Status Colors:
115+
116+
- primary charged (`@batt_color_primary_charged`): 'colour33'
117+
- primary charging (`@batt_color_primary_charging`): 'colour33'
118+
- primary discharging (`@batt_color_primary_discharging`): 'colour14'
119+
- primary attached (`@batt_color_primary_attached`): 'colour201'
120+
- primary unknown (`@batt_color_primary_unknown`): 'colour7'
121+
- secondary charged (`@batt_color_secondary_charged`): 'colour0'
122+
- secondary charging (`@batt_color_secondary_charging`): 'colour0'
123+
- secondary discharging (`@batt_color_secondary_discharging`): 'colour0'
124+
- secondary attached (`@batt_color_secondary_attached`): 'colour0'
125+
- secondary unknown (`@batt_color_secondary_unknown`): 'colour0'
126+
127+
Level of Charge Icons:
128+
129+
- tier 8 \[95%-100%] (`@batt_tier8_charge_icon`): '█'
130+
- tier 7 \[80%-95%) (`@batt_tier7_charge_icon`): '▇'
131+
- tier 6 \[65%-80%) (`@batt_tier6_charge_icon`): '▆'
132+
- tier 5 \[50%-65%) (`@batt_tier5_charge_icon`): '▅'
133+
- tier 4 \[35%-50%) (`@batt_tier4_charge_icon`): '▄'
134+
- tier 3 \[20%-35%) (`@batt_tier3_charge_icon`): '▃'
135+
- tier 2 (5%-20%) (`@batt_tier2_charge_icon`): '▂'
136+
- tier 1 \[0%-5%] (`@batt_tier1_charge_icon`): '▁'
137+
138+
Status Icons:
139+
140+
- charged (`@batt_icon_charged`): '🔌'
141+
- charged - OS X (`@batt_icon_charged`): '🔌'
142+
- charging (`@batt_icon_charging`): '🔌'
143+
- discharging (`@batt_icon_discharging`): '🔋'
144+
- attached (`@batt_icon_attached`): '⚠️'
145+
- unknown (`@batt_icon_unknown`): '?'
146+
147+
#### Changing the Defaults
148+
149+
All efforts have been made to make sane defaults, but if you wish to change any of them, add the option to `.tmux.conf`. For example:
150+
151+
```tmux
152+
set -g @batt_icon_charge_tier8 '🌕'
153+
set -g @batt_icon_charge_tier7 '🌖'
154+
set -g @batt_icon_charge_tier6 '🌖'
155+
set -g @batt_icon_charge_tier5 '🌗'
156+
set -g @batt_icon_charge_tier4 '🌗'
157+
set -g @batt_icon_charge_tier3 '🌘'
158+
set -g @batt_icon_charge_tier2 '🌘'
159+
set -g @batt_icon_charge_tier1 '🌑'
160+
set -g @batt_icon_status_charged '🔋'
161+
set -g @batt_icon_status_charging ''
162+
set -g @batt_icon_status_discharging '👎'
163+
set -g @batt_color_status_primary_charged '#3daee9'
164+
set -g @batt_color_status_primary_charging '#3daee9'
165+
```
166+
167+
Don't forget to reload the tmux environment after you do this by either hitting `<prefix> + I` if tmux battery is installed via the tmux plugin manager, or by typing `tmux source-file ~/.tmux.conf` in the terminal if tmux battery is manually installed.
168+
169+
*Warning*: The battery icon change most likely will not be instant. When you un-plug the power cord, it will take some time (15 - 60 seconds) for the icon to change. This depends on the `status-interval` tmux option. Setting it to 15 seconds should be good enough.
51170

52171
## Examples
53-
Battery full (for OS X):<br/>
54-
![battery full](/screenshots/battery_full.png)
55172

56-
Battery discharging, custom discharge icon:<br/>
57-
![battery discharging, custom icon](/screenshots/battery_discharging.png)
173+
These are all examples of the default plugin color and icon schemes paired with the default tmux color scheme using the following `status-right` and `status-right-length` settings in `.tmux.conf`
58174

59-
Battery charging:<br/>
60-
![battery charging](/screenshots/battery_charging.png)
175+
```tmux
176+
set -g status-right 'Colors: #{battery_color_bg}bg#[default] #{battery_color_fg}fg#[default] #{battery_color_charge_bg}charge_bg#[default] #{battery_color_charge_fg}charge_fg#[default] #{battery_color_status_bg}status_bg#[default] #{battery_color_status_fg}status_fg#[default] | Graph: #{battery_graph} | Icon: #{battery_icon} | Charge Icon: #{battery_icon_charge} | Status Icon: #{battery_icon_status} | Percent: #{battery_percentage} | Remain: #{battery_remain}'
177+
set -g status-right-length '150'
178+
```
61179

62-
Battery remain:<br/>
63-
![battery remain](/screenshots/battery_remain.png)
180+
Battery charging at tier 8 \[95%-100%]:<br>
181+
![battery-charging-tier8](./screenshots/battery_charging_tier8.png)
64182

65-
Battery fully charged:<br/>
66-
![battery_status_bg_green](/screenshots/battery_status_bg_green.png)
183+
Battery charging at tier 7 \[80%-95%):<br>
184+
![battery-charging-tier7](./screenshots/battery_charging_tier7.png)
67185

68-
Battery between 99% and 51% charged:<br/>
69-
![battery_status_bg_yellow](/screenshots/battery_status_bg_yellow.png)
186+
Battery charging at tier 6 \[65%-80%):<br>
187+
![battery-charging-tier6](./screenshots/battery_charging_tier6.png)
70188

71-
Battery between 50% and 16% charged:<br/>
72-
![battery_status_bg_orange](/screenshots/battery_status_bg_orange.png)
189+
Battery charging at tier 5 \[50%-65%):<br>
190+
![battery-charging-tier5](./screenshots/battery_charging_tier5.png)
73191

74-
Battery between 15% and dead:<br/>
75-
![battery_status_bg_red](/screenshots/battery_status_bg_red.png)
192+
Battery charging at tier 4 \[35%-50%):<br>
193+
![battery-charging-tier4](./screenshots/battery_charging_tier4.png)
76194

77-
This is done by introducing new format strings that can be added to
78-
`status-right` option:
79-
- `#{battery_icon}` - will display a battery status icon
80-
- `#{battery_percentage}` - will show battery percentage
81-
- `#{battery_remain}` - will show remaining time of battery charge
82-
- `#{battery_status_bg}` - will set the background color of the status bar based on the battery percentage
83-
- `#{battery_status_fg}` - will set the foreground color of the status bar based on the battery percentage
84-
- `#{battery_graph}` - will show battery percentage as a bar graph ▁▂▃▅▇
195+
Battery charging at tier 3 \[20%-35%):<br>
196+
![battery-charging-tier3](./screenshots/battery_charging_tier3.png)
85197

86-
## Changing icons
198+
Battery charging at tier 2 (5%-20%):<br>
199+
![battery-charging-tier2](./screenshots/battery_charging_tier2.png)
87200

88-
By default, these icons are displayed:
201+
Battery charging at tier 1 \[0%-5%]:<br>
202+
![battery-charging-tier1](./screenshots/battery_charging_tier1.png)
89203

90-
- charged: ":battery:" ("❇ " when not on OS X)
91-
- charging: ":zap:"
92-
- discharging: Moon icons depending on your battery level
93-
- attached but not charging: ":warning:"
204+
Battery discharging at tier 8 \[95%-100%]:<br>
205+
![battery-discharging-tier8](./screenshots/battery_discharging_tier8.png)
94206

95-
You can change these defaults by adding the following to `.tmux.conf` (the
96-
following lines are not in the code block so that emojis can be seen):
207+
Battery discharging at tier 7 \[80%-95%):<br>
208+
![battery-discharging-tier7](./screenshots/battery_discharging_tier7.png)
97209

98-
- set -g @batt_charged_icon ":sunglasses:"
99-
- set -g @batt_charging_icon ":+1:"
100-
- set -g @batt_attached_icon ":neutral_face:"
101-
- set -g @batt_full_charge_icon "🌕 "
102-
- set -g @batt_high_charge_icon "🌖 "
103-
- set -g @batt_medium_charge_icon "🌗 "
104-
- set -g @batt_low_charge_icon "🌘 "
210+
Battery discharging at tier 6 \[65%-80%):<br>
211+
![battery-discharging-tier6](./screenshots/battery_discharging_tier6.png)
105212

106-
Don't forget to reload tmux environment (`$ tmux source-file ~/.tmux.conf`)
107-
after you do this.
213+
Battery discharging at tier 5 \[50%-65%):<br>
214+
![battery-discharging-tier5](./screenshots/battery_discharging_tier5.png)
108215

109-
*Warning*: The battery icon change most likely will not be instant. When you un-plug the power cord, it will take some time (15 - 60 seconds) for the icon to change. This depends on the `status-interval` tmux option. Setting it to 15 seconds should be good enough.
216+
Battery discharging at tier 4 \[35%-50%):<br>
217+
![battery-discharging-tier4](./screenshots/battery_discharging_tier4.png)
218+
219+
Battery discharging at tier 3 \[20%-35%):<br>
220+
![battery-discharging-tier3](./screenshots/battery_discharging_tier3.png)
110221

111-
## Shortened remaining output
222+
Battery discharging at tier 2 (5%-20%):<br>
223+
![battery-discharging-tier2](./screenshots/battery_discharging_tier2.png)
112224

113-
To shorten the output of `#{battery_remain}`, set the following variable:
225+
Battery discharging at tier 1 \[0%-5%]:<br>
226+
![battery-discharging-tier1](./screenshots/battery_discharging_tier1.png)
114227

115-
set -g @batt_remain_short true
228+
Battery in 'attached' status:<br>
229+
![battery-status-attached](./screenshots/battery_status_attached.png)
116230

117-
This will shorten the time remaining (when charging or discharging) to `~H:MM`.
231+
Battery in an unknown status:<br>
232+
![battery-status-unknown](./screenshots/battery_status_unknown.png)
118233

119234
### Tmux Plugins
120235

battery.tmux

Lines changed: 21 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -5,20 +5,33 @@ CURRENT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
55
source "$CURRENT_DIR/scripts/helpers.sh"
66

77
battery_interpolation=(
8+
"\#{battery_color_bg}"
9+
"\#{battery_color_fg}"
10+
"\#{battery_color_charge_bg}"
11+
"\#{battery_color_charge_fg}"
12+
"\#{battery_color_status_bg}"
13+
"\#{battery_color_status_fg}"
14+
"\#{battery_graph}"
15+
"\#{battery_icon}"
16+
"\#{battery_icon_charge}"
17+
"\#{battery_icon_status}"
818
"\#{battery_percentage}"
919
"\#{battery_remain}"
10-
"\#{battery_icon}"
11-
"\#{battery_status_bg}"
12-
"\#{battery_status_fg}"
13-
"\#{battery_graph}"
1420
)
21+
1522
battery_commands=(
23+
"#($CURRENT_DIR/scripts/battery_color.sh bg)"
24+
"#($CURRENT_DIR/scripts/battery_color.sh fg)"
25+
"#($CURRENT_DIR/scripts/battery_color_charge.sh bg)"
26+
"#($CURRENT_DIR/scripts/battery_color_charge.sh fg)"
27+
"#($CURRENT_DIR/scripts/battery_color_status.sh bg)"
28+
"#($CURRENT_DIR/scripts/battery_color_status.sh fg)"
29+
"#($CURRENT_DIR/scripts/battery_graph.sh)"
30+
"#($CURRENT_DIR/scripts/battery_icon.sh)"
31+
"#($CURRENT_DIR/scripts/battery_icon_charge.sh)"
32+
"#($CURRENT_DIR/scripts/battery_icon_status.sh)"
1633
"#($CURRENT_DIR/scripts/battery_percentage.sh)"
1734
"#($CURRENT_DIR/scripts/battery_remain.sh)"
18-
"#($CURRENT_DIR/scripts/battery_icon.sh)"
19-
"#($CURRENT_DIR/scripts/battery_status_bg.sh)"
20-
"#($CURRENT_DIR/scripts/battery_status_fg.sh)"
21-
"#($CURRENT_DIR/scripts/battery_graph.sh)"
2235
)
2336

2437
set_tmux_option() {

screenshots/battery_charging.png

-10.2 KB
Binary file not shown.
7.31 KB
Loading
7.59 KB
Loading
7.73 KB
Loading
7.75 KB
Loading
7.56 KB
Loading
7.61 KB
Loading

0 commit comments

Comments
 (0)