-
Notifications
You must be signed in to change notification settings - Fork 41
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
1.打包成单独运行文件,制作了安装脚本,解决依赖问题 2.改为使用pyinstaller打包
- Loading branch information
1 parent
d78c835
commit 3ad8ded
Showing
9 changed files
with
43 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,7 @@ | ||
2015-10-13 version 0.2.0 | ||
1.打包成单独运行文件,制作了安装脚本,解决依赖问题 | ||
2.改为使用pyinstaller打包 | ||
|
||
2015-10-11 version 0.1.9 | ||
1.UI微调(字体,颜色等) | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
#!/bin/bash | ||
cp Tickeys /usr/bin/tickeys | ||
chmod 0777 /usr/bin/tickeys | ||
mkdir /usr/share/icons/Tickeys | ||
cp tickeys.png /usr/share/icons/Tickeys/tickeys.png | ||
cat>>Tickeys.desktop<<EOF | ||
#!/usr/bin/env xdg-open | ||
[Desktop Entry] | ||
Type=Application | ||
Categories=Application; | ||
Exec=gksu /usr/bin/tickeys | ||
Icon=/usr/share/icons/Tickeys/tickeys.png | ||
Terminal=true | ||
Hidden=false | ||
NoDisplay=false | ||
StartupNotify=true | ||
X-GNOME-Autostart-enabled=true | ||
Name=Tickeys | ||
Comment=Instant audio feedback when typing. For Linux. | ||
EOF | ||
cp Tickeys.desktop /usr/share/applications/Tickeys.desktop | ||
echo Install tickeys success, use command tickeys to start it |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
安装:sudo sh install.sh | ||
卸载:sudo sh uninstall.sh | ||
运行:sudo tickeys |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
#!/bin/bash | ||
rm /usr/bin/tickeys | ||
rm /usr/share/icons/Tickeys/tickeys.png | ||
rm /usr/share/applications/Tickeys.desktop | ||
rm /etc/xdg/autostart/Tickeys.desktop | ||
rm ~/.config/autostart/Tickeys.desktop | ||
rm ~/.config/openbox/autostart/Tickeys.desktop | ||
echo Uninstall tickeys success |
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
__author__ = 'Huang Xiongbiao' | ||
__email__ = '[email protected]' | ||
__version__ = '0.1.9' | ||
__version__ = '0.2.0' | ||
|
||
from run import main | ||
|
||
|