70
71
72
73
74
75
76
77
78
79
80
81
82
83
|
-------------------
If you've checked out the source code repository, or did download the
*.src.txz archive, then you can just run it right there:
./st2.py
To install it manually:
· Create a /usr/share/streamtuner2/
· Copy all *.py files there.
· Also copy the "gtk3.xml" file into /usr/share/streamtuner2/
· Copy the channels/ subdir into /usr/share/streamtuner2/channels/
· Install "bin" as /usr/bin/streamtuner2.
|
>
>
>
>
>
|
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
|
-------------------
If you've checked out the source code repository, or did download the
*.src.txz archive, then you can just run it right there:
./st2.py
The easy way:
· Run `sudo make install`
which installs into the default location (/usr/share/streamtuner2).
To install it manually:
· Create a /usr/share/streamtuner2/
· Copy all *.py files there.
· Also copy the "gtk3.xml" file into /usr/share/streamtuner2/
· Copy the channels/ subdir into /usr/share/streamtuner2/channels/
· Install "bin" as /usr/bin/streamtuner2.
|
95
96
97
98
99
100
101
102
103
104
105
106
107
108
|
If you want to edit a channel plugin, just have a look into the
channels/*.py files. It's often rather easy to adapt things.
Moreover you can also edit the user interface. You need glade
installed, and open the "gtk3.xml" file. There it's easy to
rename or rearrange things.
Sources
-------
You'll find the current source files under
http://fossil.include-once.org/streamtuner2/
|
>
>
>
>
|
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
|
If you want to edit a channel plugin, just have a look into the
channels/*.py files. It's often rather easy to adapt things.
Moreover you can also edit the user interface. You need glade
installed, and open the "gtk3.xml" file. There it's easy to
rename or rearrange things.
Note that newer releases expect a compressed version of that
ui description. Use `make glade` simply, or `make gtk3` to
update the compressed version from the plain gtk.xml afterwards.
Sources
-------
You'll find the current source files under
http://fossil.include-once.org/streamtuner2/
|