start new:
tmux
start new with session name:
tmux new -s myname
{"[email protected]":{},"[email protected]":{"/org/gnome/shell/extensions/unite/":"[/]\nautofocus-windows=false\ndesktop-name-text=\"Muslim's Desktop\"\ngreyscale-tray-icons=true\nhide-activities-button='always'\nhide-dropdown-arrows=true\nhide-window-titlebars='maximized'\nrestrict-to-primary-screen=true\nwindow-buttons-placement='left'"},"[email protected]":{},"[email protected]":{"/org/gnome/shell/extensions/trayIconsReloaded/":""},"[email protected]":{},"[email protected]":{"/org/gnome/shell/extensions/hidetopbar/":""}} |
; Levy Moreira - 12/04/2012 | |
#define MyAppName "Program" | |
#define MyAppVersion "1.0" | |
#define MyAppPublisher "NextTi" | |
#define MyAppURL "http://www.nextti.com/" | |
#define MyAppExeName "Program.jar" | |
[Setup] | |
; NOTE: The value of AppId uniquely identifies this application. |
class QCheckableHeaderView(QtGui.QHeaderView): | |
''' | |
Checkable QHeaderView. Column 0 contains a checkbox that emits | |
a signal when it's check state is updated. | |
''' | |
is_on = True | |
signal_checked = QtCore.pyqtSignal(bool) | |
def __init__(self, *args, **kwargs): | |
super(QCheckableHeaderView, self).__init__(*args, **kwargs) |