Browse Source

Updates

pull/19/head
Harish Karumuthil 2 years ago
parent
commit
d5a31f833b
  1. 15
      home/.file-headers/default
  2. 12
      home/.file-headers/jsx
  3. 5
      home/.file-headers/template_data.js
  4. 8
      home/.gitconfig
  5. 10
      home/.gtkrc-2.0
  6. 13
      home/.gtkrc-2.0-kde4
  7. 5
      home/.local/Apps/daily-utils/setup-tk-theme.sh

15
home/.file-headers/default

@ -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.
*
*/

12
home/.file-headers/jsx

@ -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:{
}
});

5
home/.file-headers/template_data.js

@ -0,0 +1,5 @@
module.exports = {
user: 'Harish Karumuthil',
email: 'harish2704@gmail.com',
date: new Date(),
};

8
home/.gitconfig

@ -6,8 +6,16 @@
noconsole = yes noconsole = yes
[init] [init]
defaultBranch = main defaultBranch = main
[alias]
change-commits = "!f() { VAR=$1; OLD=$2; NEW=$3; shift 3; git filter-branch --env-filter \"if [[ \\\"$`echo $VAR`\\\" = '$OLD' ]]; then export $VAR='$NEW'; fi\" $@; }; f"
[filter "lfs"] [filter "lfs"]
process = git-lfs filter-process process = git-lfs filter-process
required = true required = true
clean = git-lfs clean -- %f clean = git-lfs clean -- %f
smudge = git-lfs smudge -- %f smudge = git-lfs smudge -- %f
[guitool "Pull"]
cmd = git pull
[push]
autoSetupRemote = true
[pull]
rebase = false

10
home/.gtkrc-2.0

@ -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"

13
home/.gtkrc-2.0-kde4

@ -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"

5
home/.local/Apps/daily-utils/setup-tk-theme.sh

@ -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…
Cancel
Save