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
<application> | |
<component name="com.intellij.ide.ui.customization.CustomActionsSchema"> | |
<group value="RebuildGradleProject" is_action="true" action_type="1" position="1"> | |
<path value="root" /> | |
<path value="Main Toolbar" /> | |
<path value="Toolbar Run Actions" /> | |
<option name="myInitialPosition" value="-1" /> | |
</group> | |
<group seperator="true" action_type="1" position="2"> | |
<path value="root" /> |
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
gsettings set org.gnome.shell.extensions.dash-to-dock click-action 'minimize' |
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
config/options/customization.xml | |
<application> | |
<component name="com.intellij.ide.ui.customization.CustomActionsSchema"> | |
<group value="ReformatCode" is_action="true" action_type="1" position="1"> | |
<path value="root" /> | |
<path value="Main Toolbar" /> | |
<path value="Toolbar Run Actions" /> | |
<option name="myInitialPosition" value="-1" /> | |
</group> |
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
# Reset the index and working tree to the desired tree | |
# Ensure you have no uncommitted changes that you want to keep | |
git reset --hard 56e05fced | |
# Move the branch pointer back to the previous HEAD | |
git reset --soft HEAD@{1} | |
git commit -m "Revert to 56e05fced" |
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
# Adjust the following variables as necessary | |
REMOTE=origin | |
BRANCH=$(git rev-parse --abbrev-ref HEAD) | |
BATCH_SIZE=500 | |
# check if the branch exists on the remote | |
if git show-ref --quiet --verify refs/remotes/$REMOTE/$BRANCH; then | |
# if so, only push the commits that are not on the remote already | |
range=$REMOTE/$BRANCH..HEAD | |
else |
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
# set to yes if you want Conky to be forked in the background | |
background yes | |
# Use Xft? | |
use_xft yes | |
# Xft font when Xft is enabled | |
#xftfont FreeSans:bold:size=8 | |
xftfont FreeSans:bold:size=8 |
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
wget -q "http://packages.elementary.io/key.asc" -O- | sudo apt-key add - |
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
package com.gensport.utils.view | |
import android.content.Context | |
import android.content.res.TypedArray | |
import android.graphics.* | |
import android.os.Bundle | |
import android.os.Parcelable | |
import android.util.AttributeSet | |
import android.util.TypedValue | |
import android.view.MotionEvent |
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
set PATH $PATH (find ~/.sdkman/candidates/*/current/bin -maxdepth 0) |