You are not logged in.

#126 2013-02-18 17:36:43

Rokixz
Member
From: Šiauliai, Lithuania
Registered: 2007-04-21
Posts: 251
Website

Re: February 2013 Screenshots

thumb_deskt.png

The one I use in workplace.

Last edited by Rokixz (2013-02-18 17:37:16)


http://ispconfig.lt - ISPConfig 3 based hosting. Coming Soon!

Offline

#127 2013-02-18 18:12:07

6feet5
Member
From: Gnesta, Sweden
Registered: 2012-11-11
Posts: 157

Re: February 2013 Screenshots

fsckd wrote:
litemotiv wrote:
fsckd wrote:

That is a nice wallpaper. Mind sharing a link? Thanks. smile

Search-fu:

http://ns223506.ovh.net/rozne/85b9afabc … 097885.jpg

Alas, 400 Bad Request. My attempts at searching fail. sad

Found mine here: http://wallbase.cc/wallpaper/1097885

Offline

#128 2013-02-18 18:13:45

Acidpunk
Member
From: London
Registered: 2013-02-18
Posts: 1

Re: February 2013 Screenshots

Nothing too special, only installed Arch again recently here's my current set up



Won't lie borrowed someone elses conky script as a base then edited accordingly.

Still early days though tongue



-- mod edit: read the rules and only post thumbnails https://bbs.archlinux.org/viewtopic.php?id=61754  [jwr] --

Offline

#129 2013-02-18 18:18:04

Ypnose
Member
From: Jailed in the shell
Registered: 2011-04-21
Posts: 353
Website

Re: February 2013 Screenshots

You should resize your images before a moderator warns you.


Github -- My terminal font Envypn

Offline

#130 2013-02-18 19:52:23

Avatar-J
Member
Registered: 2012-06-18
Posts: 29

Re: February 2013 Screenshots

Netbook dual screening to get work done:

taGlkOA

Offline

#131 2013-02-18 20:36:39

elkoraco
Member
Registered: 2013-02-18
Posts: 140

Re: February 2013 Screenshots

So is this where you guys do group bullying on ninjaaron? Anyway, I'm a Debian user looking for another distro to use. I used to run on dwm for a long while, but I've switched to Gnome recently, and Gnome sucks pretty much anywhere except in distros that don't patch upstream code too much, so it was Fedora or Arch. Since Anaconda wouldn't stop crashing, here I am. Arch is much better than I remember it, I used to hate the BSD init system and AIF, but the new install scripts plus systemd make a great combo. I'm fairly proficient in making my way around Linux, so I'll be looking to help people out in the forum unless something blows up on me. For now, all you get is a boring scrot:

taGlpNA

Last edited by elkoraco (2013-02-18 20:39:03)

Offline

#132 2013-02-18 20:47:03

ninjaaron
Member
Registered: 2010-12-10
Posts: 296

Re: February 2013 Screenshots

I think I'm bullied more on #! and /r/unixporn (but that's reddit, so it's awesome like that). bitocra is semi-popular with the alpha-geek types here. http://fumaga.com/i/this-cool-guy-uses- … -that.jpeg

brownie-thumb.png

Offline

#133 2013-02-18 21:35:10

litemotiv
Forum Fellow
Registered: 2008-08-01
Posts: 5,026

Re: February 2013 Screenshots

6feet5 wrote:
fsckd wrote:

Alas, 400 Bad Request. My attempts at searching fail. sad

Found mine here: http://wallbase.cc/wallpaper/1097885

That's where i got the url from too, apparently they change it regularly to avoid hotlinking. smile


ᶘ ᵒᴥᵒᶅ

Offline

#134 2013-02-19 00:39:23

earsplit
Member
Registered: 2012-03-31
Posts: 187
Website

Re: February 2013 Screenshots

Animated gif time! I got some dzen status bar applets working. Very useful and cleans up my statusbar.  Check the dotfiles for the configs

bZegioRs.gif

Oh, and could someone tell me what that log error means? In the frame with the logs. Thanks =]

Last edited by earsplit (2013-02-19 00:40:23)


((( configs :: website )))

Offline

#135 2013-02-19 03:55:02

milo64
Banned
From: Chiang Mai, Thailand
Registered: 2013-01-18
Posts: 86
Website

Re: February 2013 Screenshots

Empty:
oIFNRt8.jpg
Full:
LjZcjqx.jpg

I wonder why you all have fancy DE / WM with anime on the desktop, weird.
WM/DE: Xfce4.
Terminal: Terminator.

Source code for the color bars:

/* Color bars ncurses demo
 * Created by: Suttiwit Sukpinit. */
#include <ncurses.h>
#include <stdlib.h>
#include <time.h>

size_t strlen(const char *str);

int main(void)
{
	time_t ts = time(NULL);
	srand(ts);
	
	int x,y;
	unsigned int pairn;
	unsigned int ccount[8];
	int ch;
	
	char ccdsp[100];
	char tsdsp[999];
	sprintf(tsdsp, "TS: %s", ctime(&ts));

	/* This saves me minutes of coding... */
	for (pairn = 0; pairn < 8; pairn++)
		ccount[pairn] = 0;

	initscr();
	curs_set(0);

	if (has_colors() == 0) /* Does the terminal supports colors? */
	{
		endwin();
		printf("Your terminal does not support colors. Consider an upgrade! ;)\n");
		return 1;
	}
	
	start_color();

	/* This also saves me minutes of coding... */
	for (pairn = 1; pairn <= 8; pairn++)
		init_pair(pairn, 0, pairn - 1);

	Draw:
	for (x = 0; x < COLS; x++)
	{
		pairn = rand() % 8 + 1;
		ccount[pairn - 1]++;
		for (y = 0; y < LINES - 2; y++)
		{
			move(y, x);

			attron(COLOR_PAIR(pairn));
			addch(' ');
			attroff(COLOR_PAIR(pairn));
		}
	}
	sprintf(ccdsp, "CC: {%u,%u,%u,%u,%u,%u,%u,%u} ", ccount[0], ccount[1], ccount[2], ccount[3], ccount[4], ccount[5], ccount[6], ccount[7]);

	attron(A_BOLD);	
	/* Bottom-left */
	mvprintw(LINES - 2, 0, "Press SPACE to re-draw.");
	mvprintw(LINES - 1, 0, "Press q to quit.");

	/* Bottom-middle */
	move(LINES - 1, (COLS / 2) - 20);
	for (pairn = 1; pairn <= 8; pairn++)
	{
		attron(COLOR_PAIR(pairn));
		printw(" %d ", pairn);
		attroff(COLOR_PAIR(pairn));
	}

	/* Bottom-right */
	mvprintw(LINES - 2, COLS - strlen(ccdsp), "%s", ccdsp);
	mvprintw(LINES - 1, COLS - strlen(tsdsp), "%s", tsdsp);

	attroff(A_BOLD);

	refresh(); /* Flush */
	Return_Fail:
	ch = getch();
	
	if (ch == 113)
	{
		endwin();
		return 0;
	}
	else if (ch == 32)
	{
		for (pairn = 0; pairn < 8; pairn++)
			ccount[pairn] = 0;
		
		clear();
		goto Draw;
	}
	else
	{
		beep();
		goto Return_Fail;
	}
}

size_t strlen(const char *str)
{
	int i;
	for (i = 0; str[i] != '\0'; i++) ;
	
	return i;
}

Code by me.
Compiled with:

gcc color-bars.c -lncurses

Last edited by milo64 (2013-02-19 03:59:30)


milo64.
Registered Linux User: #555436
My Blog @ http://milo64.blogspot.com/

Offline

#136 2013-02-19 04:04:32

milo64
Banned
From: Chiang Mai, Thailand
Registered: 2013-01-18
Posts: 86
Website

Re: February 2013 Screenshots

earsplit wrote:

Animated gif time! I got some dzen status bar applets working. Very useful and cleans up my statusbar.  Check the dotfiles for the configs

http://i.imgur.com/bZegioRs.gif

Oh, and could someone tell me what that log error means? In the frame with the logs. Thanks =]

1. What DE/WM are you using?
2. How do you record your desktop to .gif?


milo64.
Registered Linux User: #555436
My Blog @ http://milo64.blogspot.com/

Offline

#137 2013-02-19 10:07:23

eightbitraptor
Member
From: Cheadle Hulme, UK
Registered: 2012-05-23
Posts: 8
Website

Re: February 2013 Screenshots

Nice! Can you tell me what XFCE/Gtk/XFWM themes you are using please

also what font is that?

thanks

Also, here's mine smile

https://www.dropbox.com/s/l05ipu99bousv … 2%3A03.png

Xfce - my laptop screen is on the left, my main monitor is on the right. I'm using tmux with tmux-powerline and vim.

Last edited by eightbitraptor (2013-02-19 13:10:29)

Offline

#138 2013-02-19 14:00:15

fsckd
Forum Fellow
Registered: 2009-06-15
Posts: 4,173

Re: February 2013 Screenshots

litemotiv wrote:
6feet5 wrote:
fsckd wrote:

Alas, 400 Bad Request. My attempts at searching fail. sad

Found mine here: http://wallbase.cc/wallpaper/1097885

That's where i got the url from too, apparently they change it regularly to avoid hotlinking. smile

Thanks a lot you two. smile


aur S & M :: forum rules :: Community Ethos
Resources for Women, POC, LGBT*, and allies

Offline

#139 2013-02-19 17:05:49

TeoBigusDickus
Member
From: /Greece/Kastoria
Registered: 2010-05-29
Posts: 141

Re: February 2013 Screenshots

elkoraco wrote:

So is this where you guys do group bullying on ninjaaron? Anyway, I'm a Debian user looking for another distro to use. I used to run on dwm for a long while, but I've switched to Gnome recently, and Gnome sucks pretty much anywhere except in distros that don't patch upstream code too much, so it was Fedora or Arch. Since Anaconda wouldn't stop crashing, here I am. Arch is much better than I remember it, I used to hate the BSD init system and AIF, but the new install scripts plus systemd make a great combo. I'm fairly proficient in making my way around Linux, so I'll be looking to help people out in the forum unless something blows up on me. For now, all you get is a boring scrot:

http://ompldr.org/taGlpNA

Ha!!! Welcome mate!

How do you know when someone uses Arch?
They'll tell you...


Please make Autocad Civil 3d and Archicad work on Linux! Please make Autocad Civil 3d and Archicad work on Linux! Please make Autocad Civil 3d and Archicad work on Linux! Please make Autocad Civil 3d and Archicad work on Linux! Please make Autocad Civil 3d and Archicad work on Linux! Please make Autocad Civil 3d and Archicad work on Linux! Please make Autocad Civil 3d and Archicad work on Linux!

Offline

#140 2013-02-19 18:45:18

TeoBigusDickus
Member
From: /Greece/Kastoria
Registered: 2010-05-29
Posts: 141

Re: February 2013 Screenshots

Have some screenshots as well...
http://imgur.com/a/3Gurl


Please make Autocad Civil 3d and Archicad work on Linux! Please make Autocad Civil 3d and Archicad work on Linux! Please make Autocad Civil 3d and Archicad work on Linux! Please make Autocad Civil 3d and Archicad work on Linux! Please make Autocad Civil 3d and Archicad work on Linux! Please make Autocad Civil 3d and Archicad work on Linux! Please make Autocad Civil 3d and Archicad work on Linux!

Offline

#141 2013-02-20 00:42:20

earsplit
Member
Registered: 2012-03-31
Posts: 187
Website

Re: February 2013 Screenshots

milo64 wrote:
earsplit wrote:

Animated gif time! I got some dzen status bar applets working. Very useful and cleans up my statusbar.  Check the dotfiles for the configs

http://i.imgur.com/bZegioRs.gif

Oh, and could someone tell me what that log error means? In the frame with the logs. Thanks =]

1. What DE/WM are you using?
2. How do you record your desktop to .gif?

1. Xmonad
2. https://aur.archlinux.org/packages/?O=0&K=byzanz


((( configs :: website )))

Offline

#142 2013-02-20 02:59:52

milo64
Banned
From: Chiang Mai, Thailand
Registered: 2013-01-18
Posts: 86
Website

Re: February 2013 Screenshots

earsplit wrote:
milo64 wrote:
earsplit wrote:

Animated gif time! I got some dzen status bar applets working. Very useful and cleans up my statusbar.  Check the dotfiles for the configs

http://i.imgur.com/bZegioRs.gif

Oh, and could someone tell me what that log error means? In the frame with the logs. Thanks =]

1. What DE/WM are you using?
2. How do you record your desktop to .gif?

1. Xmonad
2. https://aur.archlinux.org/packages/?O=0&K=byzanz

Ahh,, that's cool :>


milo64.
Registered Linux User: #555436
My Blog @ http://milo64.blogspot.com/

Offline

#143 2013-02-20 12:44:22

yoklar
Member
From: istanbul
Registered: 2012-12-27
Posts: 11

Re: February 2013 Screenshots

thumb-terminator.png


panta rei

Offline

#144 2013-02-20 14:17:29

yoklar
Member
From: istanbul
Registered: 2012-12-27
Posts: 11

Re: February 2013 Screenshots

TeoBigusDickus wrote:

Have some screenshots as well...
http://imgur.com/a/3Gurl

hi Teo
Could you please share the wallpaper on the link you posted?


panta rei

Offline

#145 2013-02-20 15:00:10

TeoBigusDickus
Member
From: /Greece/Kastoria
Registered: 2010-05-29
Posts: 141

Re: February 2013 Screenshots

It's Paul Klee; just google klee ancient sound.


Please make Autocad Civil 3d and Archicad work on Linux! Please make Autocad Civil 3d and Archicad work on Linux! Please make Autocad Civil 3d and Archicad work on Linux! Please make Autocad Civil 3d and Archicad work on Linux! Please make Autocad Civil 3d and Archicad work on Linux! Please make Autocad Civil 3d and Archicad work on Linux! Please make Autocad Civil 3d and Archicad work on Linux!

Offline

#146 2013-02-20 15:31:42

yoklar
Member
From: istanbul
Registered: 2012-12-27
Posts: 11

Re: February 2013 Screenshots

TeoBigusDickus wrote:

It's Paul Klee; just google klee ancient sound.

thank you much


panta rei

Offline

#147 2013-02-22 14:04:37

Squarius
Member
From: Germany
Registered: 2012-04-11
Posts: 7

Re: February 2013 Screenshots

I finally stop lurking here and post my  Desktop:

Clean:
taGp4Mw


Fake Busy:
taGp4NA

Offline

#148 2013-02-22 14:20:07

i_love_penguins
Member
From: Germany
Registered: 2010-03-30
Posts: 46
Website

Re: February 2013 Screenshots

Squarius wrote:

I finally stop lurking here and post my  Desktop:

Clean:
http://ompldr.org/taGp4Mw


Fake Busy:
http://ompldr.org/taGp4NA


Nice background - willing to share?
And which side panel are you using?

Offline

#149 2013-02-22 14:33:54

Isildur
Member
Registered: 2009-05-26
Posts: 96

Re: February 2013 Screenshots

Squarius wrote:

I finally stop lurking here and post my  Desktop:

Clean:
http://ompldr.org/taGp4Mw


Fake Busy:
http://ompldr.org/taGp4NA

Looks great, which themes are you using(Xfwm, Gtk)?

Offline

#150 2013-02-22 16:40:22

Multimoon
Member
From: /usr/share/zoneinfo/US/Eastern
Registered: 2012-09-30
Posts: 170

Re: February 2013 Screenshots

silentmike wrote:

http://i.imgur.com/FH8HQ43.png

Pantheon with "Orion" gtk theme. Elementary icons + window deco.
"Raavi" font, with "Consolas" for fixed width.
Wallpaper Gotas by kiko11 on DeviantArt
Term colours @ http://dotshare.it/dots/514/
.screenrc @ http://dotshare.it/dots/515/

How in the world did you manage to get that to compile? Ive tried Pantheon several times to no avail.


It always makes me laugh when people complain and rage over any distro's management ideal, when this is a linux community, and you could always make your own distro and experience the pains yourself.

Offline

Board footer

Powered by FluxBB