From 61d9ea1fc7f1de14fe568ca589514b385fd30d1e Mon Sep 17 00:00:00 2001 From: Sheppy Date: Fri, 24 Feb 2017 17:08:06 +0100 Subject: [PATCH] renamed hl_error to utils and changed dependencies also initial commit for panel content that will replace the right side in panel.sh --- herbstluftwm/cwd_helper.py | 2 +- herbstluftwm/hl_pracct_deamon.py | 2 +- herbstluftwm/{hl_error.py => hl_utils.py} | 0 herbstluftwm/panel_content.py | 1 + 4 files changed, 3 insertions(+), 2 deletions(-) rename herbstluftwm/{hl_error.py => hl_utils.py} (100%) create mode 100755 herbstluftwm/panel_content.py diff --git a/herbstluftwm/cwd_helper.py b/herbstluftwm/cwd_helper.py index cb777af..5342a8c 100755 --- a/herbstluftwm/cwd_helper.py +++ b/herbstluftwm/cwd_helper.py @@ -6,7 +6,7 @@ import sys import os import shlex import psutil -from hl_error import error, shexec +from hl_utils import error, shexec out = shexec('xdpyinfo').split('\n') diff --git a/herbstluftwm/hl_pracct_deamon.py b/herbstluftwm/hl_pracct_deamon.py index 725f0e3..45262dd 100755 --- a/herbstluftwm/hl_pracct_deamon.py +++ b/herbstluftwm/hl_pracct_deamon.py @@ -2,7 +2,7 @@ import os import sys import time -from hl_error import error, is_cip, shexec, color_remove +from hl_utils import error, is_cip, shexec, color_remove #Druckerguthaben if is_cip(): diff --git a/herbstluftwm/hl_error.py b/herbstluftwm/hl_utils.py similarity index 100% rename from herbstluftwm/hl_error.py rename to herbstluftwm/hl_utils.py diff --git a/herbstluftwm/panel_content.py b/herbstluftwm/panel_content.py new file mode 100755 index 0000000..3442ca4 --- /dev/null +++ b/herbstluftwm/panel_content.py @@ -0,0 +1 @@ +import hl_utils