Skip to content
This repository was archived by the owner on Oct 11, 2024. It is now read-only.

Commit b253f8c

Browse files
committed
verbose output removed; bump to 1.2.7
1 parent 2f6f7d3 commit b253f8c

File tree

2 files changed

+1
-8
lines changed

2 files changed

+1
-8
lines changed

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ def read(f_name):
88

99
setup(
1010
name='sgtk-menu',
11-
version='1.2.5',
11+
version='1.2.7',
1212
description='GTK menu for sway, i3 and some other WMs',
1313
packages=find_packages(),
1414
include_package_data=True,

sgtk_menu/tools.py

-7
Original file line numberDiff line numberDiff line change
@@ -25,12 +25,9 @@ def check_wm():
2525
if val:
2626
if val.startswith("/"):
2727
wm = val.split("/")[-1]
28-
print("from DESKTOP_SESSION /")
2928
else:
30-
print("from DESKTOP_SESSION")
3129
wm = val
3230
if wm:
33-
print(wm)
3431
return wm
3532
except KeyError:
3633
pass
@@ -42,8 +39,6 @@ def check_wm():
4239
elif "i3" in val:
4340
wm = "i3"
4441
if wm:
45-
print("from I3SOCK")
46-
print(wm)
4742
return wm
4843
except KeyError:
4944
pass
@@ -53,8 +48,6 @@ def check_wm():
5348
if "sway" in val:
5449
wm = "sway"
5550
if wm:
56-
print("from I3SOCK")
57-
print(wm)
5851
return wm
5952
except KeyError:
6053
pass

0 commit comments

Comments
 (0)