mirror of https://github.com/harish2704/dotFiles
7 changed files with 68 additions and 0 deletions
@ -0,0 +1,15 @@ |
|||||
|
/* |
||||
|
* ॐ Om Brahmarppanam ॐ |
||||
|
* |
||||
|
* <%- filename %> |
||||
|
* Created at: <%- date %> |
||||
|
* |
||||
|
* Copyright <%- date.getFullYear() %> <%- user %> <<%- email %>> |
||||
|
* |
||||
|
* Use of this source code is governed by an MIT-style |
||||
|
* license that can be found in the LICENSE file or at |
||||
|
* https://opensource.org/licenses/MIT. |
||||
|
* |
||||
|
*/ |
||||
|
|
||||
|
|
@ -0,0 +1,12 @@ |
|||||
|
|
||||
|
import { View, StyleSheet, Text } from 'react-native'; |
||||
|
|
||||
|
export default function(){ |
||||
|
return <View style={css.wrapper}></View> ; |
||||
|
} |
||||
|
|
||||
|
const css = StyleSheet.create({ |
||||
|
wrapper:{ |
||||
|
|
||||
|
} |
||||
|
}); |
@ -0,0 +1,5 @@ |
|||||
|
module.exports = { |
||||
|
user: 'Harish Karumuthil', |
||||
|
email: 'harish2704@gmail.com', |
||||
|
date: new Date(), |
||||
|
}; |
@ -0,0 +1,10 @@ |
|||||
|
gtk-enable-animations=1 |
||||
|
gtk-primary-button-warps-slider=0 |
||||
|
gtk-toolbar-style=3 |
||||
|
gtk-menu-images=1 |
||||
|
gtk-button-images=1 |
||||
|
gtk-cursor-theme-size=24 |
||||
|
gtk-cursor-theme-name="breeze_cursors" |
||||
|
gtk-icon-theme-name="breeze" |
||||
|
gtk-font-name="Noto Sans, 11" |
||||
|
|
@ -0,0 +1,13 @@ |
|||||
|
gtk-enable-animations=1 |
||||
|
gtk-primary-button-warps-slider=0 |
||||
|
gtk-toolbar-style=3 |
||||
|
gtk-menu-images=1 |
||||
|
gtk-button-images=1 |
||||
|
gtk-cursor-theme-size=24 |
||||
|
gtk-cursor-theme-name="breeze_cursors" |
||||
|
gtk-icon-theme-name="breeze" |
||||
|
gtk-font-name="Noto Sans, 11" |
||||
|
include "/usr/share/themes/Adwaita/gtk-2.0/gtkrc" |
||||
|
|
||||
|
gtk-theme-name="Breeze" |
||||
|
|
@ -0,0 +1,5 @@ |
|||||
|
|
||||
|
mkdir -p ~/.local/share/tkthemes |
||||
|
cp -r /usr/share/PySolFC/themes/clearlooks/ ~/.local/share/tkthemes/ |
||||
|
echo "export TCLLIBPATH=~/.local/share/tkthemes" >> ~/.bashrc |
||||
|
nv ~/.Xdefaults |
Loading…
Reference in new issue