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
diff --git a/arch/arm/boot/dts/Makefile b/arch/arm/boot/dts/Makefile | |
index 4fe209cf6a3e..edb105f8d4be 100644 | |
--- a/arch/arm/boot/dts/Makefile | |
+++ b/arch/arm/boot/dts/Makefile | |
@@ -766,6 +766,7 @@ dtb-$(CONFIG_ARCH_QCOM) += \ | |
qcom-msm8974-fairphone-fp2.dtb \ | |
qcom-msm8974-lge-nexus5-hammerhead.dtb \ | |
qcom-msm8974-samsung-klte.dtb \ | |
+ qcom-msm8974-sony-xperia-aries.dtb \ | |
qcom-msm8974-sony-xperia-castor.dtb \ |
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/bash | |
echo "Building and installing dotnet cli..." | |
# Install the dependencies (I think this is all...) | |
dnf install -y clang cmake llvm gettext libunwind libunwind-devel \ | |
lldb-devel libuuid-devel libcurl-devel libicu-devel \ | |
lttng-ust lttng-ust-devel curl icu | |
# Make build directory | |
mkdir /home/$USER/dotnet | |
cd /home/$USER/dotnet |
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
{ | |
"name":"Oceanic Next", | |
"version":"1.0", | |
"description":"Colorful color scheme", | |
"originator":"Dmitri Voronianski", | |
"palette": [ | |
{ "name": "base00", "value":"#1B2B34" }, | |
{ "name": "base01", "value":"#343D46" }, | |
{ "name": "base02", "value":"#4F5B66" }, | |
{ "name": "base03", "value":"#65737E" }, |
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
From d9a4347654e2a5b6b3323011049d094e3358e39c Mon Sep 17 00:00:00 2001 | |
From: Alistair Bill <[email protected]> | |
Date: Sun, 1 May 2016 20:28:14 +0100 | |
Subject: [PATCH] Make theme transparent | |
--- | |
colors/OceanicNext.vim | 2 +- | |
1 file changed, 1 insertion(+), 1 deletion(-) | |
diff --git a/colors/OceanicNext.vim b/colors/OceanicNext.vim |
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
#!/usr/bin/env python | |
import tweepy #https://github.com/tweepy/tweepy | |
# options | |
test_mode = False | |
#Twitter API credentials | |
consumer_key = "" | |
consumer_secret = "" |