diff --git a/i3/config b/i3/config index cc192c6..7d028c7 100644 --- a/i3/config +++ b/i3/config @@ -176,7 +176,7 @@ mode "resize" { bindsym $mod+r mode "default" } -bindsym $mod+r mode "resize" +bindsym $mod+r mode "resize"w # --- Key binding overrides --- # @@ -186,18 +186,16 @@ bindsym $mod+Ctrl+h split v # split in vertical orientation bindsym $mod+Ctrl+v split h -# --- Dropdown terminal (Guake) -# - # Set Guake to work as floating window for_window [instance="guake"] floating enable # --- Task switcher (Rofi) -# # Launch window switcher -bindsym $mod+space exec rofi -show window +bindsym $mod+space exec rofi -show drun # Launch applications -bindsym $sup+space exec rofi -show run +bindsym $mod+Tab exec rofi -show window diff --git a/polybar/config.ini b/polybar/config.ini index 3a66e0d..35f2e5e 100644 --- a/polybar/config.ini +++ b/polybar/config.ini @@ -145,6 +145,9 @@ interval = 3.0 format-connected = format-connected-underline = #47577e label-connected = %essid% +label-disconnected ="No connection" +format-prefix-disconnected =  +label-disconnected-padding = 1 label-connected-padding = 1 ramp-signal-0 =  ramp-signal-1 =  diff --git a/rofi/config.rasi b/rofi/config.rasi index dc93cc1..7eebf21 100644 --- a/rofi/config.rasi +++ b/rofi/config.rasi @@ -145,4 +145,5 @@ configuration { sorting-method: "name"; } } -@theme "/usr/share/rofi/themes/lb.rasi" +//@theme "/home/thomas/.local/share/rofi/themes/rounded-gray-dark.rasi" +@theme "/home/thomas/.local/share/rofi/themes/alien-blood.rasi" diff --git a/vscode/settings.json b/vscode/settings.json index 93dd666..c49c3ed 100644 --- a/vscode/settings.json +++ b/vscode/settings.json @@ -1,5 +1,5 @@ { - "editor.fontFamily": "Fira Code", + "editor.fontFamily": "Liberation Mono", "editor.fontLigatures": true, "editor.fontSize": 12, "editor.fontWeight": 400, diff --git a/x/xinit-bak b/x/xinit-bak deleted file mode 100644 index 51c8c6d..0000000 --- a/x/xinit-bak +++ /dev/null @@ -1,65 +0,0 @@ -#!/bin/sh - -userresources=$HOME/.Xresources -usermodmap=$HOME/.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 - - -#### Custom ######## - -# Set external monitor config -xrandr --output VGA1 --primary --above LVDS1 - -# Set UK keyboard -setxkbmap gb - -# Set custom keybindings -xmodmap ~/.Xmodmap - -# Start i3 window manager -exec i3 -