Have you all seen this theme from Die Hard 4 yet?
http://www.kde-look.org/content/show...?content=66714
http://www.kde-look.org/content/prev...l%27s+theme+(E
Have you all seen this theme from Die Hard 4 yet?
http://www.kde-look.org/content/show...?content=66714
http://www.kde-look.org/content/prev...l%27s+theme+(E
i don't get the point of this. is the OP wanting to do this to make it look like he actually knows anything beyond script kiddie level "hacks"? that actually makes you look more like a noob than someone with the default wallpaper/theme.
uh... get a dumb terminal and run copics....
For those that arrived late on the thread:
Script by Mathiasdm
Released under the Do-Whatever-The-Hell-You-Want-With-It license (i.e. Public Domain). ^^
Biggest script coming from this and it's own thread:
Fake "Hax0r / Hacker Activity" bash script
No known license statement.
It's fun and if people want to use it for a movie, then it's even useful.i don't get the point of this. is the OP wanting to do this to make it look like he actually knows anything beyond script kiddie level "hacks"? that actually makes you look more like a noob than someone with the default wallpaper/theme.
If people want to use it to look like noobs, then let them do it. Can't hurt. ^^
What's copics?uh... get a dumb terminal and run copics....
Last edited by HousieMousie2; December 13th, 2007 at 04:43 AM.
"There is a principle which is a bar against all information, which is proof against all arguments and which cannot fail to keep a man in everlasting ignorance - That principle is contempt prior to investigation."
Herbert Spencer
tundro is well worthy of a thanks.
Just use a dark Fluxbox (or Blackbox or Openbox) theme, and you'll look like a hacker. That's especially true if you don't set up your Fluxbox menu to be full of GUI configuration apps and instead do it all from the command line. Oh, and your command line should be black with white, grey, or green text, not white with black text (which just looks silly).
LinuxChix | Linux User #432169 | Ubuntu User #8495 | IRC: maco @ irc.linuxchix.org or irc.freenode.net
Well, if you absolutely must do it in C, below is an example:
Code:/* Copyright (C) 2008 Sam Peterson <peabodyenator@gmail.com> */ /** This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License as * published by the Free Software Foundation; either version 2 of the * License, or (at your option) any later version. * * This program is distributed in the hope that it will be useful, but * WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ #include <stdio.h> #include <stdlib.h> int main(int argc, char *argv[]) { FILE* output; if ((output = popen("festival --tts >/dev/null 2>&1", "w")) == NULL) { perror("Opening pipe failed"); return EXIT_FAILURE; } fprintf(output, "You are fail"); fflush(output); pclose(output); return 0; } /* end main */
Bookmarks