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
# | |
# trash command | |
# move files to the trash | |
# | |
function trash { | |
if [[ "$@" == "" ]] | |
then | |
echo "usage: trash file ..." | |
return 64 | |
fi |
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"?> | |
<root> | |
<item> | |
<name>Clear Terminal with standard control code</name> | |
<item> | |
<name>Command+L to Control+L (only in Terminal)</name> | |
<identifier>private.l_plus_command_to_l_plus_control</identifier> | |
<only>TERMINAL</only> | |
<autogen>__KeyToKey__ KeyCode::L, MODIFIERFLAG_EITHER_LEFT_OR_RIGHT_COMMAND, KeyCode::L, ModifierFlag::CONTROL_L</autogen> | |
</item> |
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 getBlogContributors blogs> | |
<#local contributors = [ ]> | |
<#local contributorsWithDate = [ ]> | |
<#local blogPostObjectType = 38> | |
<#local resultFilter = action.getResultFilter()> | |
<#if blogs?has_content> | |
<#list blogs as blog> | |
<#list blog.contributors as contributor> | |
<#if (!(contributors?seq_contains(contributor)))> | |
<#-- check if user is blocked --> |
NewerOlder