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
--- compton.c 2012-04-23 20:49:21.000000000 +0300 | |
+++ compnew.c 2012-04-23 20:49:09.000000000 +0300 | |
@@ -1005,6 +1005,11 @@ | |
continue; | |
} | |
+ /* patch for error 9 caused by java AWT tray icons */ | |
+ if (w->a.width < 2 && w->a.height < 2) { | |
+ continue; |
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/sed -f | |
# conv.sed - converts Shimeji EE configuration files to the standard Japanese format | |
# | |
# Usage : Execute in the directory containing the script and all 4 configuration files : | |
# conv.sed actions.xml > Actions.xml | |
# conv.sed behaviors.xml > Behavior.xml | |
# | |
# ------------------ | |
# IMPORTANT : Make sure you use a Japanese 'Mascot.xsd' schema file with your converted |
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
; Simple GIMP script for batch filter operations. Will retain transparency. Intended input image format is PNG. | |
; Made this for the purpose of adding drop shadows and other filters to Shimeji imagesets. Save this file | |
; to ~/.gimp scripts/ . Execute in the directory containing the images you wish to modify : | |
; gimp-console -b '(batch-drop-shadow "*.png" 0 0 4)' -b '(gimp-quit 0)' | |
; Where 0 0 4 is the x offset, y offset and the radius for the drop shadow. | |
; For more information on how to apply other filters, check out Filters -> Script-Fu -> Console -> Browse in GIMP | |
(define (batch-drop-shadow pattern | |
offsetx |