summaryrefslogtreecommitdiff
path: root/.config
diff options
context:
space:
mode:
authoryuzu-eva <stevenhu@web.de>2023-10-30 23:18:43 +0100
committeryuzu-eva <stevenhu@web.de>2023-10-30 23:18:43 +0100
commit3eb1eacde6c6c4b54e7fef2285c115a3d35d1ae8 (patch)
treef478b62de2651e53e57437b1f439191e00c9ecf3 /.config
parent84f8c56dd5625dde193fe75be15ca606631e4606 (diff)
added i3 to tracked files
Diffstat (limited to '.config')
-rw-r--r--.config/i3/config156
-rw-r--r--.config/i3status/config48
-rw-r--r--.config/neofetch/config.conf1
-rw-r--r--.config/shell/aliasrc2
-rw-r--r--.config/shell/profile1
-rwxr-xr-x.config/sxiv/exec/key-handler9
6 files changed, 206 insertions, 11 deletions
diff --git a/.config/i3/config b/.config/i3/config
new file mode 100644
index 0000000..39968b6
--- /dev/null
+++ b/.config/i3/config
@@ -0,0 +1,156 @@
+# 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:Hack Nerd Font 10
+
+for_window [class="floating"] floating enable
+
+# Use wpctl to adjust volume in Pipewire.
+set $refresh_i3status killall -SIGUSR1 i3status
+bindsym XF86AudioRaiseVolume exec --no-startup-id wpctl set-volume @DEFAULT_SINK@ 5%+ && $refresh_i3status
+bindsym XF86AudioLowerVolume exec --no-startup-id wpctl set-volume @DEFAULT_SINK@ 5%- && $refresh_i3status
+bindsym XF86AudioMute exec --no-startup-id wpctl set-mute @DEFAULT_SINK@ toggle && $refresh_i3status
+bindsym XF86AudioMicMute exec --no-startup-id wpctl set-mute @DEFAULT_SOURCE@ toggle && $refresh_i3status
+bindsym XF86AudioNext exec --no-startup-id mpc next
+bindsym XF86AudioPrev exec --no-startup-id mpc prev
+bindsym XF86AudioPlay exec --no-startup-id mpc toggle
+
+# # Use Mouse+$mod to drag floating windows to their wanted position
+floating_modifier $mod
+
+# # move tiling windows via drag & drop by left-clicking into the title bar,
+# # or left-clicking anywhere into the window while holding the floating modifier.
+tiling_drag modifier titlebar
+
+# start a terminal
+bindsym $mod+Return exec urxvtc
+
+# start dmenu
+bindsym $mod+p exec --no-startup-id dmenu_run -fn "Hack Nerd Font:size=11" -nb "#222222" -nf "#bbbbbb" -sb "#005577" -sf "#eeeeee"
+
+# kill focused window
+bindsym $mod+Shift+C kill
+
+# application launchers
+bindsym $mod+Shift+F exec firefox -P default-release
+bindsym $mod+Shift+B exec firefox -P less-strict
+bindsym $mod+Shift+E exec emacsclient -c -a "emacs"
+bindsym $mod+c exec mpdmenu
+bindsym $mod+Shift+M exec mpdinfo
+bindsym --release Print exec scrot -u -e 'mv $f ~/pics/'
+bindsym --release $mod+Print exec scrot -s -e 'mv $f ~/pics/'
+
+# 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+s split v
+
+# split in vertical orientation
+bindsym $mod+v split h
+
+# enter fullscreen mode for the focused container
+bindsym $mod+f fullscreen toggle
+
+# change container layout (stacked, tabbed, toggle split)
+bindsym $mod+comma layout stacking
+bindsym $mod+t layout tabbed
+bindsym $mod+period 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"
+
+# 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
+
+# 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
+
+# reload the configuration file
+bindsym $mod+Shift+O 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+Control+Q 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 {
+ position top
+ status_command i3status
+}
diff --git a/.config/i3status/config b/.config/i3status/config
new file mode 100644
index 0000000..8fb7d28
--- /dev/null
+++ b/.config/i3status/config
@@ -0,0 +1,48 @@
+# 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
+ interval = 5
+}
+
+order += "ethernet eth0"
+order += "disk /"
+order += "load"
+order += "memory"
+order += "volume master"
+order += "tztime local"
+
+ethernet eth0{
+ format_up = "eth0: %ip (%speed)"
+ format_down = "eth0: down"
+}
+
+disk "/" {
+ format = "root: %avail"
+}
+
+load {
+ format = "Load: %1min"
+}
+
+memory {
+ format = "Memory: %used/%total"
+ threshold_degraded = "3GB"
+ format_degraded = "MEMORY < %available"
+}
+
+volume master {
+ format = "♪: %volume"
+ format_muted = "♪: muted (%volume)"
+ device = "default"
+}
+
+tztime local {
+ format = "%A, %Y-%m-%d %H:%M"
+}
diff --git a/.config/neofetch/config.conf b/.config/neofetch/config.conf
index 14bb86b..00a22e0 100644
--- a/.config/neofetch/config.conf
+++ b/.config/neofetch/config.conf
@@ -3,7 +3,6 @@
print_info() {
info title
- prin "\n"
prin "${cl9}┌─────────────────────────────────────────────────────┐"
info "\n \n " distro
info "\n \n " model
diff --git a/.config/shell/aliasrc b/.config/shell/aliasrc
index e6a5114..0599553 100644
--- a/.config/shell/aliasrc
+++ b/.config/shell/aliasrc
@@ -146,7 +146,7 @@ alias dpush='dfiles push origin'
# package manager
alias aptsr='apt search'
alias aptin='sudo apt install'
-alias aptrm='sudo apt remove'
+alias aptrm='sudo apt remove --autoremove'
alias aptupd='sudo apt update'
alias aptupg='sudo apt upgrade'
alias aptup='aptupd && aptupg'
diff --git a/.config/shell/profile b/.config/shell/profile
index 397b25a..075c5dd 100644
--- a/.config/shell/profile
+++ b/.config/shell/profile
@@ -27,6 +27,7 @@ export EIX_LIMIT_COMPACT=0
export LC_ALL=en_US.utf8
+export LD_LIBRARY_PATH="/usr/lib:/usr/local/lib"
export PATH="$PATH:$HOME/.local/bin:$HOME/.fzf/bin:/sbin:/usr/sbin"
neofetch
diff --git a/.config/sxiv/exec/key-handler b/.config/sxiv/exec/key-handler
deleted file mode 100755
index 7539f88..0000000
--- a/.config/sxiv/exec/key-handler
+++ /dev/null
@@ -1,9 +0,0 @@
-#!/usr/bin/env bash
-
-while read -r file
-do
- case "$1" in
- "C-d") rm "$file" ;;
- "C-c") cat "$file" | xclip -sel c -t image/png ;;
- esac
-done