[Boards: 3 / a / aco / adv / an / asp / b / bant / biz / c / can / cgl / ck / cm / co / cock / d / diy / e / fa / fap / fit / fitlit / g / gd / gif / h / hc / his / hm / hr / i / ic / int / jp / k / lgbt / lit / m / mlp / mlpol / mo / mtv / mu / n / news / o / out / outsoc / p / po / pol / qa / qst / r / r9k / s / s4s / sci / soc / sp / spa / t / tg / toy / trash / trv / tv / u / v / vg / vint / vip / vp / vr / w / wg / wsg / wsr / x / y ] [Search | Free Show | Home]

believe it or not george isnt afloat please leave a message at

This is a blue board which means that it's for everybody (Safe For Work content only). If you see any adult content, please report it.

Thread replies: 14
Thread images: 3

File: accurate fluid sim.gif (2MB, 500x500px) Image search: [Google]
accurate fluid sim.gif
2MB, 500x500px
believe it or not
george isnt afloat
please leave a message
at the blub
i must be below
or id pick up the phone
where could i be
believe it im not afloat
>>
I plan to write a window manager for the X Window System that will run on Linux and other Unixlike operating systems. As a user, I have noticed that no window manager matches my exact needs. Nearly all features I would like in a window
manager exist in some form or another in some window manager somewhere. A common feature of new window managers is the ability to be extended and modified to fit the user's needs. I would like to write a window manager that incorporates all my favorite features I've found in various window managers.
Some of these features include seamless switching between tiling and floating management models, customizable tiling patterns, and titlebars for each window that are customisable per application. Some useful information that could be put into the titlebar of an application could be things like a button to close the window, how much memory the process for the window is using, or even something such as the pid of the process. Specific window managers I am going to take ideas from are Awesome WM, openbox's root menu system, and the Windows 7
window manager (dwm) and its ability to make a window snap to a grid when you drag it to a corner.
>>
>>56019969
#include <X11/Xlib.h>
#include <X11/keysym.h>
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>

Display *dpy;
Window rw;

typedef struct {
unsigned int mod;
unsigned int keysym;
char *msg;
} Key;

static Key keys[] = {
{ Mod1Mask, XK_space, "xclock" },
{ Mod1Mask | ShiftMask, XK_Return, "xterm" }};

typedef struct {
Window win;
struct Win *next;
} Win;

typedef struct {
Win *list;
Win *focus;
} WinList;

void launch(char *cmd) {
if (fork() == 0) {
execlp("/bin/sh", "sh", "-c", cmd, NULL);
exit(1);
}
}

int main()
{
dpy = XOpenDisplay(0);
rw = RootWindow(dpy, DefaultScreen(dpy));

XSelectInput(dpy, rw, KeyPressMask | ButtonPressMask | SubstructureNotifyMask);
int done = 0;

while(!done)
{
XEvent ev;
XNextEvent(dpy, &ev);
KeySym keysym;
int i;

switch (ev.type)
{
case KeyPress:
keysym = XKeycodeToKeysym(dpy, ev.xkey.keycode, 0);
for (i = 0; i < 2; i++)
if (keysym == keys[i].keysym && keys[i].mod == ev.xkey.state)
launch(keys[i].msg);
break;

case MapNotify:
printf("Map notify!\n");
break;

case ButtonPress:
done = 1;
break;
}
}
}


What I got so far, let's make this a /g/ project
>>
>>56019796
bump for poem
>>
hi jordan!
>>
>>56019796
filtered
>>
File: 1469843371116.png (362KB, 327x452px) Image search: [Google]
1469843371116.png
362KB, 327x452px
>>56019969

Good idea. I won't get my hopes up.

>>56019977

I wrote a bit of X11 code once.

enjoy hating yourself and watching you dreams become shattered as you realise just how horrible all x11 is.
>>
Im sorry but your sim isnt very accurate. The motion on the water implies struggle on Georges part and we are all well aware anyone in his situation would welcome death.
>>
Guys, I was gonna start season !! of K-On! and now they are suddenly speaking in English what the fuck, how do I get their Japanese voices like in the first season?
>>
File: 1470384455968.jpg (53KB, 426x426px) Image search: [Google]
1470384455968.jpg
53KB, 426x426px
>>56019796
lol u ok duuude
>>
>>56020845
This is truly awful, I can't watch it like this. You can smell the woman neckbears through their voices. Do people actually watch the English versions of anime?
>>
>>56020887
real anime fans don't
you probably got a dual audio version, I'm sure vlc has a way to switch tracks
if not you deffo need to download a different copy
>>
>>56020982
Thanks, there was in fact an option and the original audio + a subtitle track is also available.

Thanks, weeb guy.

btw I'm not an anime fan and even I could not stomach that voicing.
>>
>>56021012
yeah dubs are usually atrocious
you think that's bad try watching lucky star dubbed (you should watch lucky star btw)
https://www.youtube.com/watch?v=2oTAHuZHzKU
Thread posts: 14
Thread images: 3


[Boards: 3 / a / aco / adv / an / asp / b / bant / biz / c / can / cgl / ck / cm / co / cock / d / diy / e / fa / fap / fit / fitlit / g / gd / gif / h / hc / his / hm / hr / i / ic / int / jp / k / lgbt / lit / m / mlp / mlpol / mo / mtv / mu / n / news / o / out / outsoc / p / po / pol / qa / qst / r / r9k / s / s4s / sci / soc / sp / spa / t / tg / toy / trash / trv / tv / u / v / vg / vint / vip / vp / vr / w / wg / wsg / wsr / x / y] [Search | Top | Home]

I'm aware that Imgur.com will stop allowing adult images since 15th of May. I'm taking actions to backup as much data as possible.
Read more on this topic here - https://archived.moe/talk/thread/1694/


If you need a post removed click on it's [Report] button and follow the instruction.
DMCA Content Takedown via dmca.com
All images are hosted on imgur.com.
If you like this website please support us by donating with Bitcoins at 16mKtbZiwW52BLkibtCr8jUg2KVUMTxVQ5
All trademarks and copyrights on this page are owned by their respective parties.
Images uploaded are the responsibility of the Poster. Comments are owned by the Poster.
This is a 4chan archive - all of the content originated from that site.
This means that RandomArchive shows their content, archived.
If you need information for a Poster - contact them.