aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-x.config/bspwm/bspwmrc2
-rw-r--r--.config/i3/config2
-rw-r--r--.config/newsboat/config8
-rw-r--r--.config/sway/config25
-rw-r--r--.config/tmux/tmux.conf2
5 files changed, 26 insertions, 13 deletions
diff --git a/.config/bspwm/bspwmrc b/.config/bspwm/bspwmrc
index 50be079..683bcee 100755
--- a/.config/bspwm/bspwmrc
+++ b/.config/bspwm/bspwmrc
@@ -3,7 +3,7 @@
export SXHKD_SHELL=sh
pgrep -x sxhkd > /dev/null || sxhkd &
-$HOME/.config/polybar/launch.sh &
+${XDG_CONFIG_HOME:-~/.config}/polybar/launch.sh &
feh --auto-reload --bg-fill /usr/share/backgrounds/background.png &
dunst &
diff --git a/.config/i3/config b/.config/i3/config
index 382e9f7..5563d24 100644
--- a/.config/i3/config
+++ b/.config/i3/config
@@ -235,7 +235,7 @@ bindsym $mod+r mode "resize"
# Status Bar:
-exec_always --no-startup-id $HOME/.config/polybar/launch.sh
+exec_always --no-startup-id ${XDG_CONFIG_HOME:-~/.config}/polybar/launch.sh
exec dunst
exec nm-applet --indicator
diff --git a/.config/newsboat/config b/.config/newsboat/config
index 0873111..4ca9207 100644
--- a/.config/newsboat/config
+++ b/.config/newsboat/config
@@ -1,12 +1,13 @@
# vi: ft=config
# general settings
auto-reload false
-max-items 0
+reload-threads 400
+max-items 200
scrolloff 5
# externel browser
#browser "w3m %u"
-browser "xdg-open %u"
+browser "$XDG_CONFIG_HOME/newsboat/custom-xdg-open %u"
unbind-key n
bind-key n next-unread
@@ -41,6 +42,9 @@ bind-key g home
unbind-key G
bind-key G end
+unbind-key m
+bind-key m toggle-article-read
+
# highlights
highlight article "^(Feed|Title|Author|Link|Date): .+" blue default bold
highlight article "^(Feed|Title|Author|Link|Date):" green default bold
diff --git a/.config/sway/config b/.config/sway/config
index 57d2cf1..9a12360 100644
--- a/.config/sway/config
+++ b/.config/sway/config
@@ -191,11 +191,16 @@ input "1699:32801:Chicony_Saitek_Eclipse_II_Keyboard" xkb_layout gb,no
bindsym $mod+Shift+$down move down
bindsym $mod+Shift+$up move up
bindsym $mod+Shift+$right move right
- # Ditto, with arrow 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
+ # Resize
+ bindsym $mod+Ctrl+Down resize shrink height 10
+ bindsym $mod+Ctrl+Up resize grow height 10
+ bindsym $mod+Ctrl+Right resize shrink width 10
+ bindsym $mod+Ctrl+Left resize grow width 10
+ # Ditto
+ bindsym $mod+Ctrl+$down resize shrink height 10
+ bindsym $mod+Ctrl+$up resize grow height 10
+ bindsym $mod+Ctrl+$right resize shrink width 10
+ bindsym $mod+Ctrl+$left resize grow width 10
#
# Workspaces:
#
@@ -224,6 +229,9 @@ input "1699:32801:Chicony_Saitek_Eclipse_II_Keyboard" xkb_layout gb,no
bindsym $mod+Shift+8 move container to workspace number 8
bindsym $mod+Shift+9 move container to workspace number 9
bindsym $mod+Shift+0 move container to workspace number 10
+
+ bindsym $mod+Shift+Left move container to workspace prev
+ bindsym $mod+Shift+Right move container to workspace next
# Note: workspaces can have any name you want, not just numbers.
# We just use 1-10 as the default.
#
@@ -307,14 +315,15 @@ input "type:touchpad" {
output $laptop_screen enable
-exec_always $HOME/.config/sway/clamshell.sh
+exec_always ${XDG_CONFIG_HOME:-~/.config}/sway/clamshell.sh
exec dbus-update-activation-environment --systemd DISPLAY WAYLAND_DISPLAY SWAYSOCK
exec dunst
exec nm-applet --indicator
exec blueman-applet
exec thunar --daemon
-#exec pipewire
-#exec pipewire-pulse
+exec pipewire
+exec pipewire-pulse
+exec wireplumber
exec gentoo-pipewire-launcher
exec foot --server
diff --git a/.config/tmux/tmux.conf b/.config/tmux/tmux.conf
index e68c4d6..51fd10c 100644
--- a/.config/tmux/tmux.conf
+++ b/.config/tmux/tmux.conf
@@ -22,5 +22,5 @@ set -g base-index 1
bind-key b set-option status
set -g lock-command vlock
bind L lock-session
-bind R 'source-file ~/.config/tmux/tmux.conf; display-message "source-file done"'
+bind R 'source-file $XDG_CONFIG_HOME/tmux/tmux.conf; display-message "source-file done"'