This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
From ce8506d5fb32fc2ecd0edfb9b29057edb1cba367 Mon Sep 17 00:00:00 2001 | |
From: Jari Vetoniemi <mailroxas@gmail.com> | |
Date: Fri, 27 Jul 2012 23:57:38 +0300 | |
Subject: [PATCH] Fake display interface. | |
Sends fake resolution information to applications and, | |
fakes succesful display resolution changes to applications. | |
Useful if one does not want resolution switches and applications | |
don't work if they don't get any resolution information. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
changeset: 1590:260e6f30aa70 | |
tag: tip | |
user: cloudef | |
date: Sat Dec 17 22:34:07 2011 +0200 | |
summary: dwm-menu-patch | |
diff -r 40bff70c312f -r 260e6f30aa70 config.def.h | |
--- a/config.def.h Tue Nov 15 20:16:58 2011 +0100 | |
+++ b/config.def.h Sat Dec 17 22:34:07 2011 +0200 | |
@@ -36,6 +36,7 @@ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff -rupN src-old/command_download.cc src/command_download.cc | |
--- src-old/command_download.cc 2011-06-04 07:01:19.000000000 +0300 | |
+++ src/command_download.cc 2011-10-29 11:10:41.258332501 +0300 | |
@@ -5,12 +5,12 @@ | |
// 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, |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
From c877ba08ee19b8b5f38ea4f37ce345208d158eba Mon Sep 17 00:00:00 2001 | |
From: Cloudef <mailRoxas@gmail.com> | |
Date: Sun, 6 Nov 2011 18:57:57 +0200 | |
Subject: winmm/mmio: Add extra handling for unbuffered MMIO handles | |
On non buffered mmioSeek, set the lBufOffset accordingly. | |
On non buffered mmioRead, seek to beginning of the file and return 0 meaning that the file ended. | |
I don't know if this just reveals bad programming in application, | |
or that native winmm likes to try handle code when it's wrongly used.. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
# Install && Update everything from repo | |
# Virtual SD (Download directory) | |
# Creates pandora layout there and stores libmilky database | |
VD="/absolute/path/to/download/dir" | |
mkdir -p "$VD" | |
# Sync database with repo | |
milky -r "$VD" -Sy |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
AJAX_TIMEOUT 5 | |
in session.h |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
# Katawa Shoujo | |
# Default setting is fullscreen for 1440x900 with black borders at side. | |
# | |
# Depends: x11vnc, Xvfb | |
# vncviewer comes from tightvnc, but you can alternatively use any viewer you want. | |
# | |
# To calculate the target resolution and scaler | |
# that matches your whole screen while maintaining aspect ratio, here's some math: | |
# |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
# Workaround bug where nvidia-settings --load-config-only | |
# does not actually load any attributes. | |
# | |
# It might be related to values that have decimals such as | |
# RedBrightness=1.000000 | |
# nvidia-settings will complain about (Trailing garbage), unless ran as root.. | |
# | |
# However, running as root isn't really a nice thing, so this script just assign everything | |
# It will still give you complaints about (Trailing garbage), but at least other settings get applied. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# ALSA | |
# /etc/asound.conf | |
# ipc_key must - be unique, it has no other meaning. | |
# ipc_key_add_uid - allows multi user audio when false. | |
# ipc_perm - sets permissions, may fix issues on multi user or tty playback. | |
# smaller buffer/period sizes can generally reduce latency and hence give better performance, | |
# but going too small can cause crackling or other sound issues. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* see LICENSE for copyright and license */ | |
#ifndef CONFIG_H | |
#define CONFIG_H | |
#include <X11/XF86keysym.h> | |
/* handheld mode? | |
* Optimizes interface to small screens */ | |
#define HANDHELD 1 |
OlderNewer