Compare commits

..

2 commits

Author SHA1 Message Date
xeruf
25710c7bca config: adjustments for grasshopper 2023-01-03 22:36:15 +01:00
xeruf
99470780ca bin: update shortcuts 2023-01-03 22:35:46 +01:00
9 changed files with 40 additions and 10 deletions

View file

@ -0,0 +1,3 @@
#!/bin/sh -e
# $0
$1

View file

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

View file

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

View file

@ -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() {

View file

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

View file

@ -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)
} }

View file

@ -1 +0,0 @@
user-dirs.dirs##user.janek

View 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
View file

@ -0,0 +1,2 @@
#!/bin/sh
curl --location $1.patch | git am

2
.local/bin/scripts/nomedia Executable file
View file

@ -0,0 +1,2 @@
#!/bin/sh
find -type d -exec touch {}/.nomedia \;