diff options
Diffstat (limited to 'dot_config')
39 files changed, 575 insertions, 0 deletions
diff --git a/dot_config/aliasrc b/dot_config/aliasrc new file mode 100644 index 0000000..03f917e --- /dev/null +++ b/dot_config/aliasrc @@ -0,0 +1,26 @@ +#!/bin/sh + +alias mpv='mpv --input-ipc-server=/tmp/mpvsoc$(date +%s)' \ + xi="sudo xbps-install" \ + xr="sudo xbps-remove" \ + xq="xbps-query" \ + v='$EDITOR' \ + ls="ls -hN --color=auto --group-directories-first" \ + grep="grep --color=auto" \ + diff="diff --color=auto" \ + ffmpeg="ffmpeg -hide_banner" \ + cat='bat' \ + la='ls -A' \ + l='ls -1' \ + ll='ls -lt' \ + display='sxiv' \ + xbacklight='sudo xbacklight' \ + ipconfig='curl ipconfig.io' \ + cp='cp -v' \ + mv='mv -v' \ + mkdir='mkdir -pv' \ + rm='rm -v' \ + vv='cd ~/Videos && ls -A *' \ + pp='cd ~/Pictures && ls -A *' \ + mm='cd ~/Music && ls -A !(data-music)' \ + ipa='ip -c -h -s a' diff --git a/dot_config/i3/config b/dot_config/i3/config new file mode 100644 index 0000000..e469d5f --- /dev/null +++ b/dot_config/i3/config @@ -0,0 +1,405 @@ +# This file has been auto-generated by i3-config-wizard(1). +# It will not be overwritten, so edit it as you like. +# +# Should you change your keyboard layout some time, delete +# this file and re-run i3-config-wizard(1). +# + +# i3 config file (v4) +# +# Please see https://i3wm.org/docs/userguide.html for a complete reference! + +set $mod Mod4 + +# Font for window titles. Will also be used by the bar unless a different font +# is used in the bar {} block below. +font pango:monospace 8 + +# This font is widely installed, provides lots of unicode glyphs, right-to-left +# text rendering and scalability on retina/hidpi displays (thanks to pango). +#font pango:DejaVu Sans Mono 8 + +# The combination of xss-lock, nm-applet and pactl is a popular choice, so +# they are included here as an example. Modify as you see fit. + +# xss-lock grabs a logind suspend inhibit lock and will use i3lock to lock the +# screen before suspend. Use loginctl lock-session to lock your screen. +exec --no-startup-id xss-lock --transfer-sleep-lock -- i3lock --color=040217 --show-failed-attemps --nofork + +# NetworkManager is the most popular way to manage wireless networks on Linux, +# and nm-applet is a desktop environment-independent system tray GUI for it. +#exec --no-startup-id nm-applet + +# Use pactl to adjust volume in PulseAudio. +set $refresh_i3status killall -SIGUSR1 i3status +bindsym XF86AudioRaiseVolume exec --no-startup-id pactl set-sink-volume @DEFAULT_SINK@ +5% && $refresh_i3status +bindsym XF86AudioLowerVolume exec --no-startup-id pactl set-sink-volume @DEFAULT_SINK@ -5% && $refresh_i3status +bindsym XF86AudioMute exec --no-startup-id pactl set-sink-mute @DEFAULT_SINK@ toggle && $refresh_i3status +bindsym XF86AudioMicMute exec --no-startup-id pactl set-source-mute @DEFAULT_SOURCE@ toggle && $refresh_i3status + +# Use Mouse+$mod to drag floating windows to their wanted position +floating_modifier $mod + +# start a terminal +bindsym $mod+Return exec xterm + +# kill focused window +bindsym $mod+Shift+q kill + +# start dmenu (a program launcher) +bindsym $mod+d exec dmenu_run +# There also is the (new) i3-dmenu-desktop which only displays applications +# shipping a .desktop file. It is a wrapper around dmenu, so you need that +# installed. +# bindsym $mod+d exec --no-startup-id i3-dmenu-desktop + +# change focus +bindsym $mod+h focus left +bindsym $mod+j focus down +bindsym $mod+k focus up +bindsym $mod+l focus right + +# alternatively, you can use the cursor keys: +#bindsym $mod+Left focus left +#bindsym $mod+Down focus down +#bindsym $mod+Up focus up +#bindsym $mod+Right focus right + +# move focused window +bindsym $mod+Shift+h move left +bindsym $mod+Shift+j move down +bindsym $mod+Shift+k move up +bindsym $mod+Shift+l move right + +# alternatively, you can use the cursor keys: +#bindsym $mod+Shift+Left move left +#bindsym $mod+Shift+Down move down +#bindsym $mod+Shift+Up move up +#bindsym $mod+Shift+Right move right + +# split in horizontal orientation +bindsym $mod+c split h + +# split in vertical orientation +bindsym $mod+v split v + +# enter fullscreen mode for the focused container +bindsym $mod+f fullscreen toggle + +# change container layout (stacked, tabbed, toggle split) +bindsym $mod+s layout stacking +bindsym $mod+w layout tabbed +bindsym $mod+e layout toggle split + +# toggle tiling / floating +bindsym $mod+Shift+space floating toggle + +# change focus between tiling / floating windows +bindsym $mod+space focus mode_toggle + +# focus the parent container +#bindsym $mod+a focus parent + +# focus the child container +#bindsym $mod+d focus child + +# Define names for default workspaces for which we configure key bindings later on. +# We use variables to avoid repeating the names in multiple places. +set $ws1 "1" +set $ws2 "2" +set $ws3 "3" +set $ws4 "4" +set $ws5 "5" +set $ws6 "6" +set $ws7 "7" +set $ws8 "8" +set $ws9 "9" +set $ws10 "10" + +# switch to workspace +bindsym $mod+1 workspace number $ws1 +bindsym $mod+2 workspace number $ws2 +bindsym $mod+3 workspace number $ws3 +bindsym $mod+4 workspace number $ws4 +bindsym $mod+5 workspace number $ws5 +bindsym $mod+6 workspace number $ws6 +bindsym $mod+7 workspace number $ws7 +bindsym $mod+8 workspace number $ws8 +bindsym $mod+9 workspace number $ws9 +bindsym $mod+0 workspace number $ws10 + +# move focused container to workspace +bindsym $mod+Shift+1 move container to workspace number $ws1 +bindsym $mod+Shift+2 move container to workspace number $ws2 +bindsym $mod+Shift+3 move container to workspace number $ws3 +bindsym $mod+Shift+4 move container to workspace number $ws4 +bindsym $mod+Shift+5 move container to workspace number $ws5 +bindsym $mod+Shift+6 move container to workspace number $ws6 +bindsym $mod+Shift+7 move container to workspace number $ws7 +bindsym $mod+Shift+8 move container to workspace number $ws8 +bindsym $mod+Shift+9 move container to workspace number $ws9 +bindsym $mod+Shift+0 move container to workspace number $ws10 + +# reload the configuration file +#bindsym $mod+Shift+c reload +# restart i3 inplace (preserves your layout/session, can be used to upgrade i3) +bindsym $mod+Shift+r restart +# exit i3 (logs you out of your X session) +bindsym $mod+Shift+e exec "i3-nagbar -t warning -m 'You pressed the exit shortcut. Do you really want to exit i3? This will end your X session.' -B 'Yes, exit i3' 'i3-msg exit'" + +# resize window (you can also use the mouse for that) +mode "resize" { + # These bindings trigger as soon as you enter the resize mode + + # Pressing left will shrink the window’s width. + # Pressing right will grow the window’s width. + # Pressing up will shrink the window’s height. + # Pressing down will grow the window’s height. + bindsym h resize shrink width 10 px or 10 ppt + bindsym j resize grow height 10 px or 10 ppt + bindsym k resize shrink height 10 px or 10 ppt + bindsym l resize grow width 10 px or 10 ppt + + # same bindings, but for the arrow keys +# bindsym Left resize shrink width 10 px or 10 ppt +# bindsym Down resize grow height 10 px or 10 ppt +# bindsym Up resize shrink height 10 px or 10 ppt +# bindsym Right resize grow width 10 px or 10 ppt + + # back to normal: Enter or Escape or $mod+r + bindsym Return mode "default" + bindsym Escape mode "default" + bindsym $mod+r mode "default" +} + +bindsym $mod+r mode "resize" + +# Start i3bar to display a workspace bar (plus the system information i3status +# finds out, if available) +bar { + colors { + background #040217 + statusline #972e73 + separator #C9A6C9 + + focused_workspace #c583b6 #040217 #d52c70 + active_workspace #6c2d7a #000000 #c583b6 + inactive_workspace #6c2d7a #000000 #6c2d7a + urgent_workspace #20202D #F54A94 #FFFFFF + binding_mode #20202D #F54A94 #FFFFFF + } + separator_symbol "║" + font pango: 11 + status_command i3status +} + +# Firefox - (W)eb browser +bindsym $mod+Shift+W exec notify-send -t 5000 -i /usr/share/icons/hicolor/256x256/apps/firefox.png "Opening" "<span color='#ff6600' font='26px'><b>firefox</b></span>" ; exec firefox +# Power off - X +bindsym $mod+Shift+X exec "i3-nagbar -t warning -f fixed -m 'You pressed the shutting shortcut. Do you really eant to shut you computer?' -B 'Yes, shut it.' 'sudo /bin/poweroff'" +# Reboot - BackSpace +bindsym $mod+Shift+BackSpace exec "i3-nagbar -t warning -f fixed -m 'You pressed the restarting shortcut. Do you really eant to restart you computer?' -B 'Yes, restart it.' 'sudo /bin/reboot'" +# (T)eams +bindsym $mod+Shift+T exec notify-send -t 5000 -i /home/mas/Pictures/icons/teams.png "Opening" "<span color='purple' font='26px'><b>Teams</b></span>" ; exec teams +# (P)assword manager +bindsym $mod+Shift+P exec passmenu + +# Set the bg wallpaper +exec --no-startup-id feh --bg-scale /home/mas/Pictures/retrowave-pyramid.png + +# Sreen brightness controls +bindsym XF86MonBrightnessUp exec xbacklight -inc 1 ; exec notify-send -t 500 "Brightness : $(xbacklight -get)" # increase screen brightness +bindsym XF86MonBrightnessDown exec xbacklight -dec 1 ; exec notify-send -t 500 "Brightness : $(xbacklight -get)" # decrease screen brightness + +# class border backgr. text indicator child_border +client.focused #c583b6 #040217 #d52c70 #F54A94 #814db3 +client.focused_inactive #6C2D7A #000000 #c583b6 #0C1746 #3C3C54 +client.unfocused #6C2D7A #000000 #6C2D7A #0C1746 #3C3C54 +client.urgent #F54A94 #20202D #FFFFFF #0C1746 #F54A94 +client.placeholder #20202D #20202D #FFFFFF #0C1746 #3C3C54 + +client.background #D52C70 + +# suspend and hibernate +bindsym $mod+Shift+S exec "i3-nagbar -t warning -f fixed -m 'You pressed the suspending shortcut. Do you really want to suspend your computer?' -B 'Yes, suspend it.' 'sudo /bin/zzz'" +bindsym $mod+Shift+Delete exec "i3-nagbar -t warning -f fixed -m 'You pressed the hibernating shortcut. Do you really want to put your computer to sleep?' -B 'Yes, do it.' 'sudo /bin/ZZZ'" + +# What happens when we hit the power button +bindsym XF86PowerOff exec xcowsay $(fortune -os) + +######GAPS###### +set $mode_gaps Gaps: (o)uter, (i)nner, (h)orizontal, (v)ertical, (t)op, (r)ight, (b)ottom, (l)eft +set $mode_gaps_outer Outer Gaps: +|-|0 (local), Shift + +|-|0 (global) +set $mode_gaps_inner Inner Gaps: +|-|0 (local), Shift + +|-|0 (global) +set $mode_gaps_horiz Horizontal Gaps: +|-|0 (local), Shift + +|-|0 (global) +set $mode_gaps_verti Vertical Gaps: +|-|0 (local), Shift + +|-|0 (global) +set $mode_gaps_top Top Gaps: +|-|0 (local), Shift + +|-|0 (global) +set $mode_gaps_right Right Gaps: +|-|0 (local), Shift + +|-|0 (global) +set $mode_gaps_bottom Bottom Gaps: +|-|0 (local), Shift + +|-|0 (global) +set $mode_gaps_left Left Gaps: +|-|0 (local), Shift + +|-|0 (global) +bindsym $mod+Shift+g mode "$mode_gaps" + +mode "$mode_gaps" { + bindsym o mode "$mode_gaps_outer" + bindsym i mode "$mode_gaps_inner" + bindsym h mode "$mode_gaps_horiz" + bindsym v mode "$mode_gaps_verti" + bindsym t mode "$mode_gaps_top" + bindsym r mode "$mode_gaps_right" + bindsym b mode "$mode_gaps_bottom" + bindsym l mode "$mode_gaps_left" + bindsym Return mode "$mode_gaps" + bindsym Escape mode "default" +} + +mode "$mode_gaps_outer" { + bindsym plus gaps outer current plus 5 + bindsym minus gaps outer current minus 5 + bindsym 0 gaps outer current set 0 + + bindsym Shift+plus gaps outer all plus 5 + bindsym Shift+minus gaps outer all minus 5 + bindsym Shift+0 gaps outer all set 0 + + bindsym Return mode "$mode_gaps" + bindsym Escape mode "default" +} +mode "$mode_gaps_inner" { + bindsym plus gaps inner current plus 5 + bindsym minus gaps inner current minus 5 + bindsym 0 gaps inner current set 0 + + bindsym Shift+plus gaps inner all plus 5 + bindsym Shift+minus gaps inner all minus 5 + bindsym Shift+0 gaps inner all set 0 + + bindsym Return mode "$mode_gaps" + bindsym Escape mode "default" +} +mode "$mode_gaps_horiz" { + bindsym plus gaps horizontal current plus 5 + bindsym minus gaps horizontal current minus 5 + bindsym 0 gaps horizontal current set 0 + + bindsym Shift+plus gaps horizontal all plus 5 + bindsym Shift+minus gaps horizontal all minus 5 + bindsym Shift+0 gaps horizontal all set 0 + + bindsym Return mode "$mode_gaps" + bindsym Escape mode "default" +} +mode "$mode_gaps_verti" { + bindsym plus gaps vertical current plus 5 + bindsym minus gaps vertical current minus 5 + bindsym 0 gaps vertical current set 0 + + bindsym Shift+plus gaps vertical all plus 5 + bindsym Shift+minus gaps vertical all minus 5 + bindsym Shift+0 gaps vertical all set 0 + + bindsym Return mode "$mode_gaps" + bindsym Escape mode "default" +} +mode "$mode_gaps_top" { + bindsym plus gaps top current plus 5 + bindsym minus gaps top current minus 5 + bindsym 0 gaps top current set 0 + + bindsym Shift+plus gaps top all plus 5 + bindsym Shift+minus gaps top all minus 5 + bindsym Shift+0 gaps top all set 0 + + bindsym Return mode "$mode_gaps" + bindsym Escape mode "default" +} +mode "$mode_gaps_right" { + bindsym plus gaps right current plus 5 + bindsym minus gaps right current minus 5 + bindsym 0 gaps right current set 0 + + bindsym Shift+plus gaps right all plus 5 + bindsym Shift+minus gaps right all minus 5 + bindsym Shift+0 gaps right all set 0 + + bindsym Return mode "$mode_gaps" + bindsym Escape mode "default" +} +mode "$mode_gaps_bottom" { + bindsym plus gaps bottom current plus 5 + bindsym minus gaps bottom current minus 5 + bindsym 0 gaps bottom current set 0 + + bindsym Shift+plus gaps bottom all plus 5 + bindsym Shift+minus gaps bottom all minus 5 + bindsym Shift+0 gaps bottom all set 0 + + bindsym Return mode "$mode_gaps" + bindsym Escape mode "default" +} +mode "$mode_gaps_left" { + bindsym plus gaps left current plus 5 + bindsym minus gaps left current minus 5 + bindsym 0 gaps left current set 0 + + bindsym Shift+plus gaps left all plus 5 + bindsym Shift+minus gaps left all minus 5 + bindsym Shift+0 gaps left all set 0 + + bindsym Return mode "$mode_gaps" + bindsym Escape mode "default" +} + +gaps inner 10 +###GAPS### + +# (N)ewsboat +bindsym $mod+Shift+N exec xterm -e "newsboat" + +# (D)iscord +bindsym $mod+Shift+D exec notify-send -t 5000 -i /home/mas/Pictures/icons/discord.png "Opening" "<span color='#738ADB' font='26px'><b>Discord</b></span>" ; exec Discord + +# Media Player Controls +#bindsym ISO_Level3_Shift+F7 +bindsym XF86AudioPlay exec playerctl play-pause +bindsym XF86AudioPause exec playerctl pause +bindsym XF86AudioNext exec playerctl next +#bindsym XF86AudioPrev exec playerctl previous + +# Screenshot with scrot +bindsym Print exec notify-send -t 5000 -i /home/mas/Pictures/icons/screenshot.png "Launching" "<span color='cyan' font='26px'><b>scrot</b></span>" ; exec scrot --silent --exec 'mv $f ~/Pictures/screenshots && sxiv ~/Pictures/screenshots/$f' + +# (C)hromium +bindsym $mod+Shift+C exec notify-send -t 5000 -i /usr/share/icons/hicolor/256x256/apps/chromium.png "Opening" "<span color='#5D7FD2' font='26px'><b>chromium</b></span>" ; exec chromium + +# Mount/Umount on the drives - F10/F11 +bindsym $mod+F10 exec dmenumount +bindsym $mod+F11 exec dmenuumount + +# (V)irtualBox +bindsym $mod+Shift+V exec notify-send -t 5000 -i /usr/share/icons/hicolor/128x128/mimetypes/virtualbox.png "Launching" "<span color='blue' font='26px'><b>VirtualBox</b></span>" ; exec VirtualBox +# Thunderbird - (M)ail +bindsym $mod+Shift+M exec notify-send -t 5000 -i /usr/share/icons/hicolor/256x256/apps/thunderbird.png "Launching" "<span color='blue' font='26px'><b>Thunderbird</b></span>" ; exec thunderbird + +# US and FR keyboard mapping - (U)S/(F)R +bindsym $mod+Shift+U exec setxkbmap us && exec notify-send -t 5000 "US xkbmap" +bindsym $mod+Shift+F exec setxkbmap fr && exec notify-send -t 5000 "FR xkbmap" + +# Network manager - (I)nternet +#bindsym $mod+Shift+I exec networkmanager_dmenu + +#Krita - F1 +bindsym $mod+Shift+F1 exec notify-send -t 5000 -i /usr/share/icons/hicolor/1024x1024/apps/krita.png "Lauching" "<span color='pink' font='26px'><b>Krita</b></span>" && exec krita + +#remove the header of the window +default_border pixel 2 + +#Urgency i3 opt out option +bindsym $mod+Shift+F10 exec i3-msg exit + +#Android Studio - F2 +bindsym $mod+Shift+F2 exec notify-send -t 5000 -i /home/mas/Pictures/icons/android_studio.png "Lauching" "<span color='#004d00' font='26px'><b>Android Studio</b></span>" && exec studio + +exec_always --no-startup-id /usr/bin/i3wsr + +#(L)ock +bindsym $mod+Ctrl+l exec i3lock --show-failed-attempts --color=040217 diff --git a/dot_config/i3/i3status.conf b/dot_config/i3/i3status.conf new file mode 100644 index 0000000..0f1f048 --- /dev/null +++ b/dot_config/i3/i3status.conf @@ -0,0 +1,88 @@ +# i3status configuration file. +# see "man i3status" for documentation. + +# It is important that this file is edited as UTF-8. +# The following line should contain a sharp s: +# ß +# If the above line is not correctly displayed, fix your editor first! + +general { + colors = true + color_good="#c583b6" + color_bad="#D52C70" + color_degraded="#6c2e8d" + interval = 1 +} + +#order += "ipv6" +order += "wireless _first_" +order += "ethernet _first_" +order += "battery 0" +order += "disk /" +order += "load" +order += "memory" +order += "volume master" +order += "tztime local" + +wireless _first_ { + format_up = "W: (%quality at %essid) %ip" + format_down = "W: down" +} + +ethernet _first_ { + format_up = "E: %ip (%speed)" + format_down = "E: down" +} + +battery all { + format = "%status %percentage %remaining %emptytime" + format_down = "No battery" + status_chr = "CHR" + status_bat = "BAT" + status_unk = "UNK" + status_full = "FULL" + path = "/sys/class/power_supply/BAT%d/uevent" + low_threshold = 20 + color_bad="red" +} + +battery 0 { + format = "%status %percentage" + format_down = "No battery" + status_chr = "CHR" + status_bat = "BAT" + status_unk = "UNK" + status_full = "FULL" + path = "/sys/class/power_supply/BAT%d/uevent" + low_threshold = 20 + color_bad="red" + last_full_capacity = true + integer_battery_capacity = true +} + +disk "/" { + format = "%avail / %total" +} + +load { + format = "%1min" +} + +memory { + format = "MEM: %available / %total" + threshold_degraded = "10%" + format_degraded = "MEM: %free" +} + +tztime local { + format = "%a %d %b %Y %H:%M:%S" + timezone = "Europe/Paris" +} + +volume master { + format = "♪: %volume" + format_muted = "♪: muted (%volume)" + device = "default" + mixer = "Master" + mixer_idx = 0 +} diff --git a/dot_config/mpv/input.conf b/dot_config/mpv/input.conf new file mode 100644 index 0000000..e0de762 --- /dev/null +++ b/dot_config/mpv/input.conf @@ -0,0 +1,7 @@ +l seek 5 +h seek -5 +j seek -60 +k seek 60 +S cycle sub +ALT+j add sub-scale -0.1 +ALT+k add sub-scale +0.1 diff --git a/dot_config/mpv/mpv.conf b/dot_config/mpv/mpv.conf new file mode 100644 index 0000000..ff66aed --- /dev/null +++ b/dot_config/mpv/mpv.conf @@ -0,0 +1 @@ +save-position-on-quit diff --git a/dot_config/mpv/private_watch_later/002476DCE9FB6921C4FC4FD2260E768C b/dot_config/mpv/private_watch_later/002476DCE9FB6921C4FC4FD2260E768C new file mode 100644 index 0000000..a2d5016 --- /dev/null +++ b/dot_config/mpv/private_watch_later/002476DCE9FB6921C4FC4FD2260E768C @@ -0,0 +1 @@ +start=68.531112 diff --git a/dot_config/mpv/private_watch_later/078BD038743E5C569FD9E487FA30565E b/dot_config/mpv/private_watch_later/078BD038743E5C569FD9E487FA30565E new file mode 100644 index 0000000..5c56a8d --- /dev/null +++ b/dot_config/mpv/private_watch_later/078BD038743E5C569FD9E487FA30565E @@ -0,0 +1 @@ +start=0.691015 diff --git a/dot_config/mpv/private_watch_later/137EDE3F0C09E218620CDD6191E4B2D3 b/dot_config/mpv/private_watch_later/137EDE3F0C09E218620CDD6191E4B2D3 new file mode 100644 index 0000000..c036340 --- /dev/null +++ b/dot_config/mpv/private_watch_later/137EDE3F0C09E218620CDD6191E4B2D3 @@ -0,0 +1 @@ +start=2.221569 diff --git a/dot_config/mpv/private_watch_later/17D95844B55D1D4597BDF6E9273FD376 b/dot_config/mpv/private_watch_later/17D95844B55D1D4597BDF6E9273FD376 new file mode 100644 index 0000000..2a8c350 --- /dev/null +++ b/dot_config/mpv/private_watch_later/17D95844B55D1D4597BDF6E9273FD376 @@ -0,0 +1 @@ +start=51.516583 diff --git a/dot_config/mpv/private_watch_later/1B255E528EC3F572709BB49ED4844B20 b/dot_config/mpv/private_watch_later/1B255E528EC3F572709BB49ED4844B20 new file mode 100644 index 0000000..8bad527 --- /dev/null +++ b/dot_config/mpv/private_watch_later/1B255E528EC3F572709BB49ED4844B20 @@ -0,0 +1 @@ +start=91.030379 diff --git a/dot_config/mpv/private_watch_later/3157DE7CCF940EF0477E7D35D4A96120 b/dot_config/mpv/private_watch_later/3157DE7CCF940EF0477E7D35D4A96120 new file mode 100644 index 0000000..b4bac61 --- /dev/null +++ b/dot_config/mpv/private_watch_later/3157DE7CCF940EF0477E7D35D4A96120 @@ -0,0 +1 @@ +start=4.284582 diff --git a/dot_config/mpv/private_watch_later/3C5DE48BF004CA7801F79FDF2B0B2D4E b/dot_config/mpv/private_watch_later/3C5DE48BF004CA7801F79FDF2B0B2D4E new file mode 100644 index 0000000..abe4dbe --- /dev/null +++ b/dot_config/mpv/private_watch_later/3C5DE48BF004CA7801F79FDF2B0B2D4E @@ -0,0 +1 @@ +start=3.269251 diff --git a/dot_config/mpv/private_watch_later/495B7355C35E9E5C0097CD6E5D2EEDED b/dot_config/mpv/private_watch_later/495B7355C35E9E5C0097CD6E5D2EEDED new file mode 100644 index 0000000..a10867e --- /dev/null +++ b/dot_config/mpv/private_watch_later/495B7355C35E9E5C0097CD6E5D2EEDED @@ -0,0 +1 @@ +start=16.242807 diff --git a/dot_config/mpv/private_watch_later/57382138AD7A1480799D411309088838 b/dot_config/mpv/private_watch_later/57382138AD7A1480799D411309088838 new file mode 100644 index 0000000..13b1f2a --- /dev/null +++ b/dot_config/mpv/private_watch_later/57382138AD7A1480799D411309088838 @@ -0,0 +1 @@ +start=30.280000 diff --git a/dot_config/mpv/private_watch_later/5DA45EDB38F1F9D192D1A48302DB1339 b/dot_config/mpv/private_watch_later/5DA45EDB38F1F9D192D1A48302DB1339 new file mode 100644 index 0000000..faca4b3 --- /dev/null +++ b/dot_config/mpv/private_watch_later/5DA45EDB38F1F9D192D1A48302DB1339 @@ -0,0 +1 @@ +start=1.889533 diff --git a/dot_config/mpv/private_watch_later/60BE57727223F94FD189B81F8AE87DB7 b/dot_config/mpv/private_watch_later/60BE57727223F94FD189B81F8AE87DB7 new file mode 100644 index 0000000..ea10245 --- /dev/null +++ b/dot_config/mpv/private_watch_later/60BE57727223F94FD189B81F8AE87DB7 @@ -0,0 +1 @@ +start=114.741427 diff --git a/dot_config/mpv/private_watch_later/703B80180712137EB546795B88465444 b/dot_config/mpv/private_watch_later/703B80180712137EB546795B88465444 new file mode 100644 index 0000000..b1e1f06 --- /dev/null +++ b/dot_config/mpv/private_watch_later/703B80180712137EB546795B88465444 @@ -0,0 +1 @@ +start=3.809317 diff --git a/dot_config/mpv/private_watch_later/7F86B714B30C792245874AD01DE6C306 b/dot_config/mpv/private_watch_later/7F86B714B30C792245874AD01DE6C306 new file mode 100644 index 0000000..80d218a --- /dev/null +++ b/dot_config/mpv/private_watch_later/7F86B714B30C792245874AD01DE6C306 @@ -0,0 +1,2 @@ +start=77.202589 +pause=yes diff --git a/dot_config/mpv/private_watch_later/880C95A9836AD865D3EB91FEDAF46AA3 b/dot_config/mpv/private_watch_later/880C95A9836AD865D3EB91FEDAF46AA3 new file mode 100644 index 0000000..9fab19b --- /dev/null +++ b/dot_config/mpv/private_watch_later/880C95A9836AD865D3EB91FEDAF46AA3 @@ -0,0 +1 @@ +start=113.058431 diff --git a/dot_config/mpv/private_watch_later/93D05E4790F31E14358E9A9553CF7EC3 b/dot_config/mpv/private_watch_later/93D05E4790F31E14358E9A9553CF7EC3 new file mode 100644 index 0000000..c21f8af --- /dev/null +++ b/dot_config/mpv/private_watch_later/93D05E4790F31E14358E9A9553CF7EC3 @@ -0,0 +1 @@ +start=2.835203 diff --git a/dot_config/mpv/private_watch_later/989E564F8C4E4B5A5462D1F17EC3B0C6 b/dot_config/mpv/private_watch_later/989E564F8C4E4B5A5462D1F17EC3B0C6 new file mode 100644 index 0000000..badd03d --- /dev/null +++ b/dot_config/mpv/private_watch_later/989E564F8C4E4B5A5462D1F17EC3B0C6 @@ -0,0 +1 @@ +start=63.311453 diff --git a/dot_config/mpv/private_watch_later/9A8940D9F6A2DAA710C1F28C06F25DE2 b/dot_config/mpv/private_watch_later/9A8940D9F6A2DAA710C1F28C06F25DE2 new file mode 100644 index 0000000..626f02d --- /dev/null +++ b/dot_config/mpv/private_watch_later/9A8940D9F6A2DAA710C1F28C06F25DE2 @@ -0,0 +1 @@ +start=10.733144 diff --git a/dot_config/mpv/private_watch_later/AAB8EB4AF1D4B0687ABFCABC7463CD8E b/dot_config/mpv/private_watch_later/AAB8EB4AF1D4B0687ABFCABC7463CD8E new file mode 100644 index 0000000..453ba31 --- /dev/null +++ b/dot_config/mpv/private_watch_later/AAB8EB4AF1D4B0687ABFCABC7463CD8E @@ -0,0 +1 @@ +start=750.500000 diff --git a/dot_config/mpv/private_watch_later/ADC1D9FD12EDD6783444770F64425DFB b/dot_config/mpv/private_watch_later/ADC1D9FD12EDD6783444770F64425DFB new file mode 100644 index 0000000..6728297 --- /dev/null +++ b/dot_config/mpv/private_watch_later/ADC1D9FD12EDD6783444770F64425DFB @@ -0,0 +1 @@ +start=0.849371 diff --git a/dot_config/mpv/private_watch_later/B933A6F015BBB85993AD8222DEFDE3E6 b/dot_config/mpv/private_watch_later/B933A6F015BBB85993AD8222DEFDE3E6 new file mode 100644 index 0000000..f1cc443 --- /dev/null +++ b/dot_config/mpv/private_watch_later/B933A6F015BBB85993AD8222DEFDE3E6 @@ -0,0 +1 @@ +start=7.595933 diff --git a/dot_config/mpv/private_watch_later/BAF20BF7197F58DA4D993B769D6BC040 b/dot_config/mpv/private_watch_later/BAF20BF7197F58DA4D993B769D6BC040 new file mode 100644 index 0000000..96e2488 --- /dev/null +++ b/dot_config/mpv/private_watch_later/BAF20BF7197F58DA4D993B769D6BC040 @@ -0,0 +1 @@ +start=15.608833 diff --git a/dot_config/mpv/private_watch_later/C1BEB8A1D291F6D9E316DF2382D62134 b/dot_config/mpv/private_watch_later/C1BEB8A1D291F6D9E316DF2382D62134 new file mode 100644 index 0000000..23de06f --- /dev/null +++ b/dot_config/mpv/private_watch_later/C1BEB8A1D291F6D9E316DF2382D62134 @@ -0,0 +1 @@ +start=81.845248 diff --git a/dot_config/mpv/private_watch_later/C2BA14BFE4FFBC6B4BCDB148CB73F059 b/dot_config/mpv/private_watch_later/C2BA14BFE4FFBC6B4BCDB148CB73F059 new file mode 100644 index 0000000..00a7380 --- /dev/null +++ b/dot_config/mpv/private_watch_later/C2BA14BFE4FFBC6B4BCDB148CB73F059 @@ -0,0 +1 @@ +start=65.838157 diff --git a/dot_config/mpv/private_watch_later/C6C919AF5D43EA8A9B0D0E1D6F64655D b/dot_config/mpv/private_watch_later/C6C919AF5D43EA8A9B0D0E1D6F64655D new file mode 100644 index 0000000..b073374 --- /dev/null +++ b/dot_config/mpv/private_watch_later/C6C919AF5D43EA8A9B0D0E1D6F64655D @@ -0,0 +1,2 @@ +start=108.905711 +pause=yes diff --git a/dot_config/mpv/private_watch_later/CBEAB7E5420B99CAEBBAB72BE5427D13 b/dot_config/mpv/private_watch_later/CBEAB7E5420B99CAEBBAB72BE5427D13 new file mode 100644 index 0000000..cca1b07 --- /dev/null +++ b/dot_config/mpv/private_watch_later/CBEAB7E5420B99CAEBBAB72BE5427D13 @@ -0,0 +1,2 @@ +start=132.966000 +fullscreen=yes diff --git a/dot_config/mpv/private_watch_later/DB1062B7A8F4BEA460CD8F90B5759C6D b/dot_config/mpv/private_watch_later/DB1062B7A8F4BEA460CD8F90B5759C6D new file mode 100644 index 0000000..45343e2 --- /dev/null +++ b/dot_config/mpv/private_watch_later/DB1062B7A8F4BEA460CD8F90B5759C6D @@ -0,0 +1 @@ +start=76.692329 diff --git a/dot_config/mpv/private_watch_later/E35D4A3CCC75A34A2F822E77EC39091D b/dot_config/mpv/private_watch_later/E35D4A3CCC75A34A2F822E77EC39091D new file mode 100644 index 0000000..52083ba --- /dev/null +++ b/dot_config/mpv/private_watch_later/E35D4A3CCC75A34A2F822E77EC39091D @@ -0,0 +1 @@ +start=61.467724 diff --git a/dot_config/mpv/private_watch_later/E8796243DD578DF365C2F07D63FFCEF0 b/dot_config/mpv/private_watch_later/E8796243DD578DF365C2F07D63FFCEF0 new file mode 100644 index 0000000..417f209 --- /dev/null +++ b/dot_config/mpv/private_watch_later/E8796243DD578DF365C2F07D63FFCEF0 @@ -0,0 +1 @@ +start=22.213736 diff --git a/dot_config/mpv/private_watch_later/EF79945E52B961025E89BDB8FCD50F1A b/dot_config/mpv/private_watch_later/EF79945E52B961025E89BDB8FCD50F1A new file mode 100644 index 0000000..2e9f6f7 --- /dev/null +++ b/dot_config/mpv/private_watch_later/EF79945E52B961025E89BDB8FCD50F1A @@ -0,0 +1 @@ +start=0.976121 diff --git a/dot_config/mpv/private_watch_later/F6357D506EF45579F6FE322F6EA9CA80 b/dot_config/mpv/private_watch_later/F6357D506EF45579F6FE322F6EA9CA80 new file mode 100644 index 0000000..7c3f321 --- /dev/null +++ b/dot_config/mpv/private_watch_later/F6357D506EF45579F6FE322F6EA9CA80 @@ -0,0 +1 @@ +start=145.638323 diff --git a/dot_config/mpv/private_watch_later/F6A0472E127CFF5491AE3176D7F528D2 b/dot_config/mpv/private_watch_later/F6A0472E127CFF5491AE3176D7F528D2 new file mode 100644 index 0000000..d302d0e --- /dev/null +++ b/dot_config/mpv/private_watch_later/F6A0472E127CFF5491AE3176D7F528D2 @@ -0,0 +1 @@ +start=62.791832 diff --git a/dot_config/mpv/private_watch_later/F73C7999BD59909E1A9937883A94842C b/dot_config/mpv/private_watch_later/F73C7999BD59909E1A9937883A94842C new file mode 100644 index 0000000..56fa937 --- /dev/null +++ b/dot_config/mpv/private_watch_later/F73C7999BD59909E1A9937883A94842C @@ -0,0 +1 @@ +start=93.790997 diff --git a/dot_config/mpv/private_watch_later/F7E223B988F2E53B693299FF04AF856A b/dot_config/mpv/private_watch_later/F7E223B988F2E53B693299FF04AF856A new file mode 100644 index 0000000..c05a00e --- /dev/null +++ b/dot_config/mpv/private_watch_later/F7E223B988F2E53B693299FF04AF856A @@ -0,0 +1 @@ +start=75.333240 diff --git a/dot_config/zathura/zathurarc b/dot_config/zathura/zathurarc new file mode 100644 index 0000000..9fa50ca --- /dev/null +++ b/dot_config/zathura/zathurarc @@ -0,0 +1,12 @@ +set statusbar-h-padding 0 +set statusbar-v-padding 0 +set page-padding 1 +map u scroll half-up +map d scroll half-down +map D toggle_page_mode +map r reload +map R rotate +map K zoom in +map J zoom out +map i recolor +map p print |