This file contains hidden or 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
| #!/usr/bin/fish | |
| function sync_xfce_wallpaper | |
| set SOURCE "monitorUMCSHARP" | |
| set TARGET "monitorHDMI-A-1" | |
| set CHANNEL "xfce4-desktop" | |
| set props "backdrop-cycle-enable" "backdrop-cycle-random-order" "backdrop-cycle-timer" "color-style" "image-style" "last-image" "rgba1" "rgba2" | |
| set types "bool" "bool" "int" "int" "int" "string" "rgba" "rgba" |
This file contains hidden or 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
| # | |
| # mpv configuration file | |
| # | |
| # Configuration files are read system-wide from /usr/local/etc/mpv.conf | |
| # and per-user from ~/.config/mpv/mpv.conf, where per-user settings override | |
| # system-wide settings, all of which are overridden by the command line. | |
| deband=no | |
| geometry=50%:50% | |
| alang=en |
This file contains hidden or 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
| #!/usr/bin/env python3 | |
| """ | |
| PyJoy2Key : translate joystick input to keyboard events. | |
| Author : Joseph Botosh <rumly111@gmail.com> | |
| License: GPL | |
| Requirements: pygame or pygame_sdl2; xlib, uinput | |
| Optimized for XBox360 controller, with roguelike games in mind. |
This file contains hidden or 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
| #!/usr/bin/python3 | |
| # Monitor transmission and enable sequential downloads | |
| # by manipulating file download priorities | |
| # | |
| # Author: Joseph Botosh <rumly111@gmail.com> | |
| # License: GPL | |
| from time import sleep | |
| from argparse import ArgumentParser |
This file contains hidden or 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
| apply plugin: 'com.android.application' | |
| android { | |
| compileSdkVersion 21 | |
| buildToolsVersion "21.1.2" | |
| defaultConfig { | |
| applicationId "com.your.application.id" | |
| minSdkVersion 15 | |
| targetSdkVersion 21 |