aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRael <rael.gc@gmail.com>2015-10-17 07:24:20 -0300
committerRael <rael.gc@gmail.com>2015-10-17 07:24:20 -0300
commit503f33a6908862506c374a3933c39117143a54b2 (patch)
tree03483f4a8d6cca01f92620bcffde59ddd3495da8
parent8d707a187d06355d5b75a86987eeb1563fa3c1f9 (diff)
downloadscudcloud-503f33a6908862506c374a3933c39117143a54b2.zip
scudcloud-503f33a6908862506c374a3933c39117143a54b2.tar.gz
scudcloud-503f33a6908862506c374a3933c39117143a54b2.tar.bz2
If client is desktop, Slack will open links directly...
-rw-r--r--scudcloud-1.0/lib/resources.py2
-rw-r--r--scudcloud-1.0/resources/resources.css2
-rwxr-xr-xscudcloud-1.0/scudcloud2
3 files changed, 3 insertions, 3 deletions
diff --git a/scudcloud-1.0/lib/resources.py b/scudcloud-1.0/lib/resources.py
index cb93d91..f9835d8 100644
--- a/scudcloud-1.0/lib/resources.py
+++ b/scudcloud-1.0/lib/resources.py
@@ -2,7 +2,7 @@ import os, re
class Resources:
- APP_NAME = "scudcloud"
+ APP_NAME = "ScudCloud Slack_SSB"
SIGNIN_URL = "https://slack.com/signin"
MAINPAGE_URL_RE = re.compile(r'^http[s]://[a-zA-Z0-9_\-]+.slack.com/?$')
MESSAGES_URL_RE = re.compile(r'^http[s]://[a-zA-Z0-9_\-]+.slack.com/messages/.*')
diff --git a/scudcloud-1.0/resources/resources.css b/scudcloud-1.0/resources/resources.css
index 3d1279a..bc30435 100644
--- a/scudcloud-1.0/resources/resources.css
+++ b/scudcloud-1.0/resources/resources.css
@@ -1,2 +1,2 @@
-nav.top, footer {display: none !important;}
+nav.top, footer, #prefs_mac_ssb_tab {display: none !important;}
* {font-family: Lato,"Helvetica Neue",Helvetica,"Segoe UI",Tahoma,Arial,sans-serif;}
diff --git a/scudcloud-1.0/scudcloud b/scudcloud-1.0/scudcloud
index 6b07c37..2010636 100755
--- a/scudcloud-1.0/scudcloud
+++ b/scudcloud-1.0/scudcloud
@@ -44,7 +44,7 @@ def lock():
runtime_dir = os.environ['XDG_RUNTIME_DIR']
else:
runtime_dir = tempfile.gettempdir()
- pid_file = runtime_dir+'/'+Resources.APP_NAME+'.pid'
+ pid_file = runtime_dir+'/scudcloud.pid'
fp = open(pid_file, 'w')
try:
fcntl.lockf(fp, fcntl.LOCK_EX | fcntl.LOCK_NB)