summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xbin/.bin/disp1
-rwxr-xr-xpolybar/.config/polybar/config2
-rwxr-xr-xranger/.config/ranger/rc.conf2
-rwxr-xr-xtmux/.tmux.conf2
-rwxr-xr-xx/.Xresources2
-rwxr-xr-xzsh/.zshrc8
6 files changed, 12 insertions, 5 deletions
diff --git a/bin/.bin/disp b/bin/.bin/disp
index 1ebbd8d..618f93f 100755
--- a/bin/.bin/disp
+++ b/bin/.bin/disp
@@ -2,7 +2,6 @@
2 2
3status=$(cat /sys/class/drm/card0/*HDMI*/status) 3status=$(cat /sys/class/drm/card0/*HDMI*/status)
4if [ $status == "connected" ]; then 4if [ $status == "connected" ]; then
5 # xrandr --output eDP-1 --mode 1920x1080 --pos 0x1076 --rotate normal --output HDMI-1 --primary --mode 1366x768 --scale 1.4x1.4 --pos 0x0 --rotate normal --output DP-1 --off
6 xrandr --output eDP-1 --mode 1920x1080 --pos 0x768 --scale 1 --output HDMI-1 --primary --mode 1366x768 --pos 318x0 --scale 1 5 xrandr --output eDP-1 --mode 1920x1080 --pos 0x768 --scale 1 --output HDMI-1 --primary --mode 1366x768 --pos 318x0 --scale 1
7 bspc wm -r 6 bspc wm -r
8else 7else
diff --git a/polybar/.config/polybar/config b/polybar/.config/polybar/config
index b5c486a..c4205e3 100755
--- a/polybar/.config/polybar/config
+++ b/polybar/.config/polybar/config
@@ -3,7 +3,7 @@ screenchange-reload = true
3 3
4[colors] 4[colors]
5;background = ${xrdb:background:#060808} 5;background = ${xrdb:background:#060808}
6background = #171a1f 6background = #00171a1f
7background-alt = ${xrdb:color0:#000} 7background-alt = ${xrdb:color0:#000}
8;foreground = ${xrdb:foreground:#c5c8c6} 8;foreground = ${xrdb:foreground:#c5c8c6}
9foreground = #b7b7b7 9foreground = #b7b7b7
diff --git a/ranger/.config/ranger/rc.conf b/ranger/.config/ranger/rc.conf
index a209c77..21506c1 100755
--- a/ranger/.config/ranger/rc.conf
+++ b/ranger/.config/ranger/rc.conf
@@ -348,7 +348,7 @@ map ! console shell%space
348map @ console -p6 shell %%s 348map @ console -p6 shell %%s
349map # console shell -p%space 349map # console shell -p%space
350map s console shell%space 350map s console shell%space
351map r chain draw_possible_programs; console open_with%%space 351map r chain draw_possible_programs; console open_with%space
352map f console find%space 352map f console find%space
353map cd console cd%space 353map cd console cd%space
354 354
diff --git a/tmux/.tmux.conf b/tmux/.tmux.conf
index 175df16..7730a8c 100755
--- a/tmux/.tmux.conf
+++ b/tmux/.tmux.conf
@@ -37,4 +37,4 @@ set -g window-status-current-format "#[fg=colour15] #W"
37set -g window-status-format "#[fg=colour8] #W" 37set -g window-status-format "#[fg=colour8] #W"
38 38
39set -g status-left-length 100 39set -g status-left-length 100
40set -ag status-left "#[fg=colour8]bat #[fg=colour15]#(~/.bin/bat) " 40set -ag status-left "#[fg=colour8]bat #[fg=colour15]#(~/.bin/batc) "
diff --git a/x/.Xresources b/x/.Xresources
index 041af28..7008466 100755
--- a/x/.Xresources
+++ b/x/.Xresources
@@ -1,6 +1,6 @@
1! special 1! special
2*.foreground: #FFF 2*.foreground: #FFF
3*.background: #171a1f 3*.background: #1d2021
4*.cursorColor: #F8F8F2 4*.cursorColor: #F8F8F2
5 5
6! black 6! black
diff --git a/zsh/.zshrc b/zsh/.zshrc
index fa6a5c2..e987a0e 100755
--- a/zsh/.zshrc
+++ b/zsh/.zshrc
@@ -69,6 +69,14 @@ findstr() {
69 find . -type f -exec grep -H "$1" {} \; 69 find . -type f -exec grep -H "$1" {} \;
70} 70}
71 71
72revid() {
73 ffmpeg -i $1 -vf reverse -qp 16 $2
74}
75
76slowvid() {
77 ffmpeg -i $1 -vf "setpts=0.5*PTS" $2
78}
79
72# Enable colors and change prompt: 80# Enable colors and change prompt:
73autoload -U colors && colors 81autoload -U colors && colors
74fpath+=$HOME/.cache/zsh/pure 82fpath+=$HOME/.cache/zsh/pure