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
| function q_customize_register( $wp_customize ){ | |
| $wp_customize->add_section('themename_color_scheme', array( | |
| 'title' => __('q Shortcodes', 'themename'), | |
| 'description' => '', | |
| 'priority' => 100, | |
| )); | |
| $wp_customize->add_setting('themename_theme_options[link_color]', array( |
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
| // Theme constants paths | |
| define( 'TD', get_template_directory() ); | |
| define( 'INC', TD . '/inc' ); | |
| define( 'LANGS', TD . '/languages' ); | |
| define( 'TD_URI', get_template_directory_uri() ); | |
| define( 'JS', TD_URI . '/js' ); | |
| define( 'CSS', TD_URI . '/css' ); | |
| define( 'WIDGETS', INC . '/widgets' ); | |
| // Theme scripts |
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
| // session value | |
| function keksus_ae_session(){ | |
| global $option_name,$options; | |
| if( $options['captcha_on'] == '1' ){ | |
| session_start(); | |
| if(headers_sent()){ | |
| $digits = $options['captcha_digits']; | |
| $_SESSION['captcha'] = rand(pow(10, $digits-1), pow(10, $digits)-1); | |
| $captcha = $_SESSION['captcha']; | |
| return $captcha; |
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
| # Tint2 config file | |
| # Generated by tintwizard (http://code.google.com/p/tintwizard/) | |
| # For information on manually configuring tint2 see http://code.google.com/p/tint2/wiki/Configure | |
| # Background definitions | |
| # ID 1 | |
| rounded = 7 | |
| border_width = 2 | |
| background_color = #000000 60 | |
| border_color = #FFFFFF 16 |
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
| #--------------------------------------------- | |
| # TINT2CONF CONFIG FILE | |
| default_theme = /root/.config/tint2/default.tint2rc | |
| cmd_property = /usr/bin/env python /usr/bin/tintwizard.py | |
| width = 500 | |
| height = 350 |
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
| # Tint2 config file | |
| # Generated by tintwizard (http://code.google.com/p/tintwizard/) | |
| # For information on manually configuring tint2 see http://code.google.com/p/tint2/wiki/Configure | |
| # Background definitions | |
| # ID 1 | |
| rounded = 7 | |
| border_width = 2 | |
| background_color = #000000 60 | |
| border_color = #FFFFFF 16 |
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
| # | |
| # When rebooting, restore the image to the desktop background | |
| eval `cat $HOME/.fehbg` & | |
| tint2 & |
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
| <?xml version="1.0" encoding="UTF-8"?> | |
| <!-- Do not edit this file, it will be overwritten on install. | |
| Copy the file to $HOME/.config/openbox/ instead. --> | |
| <openbox_config xmlns="http://openbox.org/3.4/rc" xmlns:xi="http://www.w3.org/2001/XInclude"> | |
| <resistance> | |
| <strength>10</strength> | |
| <screen_edge_strength>20</screen_edge_strength> | |
| </resistance> | |
| <focus> | |
| <focusNew>yes</focusNew> |
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
| <?php | |
| /* | |
| Plugin Name: Ajax message | |
| Plugin URI: http://keksus.com/wordpress-plugins/ae.html | |
| Description: Send message to email with ajax form | |
| Version: 0.0.1 | |
| Author: Keksus | |
| Author URI: http://keksus.com/ | |
| Text Domain: ae | |
| Domain Path: /languages/ |