push version to 2.14.0

This commit is contained in:
Felix Kratz 2023-01-31 22:16:53 +01:00
parent bf939fa5ae
commit b81ec647b0
7 changed files with 8 additions and 8 deletions

View file

@ -1,4 +1,4 @@
#!/usr/bin/env sh
#!/bin/sh
PERCENTAGE=$(pmset -g batt | grep -Eo "\d+%" | cut -d% -f1)
CHARGING=$(pmset -g batt | grep 'AC Power')

View file

@ -1,4 +1,4 @@
#!/usr/bin/env sh
#!/bin/sh
# The $NAME variable is passed from sketchybar and holds the name of
# the item invoking this script:

View file

@ -1,4 +1,4 @@
#!/usr/bin/env sh
#!/bin/sh
# Some events send additional information specific to the event in the $INFO
# variable. E.g. the front_app_switched event sends the name of the newly

View file

@ -1,4 +1,4 @@
#!/usr/bin/env sh
#!/bin/sh
# The $SELECTED variable is available for space components and indicates if
# the space invoking this script (with name: $NAME) is currently selected:

View file

@ -1,4 +1,4 @@
#!/usr/bin/env sh
#!/bin/sh
# The volume_change event supplies a $INFO variable in which the current volume
# percentage is passed to the script.

View file

@ -1,4 +1,4 @@
#!/usr/bin/env sh
#!/bin/sh
# The wifi_change event supplies a $INFO variable in which the current SSID
# is passed to the script.

View file

@ -16,8 +16,8 @@
#define VERSION_OPT_SHRT "-v"
#define MAJOR 2
#define MINOR 13
#define PATCH 2
#define MINOR 14
#define PATCH 0
extern int SLSMainConnectionID(void);
extern int RunApplicationEventLoop(void);