new file structure

This commit is contained in:
jeena 2013-03-28 19:01:21 +01:00
parent 03d91b3e73
commit 055ac3f1d6
6 changed files with 1872 additions and 1 deletions

13
Makefile Normal file
View file

@ -0,0 +1,13 @@
all:
echo "usage:\n sudo make install\n sudo make clean"
install:
cp -a facebook-browser /usr/bin/;
cp -a facebook-browser.xpm /usr/share/pixmaps/;
cp -a facebook-browser.desktop /usr/share/applications/;
clean:
rm /usr/bin/facebook-browser;
rm /usr/share/pixmaps/facebook-browser.xpm;
rm /usr/share/applications/facebook-browser.desktop;

15
README.md Normal file
View file

@ -0,0 +1,15 @@
# Facebook browser
This is just a little browser in Qt to run Facebook with its own cookiejar.
It is basically a stripped down version of https://code.google.com/p/devicenzo/
To install it download it and then run on Linux:
<code>sudo make install</code>
To uninstall:
<code>sudo make uninstall</code>
You need to have installed Qt and python.

View file

@ -1,5 +1,4 @@
#!/usr/bin/env python2 #!/usr/bin/env python2
"A web browser that will never exceed 128 lines of code. (not counting blanks)"
import sys, os, json, tempfile import sys, os, json, tempfile
from PyQt4 import QtGui, QtCore, QtWebKit, QtNetwork from PyQt4 import QtGui, QtCore, QtWebKit, QtNetwork

12
facebook-browser.desktop Normal file
View file

@ -0,0 +1,12 @@
[Desktop Entry]
Version=0.1.0
Comment=Custom Facebook browser.
Exec=/usr/bin/facebook-browser
GenericName=Facebook Browser
Icon=/usr/share/pixmaps/facebook-browser.xpm
Name=Facebook
NoDisplay=false
StartupNotify=true
Terminal=false
Type=Application
Categories=Network;Qt

1832
facebook-browser.xpm Normal file

File diff suppressed because it is too large Load diff

Binary file not shown.

Before

Width:  |  Height:  |  Size: 43 KiB