Fix minor issues in a few configs, update geany colourscheme

This commit is contained in:
natemaia 2018-02-21 01:42:36 -08:00
parent f5fd85b9f5
commit 8c628ca06c
10 changed files with 29 additions and 34 deletions

View File

@ -17,7 +17,7 @@ inactive-opacity-override = false;
# Fade
fading = true;
fade-delta = 10;
fade-delta = 8;
fade-in-step = 0.03;
fade-out-step = 0.028;
alpha-step = 0.06;

View File

@ -35,7 +35,7 @@ error=#bf616a
# Editor Styles
#-------------------------------------------------------------------------------
selection=#a7adba;#65737e;false;true
current_line=;#4f5b66;true;false
current_line=;#4f5b66;false;false
brace_good=#ebcb8b;;true;false
brace_bad=#bf616a;#4f5b66;true;false
margin_line_number=#65737e;#4f5b66;true;false

View File

@ -35,7 +35,7 @@ error=#bf616a
# Editor Styles
#-------------------------------------------------------------------------------
selection=#a7adba;#65737e;false;true
current_line=;#4f5b66;true;false
current_line=;#afafaf;true;false
brace_good=#a3be8c;;true;false
brace_bad=#bf616a;#4f5b66;true;false
margin_line_number=#65737e;#4f5b66;true;false

View File

@ -9,7 +9,7 @@
[theme_info]
name=Monokai
description=It's warm, colorful and pleasing to the eyes
# incremented automatically, do not change manually
#' incremented automatically, do not change manually
version=16
author=Wimer Hazenberg
url=http://www.monokai.nl/blog/2006/07/15/textmate-color-theme/

View File

@ -6,22 +6,22 @@ tab_close_switch_to_mru=false
tab_pos_sidebar=2
sidebar_pos=0
symbols_sort_mode=0
msgwin_orientation=1
msgwin_orientation=0
highlighting_invert_all=false
pref_main_search_use_current_word=true
check_detect_indent=false
check_detect_indent=true
detect_indent_width=true
use_tab_to_indent=true
pref_editor_tab_width=2
pref_editor_tab_width=4
indent_mode=2
indent_type=1
virtualspace=1
autocomplete_doc_words=false
completion_drops_rest_of_word=false
autocomplete_doc_words=true
completion_drops_rest_of_word=true
autocompletion_max_entries=30
autocompletion_update_freq=250
color_scheme=archlabs-dark.conf
scroll_lines_around_cursor=6
scroll_lines_around_cursor=8
mru_length=10
disk_check_timeout=30
show_editor_scrollbars=true
@ -33,7 +33,7 @@ gio_unsafe_save_backup=false
use_gio_unsafe_file_saving=true
keep_edit_history_on_reload=true
show_keep_edit_history_on_reload_msg=true
indent_hard_tab_width=8
indent_hard_tab_width=4
find_selection_type=0
extract_filetype_regex=-\\*-\\s*([^\\s]+)\\s*-\\*-
replace_and_find_by_default=true
@ -59,7 +59,7 @@ beep_on_errors=false
auto_focus=false
sidebar_symbol_visible=true
sidebar_openfiles_visible=true
editor_font=Ubuntu Mono 10
editor_font=DejaVu Sans Mono 10
tagbar_font=Ubuntu Mono 10
msgwin_font=Ubuntu Mono 10
show_notebook_tabs=true
@ -78,8 +78,8 @@ long_line_enabled=true
long_line_type=0
long_line_column=120
long_line_color=#ABC9ED
symbolcompletion_max_height=10
symbolcompletion_min_chars=4
symbolcompletion_max_height=20
symbolcompletion_min_chars=2
use_folding=true
unfold_all_children=false
use_indicators=true
@ -103,9 +103,9 @@ pref_editor_ensure_convert_line_endings=false
pref_editor_replace_tabs=false
pref_editor_trail_space=true
pref_toolbar_show=true
pref_toolbar_append_to_menu=false
pref_toolbar_use_gtk_default_style=false
pref_toolbar_use_gtk_default_icon=false
pref_toolbar_append_to_menu=true
pref_toolbar_use_gtk_default_style=true
pref_toolbar_use_gtk_default_icon=true
pref_toolbar_icon_style=2
pref_toolbar_icon_size=1
pref_template_company=

View File

@ -28,7 +28,7 @@ gaps inner 15
gaps outer 5
# font
font pango:Roboto 11
font pango:DejaVu Sans Mono 10
# $Mod = Super or Alt?
set $Mod Mod4

View File

@ -363,7 +363,7 @@ format = <label>
;;;;;;;;;;;;;;;
;; KEYBOARD ;;
;; KEYBOARD ;;
;;;;;;;;;;;;;;;
[module/keyboard]
type = internal/xkeyboard

View File

@ -7,7 +7,7 @@ allow_bold = true
dynamic_title = true
urgent_on_bell = true
clickable_url = true
font = Fantasque Sans Mono 12
font = DejaVu Sans Mono 10
scrollback_lines = 10000
search_wrap = true
icon_name = utilities-terminal

View File

@ -1,6 +1,4 @@
#!/bin/sh
#
# ~/.xinitrc
# Executed by startx
# By calling this with arguments we can start different sessions
# eg. startx ~/.xinitrc i3 or startx ~/.xinitrc bspwm
@ -8,9 +6,6 @@
session=${1:-openbox}
export WM="$session"
export XDG_CONFIG_HOME="$HOME/.config"
export PATH=/home/smoke/bin:/usr/sbin:$PATH
if [ -f /etc/X11/xinit/.Xmodmap ]; then
xmodmap /etc/X11/xinit/.Xmodmap
@ -42,9 +37,9 @@ xset s 3600 3600
# start the session
case $session in
i3|i3wm) exec i3 ;;
bsp|bspwm) exec bspwm ;;
awesome) exec awesome ;;
i3|i3wm) exec i3 ;;
bsp|bspwm) exec bspwm ;;
awesome) exec awesome ;;
xfce|xfce4) exec startxfce4 ;;
openbox|openbox-session) exec openbox-session ;;
*) exec "$1"

View File

@ -1,13 +1,9 @@
# .xprofile
# vim:ft=sh
# lightdm sources this file at boot
# as well as our own xinitrc with startx
XDG_CONFIG_HOME=$HOME/.config
export XDG_CONFIG_HOME
if [ -d "$HOME/bin" ]; then
PATH=$HOME/bin:$PATH
fi
export XDG_CONFIG_HOME=$HOME/.config
if [ -d "/sbin" ]; then
PATH="/sbin:$PATH"
@ -17,6 +13,10 @@ if [ -d "/usr/sbin" ]; then
PATH="/usr/sbin:$PATH"
fi
if [ -d "$HOME/bin" ]; then
PATH=$HOME/bin:$PATH
fi
if which dbus-launch >/dev/null && test -z "$DBUS_SESSION_BUS_ADDRESS"; then
eval "$(dbus-launch --sh-syntax --exit-with-session)"
fi