Skip to content

Commit

Permalink
push version to 2.14.0
Browse files Browse the repository at this point in the history
  • Loading branch information
FelixKratz committed Jan 31, 2023
1 parent bf939fa commit b81ec64
Show file tree
Hide file tree
Showing 7 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion plugins/battery.sh
Original file line number Diff line number Diff line change
@@ -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')
Expand Down
2 changes: 1 addition & 1 deletion plugins/clock.sh
Original file line number Diff line number Diff line change
@@ -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:
Expand Down
2 changes: 1 addition & 1 deletion plugins/front_app.sh
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion plugins/space.sh
Original file line number Diff line number Diff line change
@@ -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:
Expand Down
2 changes: 1 addition & 1 deletion plugins/volume.sh
Original file line number Diff line number Diff line change
@@ -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.
Expand Down
2 changes: 1 addition & 1 deletion plugins/wifi.sh
Original file line number Diff line number Diff line change
@@ -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.
Expand Down
4 changes: 2 additions & 2 deletions src/sketchybar.m
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down

0 comments on commit b81ec64

Please sign in to comment.