Added dconf configuration
Signed-off-by: Severin Kaderli <severin.kaderli@gmail.com>
This commit is contained in:
parent
399f8e0c59
commit
984d7283d0
7 changed files with 43 additions and 49 deletions
|
@ -1,10 +1,5 @@
|
|||
# If .bash_profile exists, bash doesn't read .profile
|
||||
if [[ -f $HOME/.profile ]]; then
|
||||
. $HOME/.profile
|
||||
fi
|
||||
|
||||
# If the shell is interactive and .bashrc exists, get the aliases and functions
|
||||
if [[ $- == *i* && -f $HOME/.bashrc ]]; then
|
||||
# We just source .bashrc so we don't need to manage two files.
|
||||
if [[ -f $HOME/.bashrc ]]; then
|
||||
. $HOME/.bashrc
|
||||
fi
|
||||
|
||||
|
|
5
.bashrc
5
.bashrc
|
@ -121,3 +121,8 @@ fi
|
|||
if [ -x /usr/bin/mint-fortune ]; then
|
||||
/usr/bin/mint-fortune
|
||||
fi
|
||||
|
||||
# Add users bin directory to the PATH
|
||||
if [ -d "$HOME/bin" ] ; then
|
||||
PATH="$HOME/bin:$PATH"
|
||||
fi
|
||||
|
|
27
.hyper.js
27
.hyper.js
|
@ -10,24 +10,15 @@ module.exports = {
|
|||
|
||||
foregroundColor: '#C5C8C6',
|
||||
|
||||
backgroundColor: '#1D1F21',
|
||||
backgroundColor: '#000',
|
||||
|
||||
borderColor: '#373B41',
|
||||
|
||||
// Hide the tab bar
|
||||
css: `
|
||||
.header_header {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.terms_terms {
|
||||
margin-top: 0;
|
||||
}
|
||||
`,
|
||||
css: "",
|
||||
|
||||
termCSS: '',
|
||||
termCSS: "",
|
||||
|
||||
padding: '12px 14px',
|
||||
padding: "12px",
|
||||
|
||||
colors: [
|
||||
"#1d1f21",
|
||||
|
@ -49,9 +40,9 @@ module.exports = {
|
|||
"#c5c8c6"
|
||||
],
|
||||
|
||||
shell: '',
|
||||
shell: "",
|
||||
|
||||
shellArgs: ['--login'],
|
||||
shellArgs: ["--login"],
|
||||
|
||||
env: {},
|
||||
|
||||
|
@ -66,11 +57,9 @@ module.exports = {
|
|||
},
|
||||
|
||||
plugins: [
|
||||
//"hyperterm-tomorrow-night"
|
||||
"hyper-tomorrow-night",
|
||||
"hyper-hide-tabs"
|
||||
],
|
||||
|
||||
// in development, you can create a directory under
|
||||
// `~/.hyperterm_plugins/local/` and include it here
|
||||
// to load it and avoid it being `npm install`ed
|
||||
localPlugins: []
|
||||
};
|
||||
|
|
22
.profile
22
.profile
|
@ -1,22 +0,0 @@
|
|||
# ~/.profile: executed by the command interpreter for login shells.
|
||||
# This file is not read by bash(1), if ~/.bash_profile or ~/.bash_login
|
||||
# exists.
|
||||
# see /usr/share/doc/bash/examples/startup-files for examples.
|
||||
# the files are located in the bash-doc package.
|
||||
|
||||
# the default umask is set in /etc/profile; for setting the umask
|
||||
# for ssh logins, install and configure the libpam-umask package.
|
||||
#umask 022
|
||||
|
||||
# if running bash
|
||||
if [ -n "$BASH_VERSION" ]; then
|
||||
# include .bashrc if it exists
|
||||
if [ -f "$HOME/.bashrc" ]; then
|
||||
. "$HOME/.bashrc"
|
||||
fi
|
||||
fi
|
||||
|
||||
# set PATH so it includes user's private bin if it exists
|
||||
if [ -d "$HOME/bin" ] ; then
|
||||
PATH="$HOME/bin:$PATH"
|
||||
fi
|
3
.xinitrc
3
.xinitrc
|
@ -3,6 +3,9 @@ xset s off
|
|||
xset -dpms
|
||||
xset s noblank
|
||||
|
||||
# Load dconf
|
||||
cat "$HOME/dotfiles/dconf/config" | dconf load /
|
||||
|
||||
# Start ibus
|
||||
ibus-daemon -d --xim
|
||||
|
||||
|
|
25
dconf/config
Normal file
25
dconf/config
Normal file
|
@ -0,0 +1,25 @@
|
|||
[org/gtk/settings/file-chooser]
|
||||
sort-column='name'
|
||||
sidebar-width=148
|
||||
window-position=(164, 379)
|
||||
show-size-column=true
|
||||
show-hidden=false
|
||||
window-size=(830, 622)
|
||||
sort-directories-first=true
|
||||
date-format='regular'
|
||||
sort-order='ascending'
|
||||
location-mode='path-bar'
|
||||
|
||||
[desktop/ibus/general]
|
||||
engines-order=['xkb:ch::ger', 'mozc-jp']
|
||||
embed-preedit-text=true
|
||||
use-system-keyboard-layout=true
|
||||
use-global-engine=true
|
||||
preload-engines=['xkb:ch::ger', 'mozc-jp']
|
||||
version='1.5.11'
|
||||
|
||||
[desktop/ibus/general/hotkey]
|
||||
triggers=['<Super>space']
|
||||
|
||||
[desktop/ibus/panel]
|
||||
use-custom-font=true
|
|
@ -11,7 +11,6 @@ ln -s "$DIR/.gitconfig" "$HOME/.gitconfig"
|
|||
ln -s "$DIR/.bash_profile" "$HOME/.bash_profile"
|
||||
ln -s "$DIR/.bashrc" "$HOME/.bashrc"
|
||||
ln -s "$DIR/.aliases" "$HOME/.aliases"
|
||||
ln -s "$DIR/.profile" "$HOME/.bashrc"
|
||||
ln -s "$DIR/.xinitrc" "$HOME/.xinitrc"
|
||||
ln -s "$DIR/.Xresources" "$HOME/.Xresources"
|
||||
ln -s "$DIR/.config/i3" "$HOME/.config/i3"
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue