new file structure
This commit is contained in:
parent
03d91b3e73
commit
055ac3f1d6
6 changed files with 1872 additions and 1 deletions
13
Makefile
Normal file
13
Makefile
Normal 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
15
README.md
Normal 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.
|
|
@ -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
12
facebook-browser.desktop
Normal 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
1832
facebook-browser.xpm
Normal file
File diff suppressed because it is too large
Load diff
BIN
facebook.png
BIN
facebook.png
Binary file not shown.
Before Width: | Height: | Size: 43 KiB |
Loading…
Add table
Add a link
Reference in a new issue