From b81ec647b02f4cdc31e2479fe6e04c7e6b483c48 Mon Sep 17 00:00:00 2001 From: Felix Kratz Date: Tue, 31 Jan 2023 22:16:53 +0100 Subject: [PATCH] push version to 2.14.0 --- plugins/battery.sh | 2 +- plugins/clock.sh | 2 +- plugins/front_app.sh | 2 +- plugins/space.sh | 2 +- plugins/volume.sh | 2 +- plugins/wifi.sh | 2 +- src/sketchybar.m | 4 ++-- 7 files changed, 8 insertions(+), 8 deletions(-) diff --git a/plugins/battery.sh b/plugins/battery.sh index 61dc2b8..d29768b 100755 --- a/plugins/battery.sh +++ b/plugins/battery.sh @@ -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') diff --git a/plugins/clock.sh b/plugins/clock.sh index cff124f..1a99c61 100755 --- a/plugins/clock.sh +++ b/plugins/clock.sh @@ -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: diff --git a/plugins/front_app.sh b/plugins/front_app.sh index 83f1208..87c0b16 100755 --- a/plugins/front_app.sh +++ b/plugins/front_app.sh @@ -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 diff --git a/plugins/space.sh b/plugins/space.sh index 6693161..3ae63f9 100755 --- a/plugins/space.sh +++ b/plugins/space.sh @@ -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: diff --git a/plugins/volume.sh b/plugins/volume.sh index 01a1560..982995e 100755 --- a/plugins/volume.sh +++ b/plugins/volume.sh @@ -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. diff --git a/plugins/wifi.sh b/plugins/wifi.sh index 0533e99..f016a95 100755 --- a/plugins/wifi.sh +++ b/plugins/wifi.sh @@ -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. diff --git a/src/sketchybar.m b/src/sketchybar.m index a446604..358c6a2 100644 --- a/src/sketchybar.m +++ b/src/sketchybar.m @@ -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);