diff options
-rw-r--r-- | files/i3/config | 15 | ||||
-rw-r--r-- | files/mpv/mpv.conf | 3 | ||||
-rw-r--r-- | files/qutebrowser/config.py | 7 | ||||
-rw-r--r-- | files/ranger/rifle.conf | 4 | ||||
-rw-r--r-- | files/rcs/.bash_aliases | 1 | ||||
-rw-r--r-- | files/rcs/.bashrc | 2 | ||||
-rw-r--r-- | files/rcs/.tmux.conf | 1 | ||||
-rw-r--r-- | files/rcs/.xinitrci3 | 3 | ||||
-rw-r--r-- | files/vim/ftplugin/html/html.vim | 3 |
9 files changed, 15 insertions, 24 deletions
diff --git a/files/i3/config b/files/i3/config index 7a5752a..c506e8b 100644 --- a/files/i3/config +++ b/files/i3/config @@ -47,9 +47,9 @@ font pango:monospace 8 # # Use these keys for focus, movement, and resize directions when reaching for # the arrows is not convenient -set $up k -set $down j set $left h +set $down j +set $up k set $right l # define workspaces names @@ -65,17 +65,6 @@ set $ws9 9 set $ws10 10 set $wst 🙈 -#set $ws1 1:I -#set $ws2 2:II -#set $ws3 3:III -#set $ws4 4:IV -#set $ws5 5:V -#set $ws6 6:VI -#set $ws7 7:VII -#set $ws8 8:VIII -#set $ws9 9:IX -#set $ws10 10:X -#set $wst 🙈 # use Mouse+$mod to drag floating windows to their wanted position floating_modifier $mod diff --git a/files/mpv/mpv.conf b/files/mpv/mpv.conf index 5c80c2d..9e5391f 100644 --- a/files/mpv/mpv.conf +++ b/files/mpv/mpv.conf @@ -16,3 +16,6 @@ sub-border-size=8 # Terminal term-osd-bar msg-color + +# OSC +osc=no diff --git a/files/qutebrowser/config.py b/files/qutebrowser/config.py index 9bc3ace..2396e38 100644 --- a/files/qutebrowser/config.py +++ b/files/qutebrowser/config.py @@ -824,7 +824,9 @@ c.fonts.statusbar = '10pt Linux Libertine' ## Font used in the tab bar. ## Type: QtFont # c.fonts.tabs = '10pt monospace' -c.fonts.tabs = '10pt serif' +# No longer exists (Thu 16 Jul 2020 01:39:46 AM CEST) +c.fonts.tabs.selected = '10pt serif' +c.fonts.tabs.unselected = '10pt serif' ## Font family for cursive fonts. ## Type: FontFamily @@ -1152,7 +1154,8 @@ c.new_instance_open_target = 'window' ## Hide the statusbar unless a message is shown. ## Type: Bool # c.statusbar.hide = False -c.statusbar.hide = True +# No longer exists (Thu 16 Jul 2020 01:39:46 AM CEST) +c.statusbar.show = "in-mode" ## Padding (in pixels) for the statusbar. ## Type: Padding diff --git a/files/ranger/rifle.conf b/files/ranger/rifle.conf index d08f6f1..35a10a0 100644 --- a/files/ranger/rifle.conf +++ b/files/ranger/rifle.conf @@ -119,10 +119,10 @@ mime ^audio|ogg$, terminal, has mpv = urxvt -e mpv "$@" & #-------------------------------------------- # Video/Audio with a GUI #------------------------------------------- -mime ^video, has mpv, X, flag f = mpv -- "$@" -mime ^video, has mpv, X, flag f = mpv --fs -- "$@" mime ^video, has mpv, X, flag f = bash ~/scripts/floats/mpvFloat.sh "$@" mime ^video, has mpv, X, flag f = bash ~/scripts/floats/mpvFloatLoop.sh "$@" +mime ^video, has mpv, X, flag f = mpv --fs -- "$@" +mime ^video, has mpv, X, flag f = mpv -- "$@" mime ^video, has mpv, X, flag f = mpv -vo caca -- "$@" mime ^video|audio, has vlc, X, flag f = vlc -- "$@" #mime ^video|audio, has gmplayer, X, flag f = gmplayer -- "$@" diff --git a/files/rcs/.bash_aliases b/files/rcs/.bash_aliases index 9dea509..8c3fd6c 100644 --- a/files/rcs/.bash_aliases +++ b/files/rcs/.bash_aliases @@ -2,7 +2,6 @@ alias r='tmux rename-window ranger; ranger; tmux rename-window bash' alias v='nvim' alias vim='nvim' -alias ping='ping fsf.org' alias cdf='cd "$(fzfPath.sh)"' alias cdr='route="$(fzfPath.sh)" && [ -n "$route" ] && ranger "$route"' alias mail='mail.sh' diff --git a/files/rcs/.bashrc b/files/rcs/.bashrc index 5ab87a6..a565c03 100644 --- a/files/rcs/.bashrc +++ b/files/rcs/.bashrc @@ -56,7 +56,7 @@ pur="\[\e[1;35m\]" keys="$blue" wd="$pur" umode="$blue" -PS1="${keys}[${pur}\u${keys}@${pur}\h${keys}]${wd}\w${umode}\$${def} " +PS1="${keys}[${wd}\u${keys}@${wd}\h${keys}]${wd}\w${umode}\$${def} " # Aliases are defined in $HOME/.bash_aliases for convenience. [ -f "$HOME/.bash_aliases" ] && . "$HOME/.bash_aliases" diff --git a/files/rcs/.tmux.conf b/files/rcs/.tmux.conf index 63323a6..62f9762 100644 --- a/files/rcs/.tmux.conf +++ b/files/rcs/.tmux.conf @@ -67,6 +67,5 @@ set -ga terminal-overrides '*:Ss=\E[%p1%d q:Se=\E[ q' set-option -sa terminal-overrides ',rxvt-256color:RGB' # tmux-url-select - bind u run tmux-url-select diff --git a/files/rcs/.xinitrci3 b/files/rcs/.xinitrci3 index daaf886..ba0c6ef 100644 --- a/files/rcs/.xinitrci3 +++ b/files/rcs/.xinitrci3 @@ -1,4 +1 @@ -xrandr --setprovideroutputsource modesetting NVIDIA-0 -xrandr --auto -xrandr --dpi 96 exec i3 diff --git a/files/vim/ftplugin/html/html.vim b/files/vim/ftplugin/html/html.vim index 30e4484..41890b4 100644 --- a/files/vim/ftplugin/html/html.vim +++ b/files/vim/ftplugin/html/html.vim @@ -8,8 +8,9 @@ setlocal tabstop=2 shiftwidth=2 expandtab " Show existing tabs (they can be deleted with :retab) setlocal list -" Column marker: 110 characters +" Column marker: 100 characters call matchadd('ColorColumn', '\%101v', 100) +setlocal textwidth=100 let mapleader = " " |