From b79dcb8585e77535160784fd32243b023e12873f Mon Sep 17 00:00:00 2001 From: Adam <56338480+adastx@users.noreply.github.com> Date: Sun, 31 Oct 2021 17:58:10 +0100 Subject: Cleaned home dir, cleaned xinit, ls -> exa, cvim alias --- .config/X11/Xresources | 1 + .config/X11/xinitrc | 35 +++++++++++++++++++++++++++++++++++ .config/i3/after | 5 +++++ .config/i3/config | 4 ++-- .config/i3/custom/screenshot | 4 ---- .config/i3/extra/screenshot | 4 ++++ .config/i3/init | 13 +++++++++++++ .config/polybar/launch | 13 +++++++++++++ .config/polybar/launch.sh | 13 ------------- .config/readline/inputrc | 1 + 10 files changed, 74 insertions(+), 19 deletions(-) create mode 100644 .config/X11/Xresources create mode 100755 .config/X11/xinitrc create mode 100755 .config/i3/after delete mode 100755 .config/i3/custom/screenshot create mode 100755 .config/i3/extra/screenshot create mode 100644 .config/i3/init create mode 100755 .config/polybar/launch delete mode 100755 .config/polybar/launch.sh create mode 100644 .config/readline/inputrc (limited to '.config') diff --git a/.config/X11/Xresources b/.config/X11/Xresources new file mode 100644 index 0000000..3f90eb3 --- /dev/null +++ b/.config/X11/Xresources @@ -0,0 +1 @@ +Xft.dpi: 108 diff --git a/.config/X11/xinitrc b/.config/X11/xinitrc new file mode 100755 index 0000000..c4b828a --- /dev/null +++ b/.config/X11/xinitrc @@ -0,0 +1,35 @@ +#!/bin/sh + +userresources=$XDG_CONFIG_HOME/X11/Xresources +usermodmap=$XDG_CONFIG_HOME/X11/Xmodmap +sysresources=/etc/X11/xinit/.Xresources +sysmodmap=/etc/X11/xinit/.Xmodmap + +# merge in defaults and keymaps + +if [ -f $sysresources ]; then + xrdb -merge $sysresources +fi + +if [ -f $sysmodmap ]; then + xmodmap $sysmodmap +fi + +if [ -f "$userresources" ]; then + xrdb -merge "$userresources" +fi + +if [ -f "$usermodmap" ]; then + xmodmap "$usermodmap" +fi + +# start some nice programs + +if [ -d /etc/X11/xinit/xinitrc.d ] ; then + for f in /etc/X11/xinit/xinitrc.d/?*.sh ; do + [ -x "$f" ] && . "$f" + done + unset f +fi + +source $HOME/.config/i3/init diff --git a/.config/i3/after b/.config/i3/after new file mode 100755 index 0000000..10edd01 --- /dev/null +++ b/.config/i3/after @@ -0,0 +1,5 @@ +#!/bin/sh + +xset r rate 300 25 & +gtk-launch piavpn & +openrgb -p no-rgb & diff --git a/.config/i3/config b/.config/i3/config index e4f41e5..533c0c3 100644 --- a/.config/i3/config +++ b/.config/i3/config @@ -16,7 +16,7 @@ bindsym $mod+Return exec --no-startup-id alacritty bindsym $mod+b exec --no-startup-id firefox bindsym $mod+e exec --no-startup-id pcmanfm bindsym $mod+f fullscreen toggle -bindsym $mod+Shift+s exec --no-startup-id ~/.config/i3/custom/screenshot +bindsym $mod+Shift+s exec --no-startup-id ~/.config/i3/extra/screenshot bindsym $mod+d exec --no-startup-id rofi -show drun -show-icons -drun-display-format {name} bindsym $alt+Tab exec --no-startup-id rofi -show window -show-icons -drun-display-format {name} @@ -161,6 +161,6 @@ for_window [title="^Steam Keyboard$"] floating enable ##### Exec -exec_always --no-startup-id $HOME/.config/polybar/launch.sh +exec_always --no-startup-id $HOME/.config/polybar/launch exec_always --no-startup-id picom --config $HOME/.config/picom/picom.conf -b exec_always --no-startup-id setxkbmap -option grp:win_space_toggle us,dk diff --git a/.config/i3/custom/screenshot b/.config/i3/custom/screenshot deleted file mode 100755 index 9a443b1..0000000 --- a/.config/i3/custom/screenshot +++ /dev/null @@ -1,4 +0,0 @@ -#!/bin/sh - -sleep 0.2 -scrot -sfe 'xclip -selection c -t image/png < $f; mv $f ~/Pictures/screenshots/' diff --git a/.config/i3/extra/screenshot b/.config/i3/extra/screenshot new file mode 100755 index 0000000..9a443b1 --- /dev/null +++ b/.config/i3/extra/screenshot @@ -0,0 +1,4 @@ +#!/bin/sh + +sleep 0.2 +scrot -sfe 'xclip -selection c -t image/png < $f; mv $f ~/Pictures/screenshots/' diff --git a/.config/i3/init b/.config/i3/init new file mode 100644 index 0000000..0d3d123 --- /dev/null +++ b/.config/i3/init @@ -0,0 +1,13 @@ +#!/bin/sh + +greenclip daemon & +playerctld daemon & +nitrogen --restore & +redshift -l 56:10 & +pcmanfm -d & +nm-applet & +exec i3 & wmpid=$! + +sleep 5 +source $HOME/.config/i3/after +wait $wmpid diff --git a/.config/polybar/launch b/.config/polybar/launch new file mode 100755 index 0000000..ff5065a --- /dev/null +++ b/.config/polybar/launch @@ -0,0 +1,13 @@ +#!/usr/bin/env bash + +# Terminate already running bar instances +killall -q polybar +# If all your bars have ipc enabled, you can also use +# polybar-msg cmd quit + +# Launch bar1 +echo "---" | tee -a /tmp/polybar1.log /tmp/polybar2.log +polybar bar1 2>&1 | tee -a /tmp/polybar1.log & disown +polybar bar2 2>&1 | tee -a /tmp/polybar2.log & disown + +echo "Bars launched..." diff --git a/.config/polybar/launch.sh b/.config/polybar/launch.sh deleted file mode 100755 index ff5065a..0000000 --- a/.config/polybar/launch.sh +++ /dev/null @@ -1,13 +0,0 @@ -#!/usr/bin/env bash - -# Terminate already running bar instances -killall -q polybar -# If all your bars have ipc enabled, you can also use -# polybar-msg cmd quit - -# Launch bar1 -echo "---" | tee -a /tmp/polybar1.log /tmp/polybar2.log -polybar bar1 2>&1 | tee -a /tmp/polybar1.log & disown -polybar bar2 2>&1 | tee -a /tmp/polybar2.log & disown - -echo "Bars launched..." diff --git a/.config/readline/inputrc b/.config/readline/inputrc new file mode 100644 index 0000000..236bfdd --- /dev/null +++ b/.config/readline/inputrc @@ -0,0 +1 @@ +set completion-ignore-case on -- cgit v1.2.3-70-g09d2