You are not logged in.
http://ispconfig.lt - ISPConfig 3 based hosting. Coming Soon!
Offline
litemotiv wrote:fsckd wrote:That is a nice wallpaper. Mind sharing a link? Thanks.
Search-fu:
Alas, 400 Bad Request. My attempts at searching fail.
Found mine here: http://wallbase.cc/wallpaper/1097885
Offline
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
-- mod edit: read the rules and only post thumbnails https://bbs.archlinux.org/viewtopic.php?id=61754 [jwr] --
Offline
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:
Last edited by elkoraco (2013-02-18 20:39:03)
Offline
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
Offline
fsckd wrote:litemotiv wrote:Alas, 400 Bad Request. My attempts at searching fail.
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.
ᶘ ᵒᴥᵒᶅ
Offline
Animated gif time! I got some dzen status bar applets working. Very useful and cleans up my statusbar. Check the dotfiles for the configs
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)
Offline
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
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
Hi ! A little bit of XFCE :
Nice! Can you tell me what XFCE/Gtk/XFWM themes you are using please
also what font is that?
thanks
Also, here's mine
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
6feet5 wrote:fsckd wrote:Alas, 400 Bad Request. My attempts at searching fail.
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.
Thanks a lot you two.
aur S & M :: forum rules :: Community Ethos
Resources for Women, POC, LGBT*, and allies
Offline
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:
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
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
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
Offline
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
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
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
It's Paul Klee; just google klee ancient sound.
thank you much
panta rei
Offline
I finally stop lurking here and post my Desktop:
Clean:
http://ompldr.org/taGp4MwFake Busy:
http://ompldr.org/taGp4NA
Nice background - willing to share?
And which side panel are you using?
Offline
I finally stop lurking here and post my Desktop:
Clean:
http://ompldr.org/taGp4MwFake Busy:
http://ompldr.org/taGp4NA
Looks great, which themes are you using(Xfwm, Gtk)?
Offline
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