Python script para abrir tabs en Firefox

in python •  7 years ago 

Muy simple en realidad y casi no es Python por que estoy usando system calls() pero igual hace lo mismo, por cierto bastante rebuscado cambiar el navegador por defecto vía sistema.

como root o con sudo -> update-alternatives --config gnome-www-browser no realizo el cambio tampoco editar /etc/mailcap / mailcap.order. En fin por eso system call () en vez de import webbrowser en el script.

#!/usr/bin/python
#!python

import os
cmd1 = 'firefox http://blog.linuxpro.com.ve/ &'
cmd11 = 'sleep 6'
cmd2 = 'firefox --new-tab https://dolartoday.com/ &'
cmd4 = 'firefox --new-tab https://translate.google.com/ &'
cmd6 = 'firefox --new-tab http://www.twitter.com/ &'
cmd7 = 'firefox --new-tab https://bitcoinwisdom.com/ &'
cmd8 = 'firefox --new-tab http://www.facebook.com/ &'
cmd9 = 'firefox --new-tab http://www.deviantart.com/ &'

os.system(cmd1)
os.system(cmd11)
os.system(cmd2)
os.system(cmd4)
os.system(cmd6)
os.system(cmd7)
os.system(cmd8)
os.system(cmd9)

Guarda el archivo con el nombre WORK.py. Luego para hacer las cosas mas rápidas editamos en archivo .bashrc en el home del user. Agregamos:

alias go='python /home/yeah/Desktop/WORK.py'

Guardamos los cambios. Refrescamos -> $bash y ejecutamos go en la terminal debería abrir Firefox y todas las pestañas que hemos indicado en el script. Espero les sirva.

Authors get paid when people like you upvote their post.
If you enjoyed what you read here, create your account today and start earning FREE STEEM!