Compare commits
2 commits
8a8f31219e
...
25710c7bca
Author | SHA1 | Date | |
---|---|---|---|
|
25710c7bca | ||
|
99470780ca |
9 changed files with 40 additions and 10 deletions
3
.config/doom/snippets/sh-mode/__
Normal file
3
.config/doom/snippets/sh-mode/__
Normal file
|
@ -0,0 +1,3 @@
|
||||||
|
#!/bin/sh -e
|
||||||
|
# $0
|
||||||
|
$1
|
|
@ -1,3 +1,5 @@
|
||||||
|
# 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 1.0
|
background_opacity 0.8
|
||||||
|
|
||||||
#: 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 @@
|
||||||
#: 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 no
|
dynamic_background_opacity yes
|
||||||
|
|
||||||
#: 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'
|
alias aptremove='sudo apt-get remove --autoremove'
|
||||||
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,10 +4,9 @@ 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 +G; }
|
jn() { jrnl -to today "$@" | less --exit-follow-on-close +F; }
|
||||||
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,9 +1,16 @@
|
||||||
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:swapescape
|
xkb_options caps:escape_shifted_capslock
|
||||||
}
|
}
|
||||||
input 1:1:AT_Translated_Set_2_keyboard {
|
input "1:1:AT_Translated_Set_2_keyboard" {
|
||||||
xkb_layout eu,us
|
xkb_switch_layout 1
|
||||||
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 +0,0 @@
|
||||||
user-dirs.dirs##user.janek
|
|
16
.config/user-dirs.dirs##user.janekf
Normal file
16
.config/user-dirs.dirs##user.janekf
Normal file
|
@ -0,0 +1,16 @@
|
||||||
|
# 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"
|
2
.local/bin/scripts/git-grab
Executable file
2
.local/bin/scripts/git-grab
Executable file
|
@ -0,0 +1,2 @@
|
||||||
|
#!/bin/sh
|
||||||
|
curl --location $1.patch | git am
|
2
.local/bin/scripts/nomedia
Executable file
2
.local/bin/scripts/nomedia
Executable file
|
@ -0,0 +1,2 @@
|
||||||
|
#!/bin/sh
|
||||||
|
find -type d -exec touch {}/.nomedia \;
|
Loading…
Add table
Reference in a new issue