Compare commits
No commits in common. "25710c7bca9aeb66cee07d8da946e54fe17b2b41" and "8a8f31219e79e2596d097adda442d05172521db7" have entirely different histories.
25710c7bca
...
8a8f31219e
9 changed files with 10 additions and 40 deletions
|
@ -1,3 +0,0 @@
|
||||||
#!/bin/sh -e
|
|
||||||
# $0
|
|
||||||
$1
|
|
|
@ -1,5 +1,3 @@
|
||||||
# Reload conf with C-S-F5
|
|
||||||
|
|
||||||
map ctrl+c copy_or_interrupt
|
map ctrl+c copy_or_interrupt
|
||||||
|
|
||||||
scrollback_lines 20000
|
scrollback_lines 20000
|
||||||
|
|
|
@ -991,7 +991,7 @@
|
||||||
|
|
||||||
#: The foreground and background colors.
|
#: The foreground and background colors.
|
||||||
|
|
||||||
background_opacity 0.8
|
# background_opacity 1.0
|
||||||
|
|
||||||
#: The opacity of the background. A number between zero and one, where
|
#: The opacity of the background. A number between zero and one, where
|
||||||
#: one is opaque and zero is fully transparent. This will only work if
|
#: one is opaque and zero is fully transparent. This will only work if
|
||||||
|
@ -1026,7 +1026,7 @@ background_opacity 0.8
|
||||||
#: When background image is scaled, whether linear interpolation
|
#: When background image is scaled, whether linear interpolation
|
||||||
#: should be used.
|
#: should be used.
|
||||||
|
|
||||||
dynamic_background_opacity yes
|
# dynamic_background_opacity no
|
||||||
|
|
||||||
#: Allow changing of the background_opacity dynamically, using either
|
#: Allow changing of the background_opacity dynamically, using either
|
||||||
#: keyboard shortcuts (increase_background_opacity and
|
#: keyboard shortcuts (increase_background_opacity and
|
||||||
|
|
|
@ -9,7 +9,7 @@ snapinstall() {
|
||||||
}
|
}
|
||||||
|
|
||||||
alias aptupdate='sudo apt-get update'
|
alias aptupdate='sudo apt-get update'
|
||||||
alias aptremove='sudo apt-get remove --autoremove'
|
alias aptremove='sudo apt-get remove'
|
||||||
alias aptpurge='sudo apt-get purge --autoremove'
|
alias aptpurge='sudo apt-get purge --autoremove'
|
||||||
alias aptclean='sudo apt-get clean && sudo apt-get autoremove'
|
alias aptclean='sudo apt-get clean && sudo apt-get autoremove'
|
||||||
upgrade() {
|
upgrade() {
|
||||||
|
|
|
@ -4,9 +4,10 @@ command -v notify-send >/dev/null &&
|
||||||
|
|
||||||
if which jrnl >/dev/null; then
|
if which jrnl >/dev/null; then
|
||||||
alias j='jrnl'
|
alias j='jrnl'
|
||||||
jn() { jrnl -to today "$@" | less --exit-follow-on-close +F; }
|
jn() { jrnl -to today "$@" | less +G; }
|
||||||
alias jnc='jn -contains'
|
alias jnc='jn -contains'
|
||||||
alias jne='jrnl --edit'
|
alias jne='jrnl --edit'
|
||||||
|
# TODO jump to end
|
||||||
fi
|
fi
|
||||||
|
|
||||||
test "$DISPLAY" || return 0
|
test "$DISPLAY" || return 0
|
||||||
|
|
|
@ -1,16 +1,9 @@
|
||||||
input * {
|
input * {
|
||||||
xkb_layout de,eu,us
|
xkb_layout de,eu,us
|
||||||
xkb_variant nodeadkeys,basic,euro
|
|
||||||
xkb_numlock enabled
|
xkb_numlock enabled
|
||||||
xkb_options caps:escape_shifted_capslock
|
xkb_options caps:swapescape
|
||||||
}
|
}
|
||||||
input "1:1:AT_Translated_Set_2_keyboard" {
|
input 1:1:AT_Translated_Set_2_keyboard {
|
||||||
xkb_switch_layout 1
|
xkb_layout eu,us
|
||||||
}
|
xkb_options caps:swapescape
|
||||||
input "type:touchpad" {
|
|
||||||
tap enabled
|
|
||||||
natural_scroll disabled
|
|
||||||
accel_profile adaptive
|
|
||||||
dwt disabled
|
|
||||||
pointer_accel 0.4 # set mouse sensitivity (between -1 and 1)
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,16 +0,0 @@
|
||||||
# This file is written by xdg-user-dirs-update
|
|
||||||
# If you want to change or add directories, just edit the line you're
|
|
||||||
# interested in. All local changes will be retained on the next run.
|
|
||||||
# Format is XDG_xxx_DIR="$HOME/yyy", where yyy is a shell-escaped
|
|
||||||
# homedir-relative path, or XDG_xxx_DIR="/yyy", where /yyy is an
|
|
||||||
# absolute path. No other format is supported.
|
|
||||||
#
|
|
||||||
XDG_DESKTOP_DIR="$HOME/.local/desktop"
|
|
||||||
XDG_TEMPLATES_DIR="$HOME/.local/templates"
|
|
||||||
XDG_DOWNLOAD_DIR="$HOME/data/3-dox"
|
|
||||||
XDG_MUSIC_DIR="$HOME/data/4-media/music"
|
|
||||||
XDG_PICTURES_DIR="$HOME/data/4-media/images"
|
|
||||||
XDG_VIDEOS_DIR="$HOME/data/4-media/videos"
|
|
||||||
XDG_DOCUMENTS_DIR="$HOME/data/4-media/multimedia"
|
|
||||||
XDG_NOTES_DIR="$HOME/data/2-box"
|
|
||||||
#XDG_PUBLICSHARE_DIR="$HOME/data/3-resources/multimedia"
|
|
1
.config/user-dirs.dirs##user.janekf
Symbolic link
1
.config/user-dirs.dirs##user.janekf
Symbolic link
|
@ -0,0 +1 @@
|
||||||
|
user-dirs.dirs##user.janek
|
|
@ -1,2 +0,0 @@
|
||||||
#!/bin/sh
|
|
||||||
curl --location $1.patch | git am
|
|
|
@ -1,2 +0,0 @@
|
||||||
#!/bin/sh
|
|
||||||
find -type d -exec touch {}/.nomedia \;
|
|
Loading…
Add table
Reference in a new issue