Showing posts with label i3. Show all posts
Showing posts with label i3. Show all posts

12/15/2011 Installing i3 under Debian Gnu/Linux


I3 has been a good option for me,during the last  3 or 4 months ago i've been testing all capacibilities,it was created because wmii didn't provide some features (see the man page or /usr/share/man/man1/i3.1.gz and uncompress), it targeted for advanced users and developers,the documentation is great and it has 2 options for install under debian. The 1 is with apt or aptitude or wathever package manager that you use,and the other is compile,in this blogpost i'm going to use aptitude for install it,this is the easy way :
aptitude update && aptitude install i3
 and i  forget the last this install is under wheezy i really don't know if stable  has it.If you dont install  a session manager you can try with gdm or another,but the better option and useful  is gdm no much dependeces and other bunch stuff's.so on  all work is done,but not  over yet remember check :
  1. i3status
  2. i3clock    
  3. dzen2 
when you finish the firts time that you init you xsession you'll configure your mod key in my case is alt,before after these i3 automatically create ~/.i3 too you can try to  optimize the i3 bar with this command :

exec i3status  |  dzen2  -bg black -fn "-misc-fixed-medium-r-normal--13-120-75-75-C-70-iso10646-1"
and add a wallpaper using feh :-D
feh --bg-scale  /home/user/yourwallpaper.png 

more info:
http://i3wm.org/downloads
http://i3wm.org/docs

I3 under Openbsd 
Digg it StumbleUpon del.icio.us

5/03/2011 i3 en Openbsd

Durante esta semana un compañero de estudio me a pedido que organize su sistema,diciendo que simplemente era para hacer una instalacion de Openbsd y Organizar los servicios comunes para desarrollar web(Servidor Apache+Mysql..)yo creyendo en pablo decidio hoy martes ir a su casa a revisar y hacerle el favor de una vez.Cuando el me dijo realmente parecia sencillo y era realizar configuraciones de rutina:

  • Configuracion de Usuarios

  • Configuracion Packet Filter

  • Configuracion de Apps

  • Configuracion Grsecurity (Aunque ya no tan necesario)

  • Configuracion de X11

  • SSH

  • Pkg


entre otras tareitas que quizas cualquiera con capacidad lectora pudiece ;-D hacerlo Llegando a su casa me encuentro con esta sorpresa :


Dentro de mi (Realmente este man tiene excelentes maquinas :-( ),en fin comence y me di a la tarea de configurar y organizar toda el particionado de los 8 Tb que me habia  dejando para la tarea, un disco de un 1 Tb por aparte para la instalacion de dos linux,quedando asi lo que organize :

  • Power Edge :OpenBsd 4.9
    Torre Tower Multiple : particion /var/log
    Y dos Desktops normales :Otros linux
    Y algunos otros discos sin particionar


La cuestion es que todo tenia que verse en dos monitores lo cual no sabia hacer asi que encontre este articulo
http://www.ibm.com/developerworks/library/os-mltihed/ muy interesante por cierto.

Realizando todo con normalidad me tope con un problema con el pkg y era que no salia internet ....habiendo olvidado reiniciar decidi hacerlo por que parecia un error en  un archivo en perl

/usr/libdata/perl5/site_perl/i386-openbsd/rpc/types.ph


quedandome con la duda ?.ahora si simplemente haciendo :
#echo 'export PKG_PAHT=ftp://ftp.openbsd.org/pub/OpenBSD/4.9/packages/xx/'>> ~.profile
me quite el problema de estar exportando la ruta de los paquetes asi cada vez que reinicie no voy a tener 
ese problema
instalando I3
Para los que no sepais que es I3 dejo su definicion :

i3 is a tiling window manager, completely written from scratch.

i3 was created because wmii, our favorite window manager at the time, didn’t provide some features we wanted (multi-monitor done right, for example), had some bugs, didn’t progress since quite some time and wasn’t easy to hack at all (source code comments/documentation completely lacking). Still, we think the wmii developers and contributors did a great job. Thank you for inspiring us to create i3.

Please be aware that i3 is primarily targeted at advanced users and developers.

Lo primero que se hace es descargar el packete ya sea desde los ports o paquetes en este caso :

#pkg_check

#pkg_add i3
# pkg_info i3
Information for inst:i3-3.5.1p2

Comment:
improved dynamic tiling window manager

Description:
i3 is an improved dynamic, tiling window manager originally inspired
by wmii.

Maintainer: David Coppa <dcoppa@openbsd.org>

WWW: http://i3.zekjur.net/

una vez tenemos i3 instalado podemos ver que en nuestro usuario sin permiso no puede iniciar las x de i3 si
no las de Fvwn.para ello solo hacemos en nuestro archivo .xinitrc la llamada a i3
$mkdir ~/.i3
$cp /etc/i3/config ~/.i3/config
$ vi ~/.xinitrc

añadimos las siguientes lineas
#!/bin/sh
xsetroot -solid black
exec /usr/local/bin/i3
$ln -s ~/.xinitrc ~/.Xsession
Y eso fue todo por hoy :-d
Digg it StumbleUpon del.icio.us