diff --git a/de/app-launcher b/de/app-launcher new file mode 100755 index 0000000..a82d485 --- /dev/null +++ b/de/app-launcher @@ -0,0 +1,9 @@ +#!/usr/bin/env bash + +LAUNCHER_FONT=$(xrdb -query | sed -ne 's/.*font:\s*xft:\(.*\)\-.*$/\1/p' | head -n 1) +LAUNCHER_FONT_SIZE=$(xrdb -query | sed -ne 's/.*font:\s*xft:.*\-\(.*\)$/\1/p' | head -n 1) +HIGHLIGHT_COLOR=$(xrdb -query | sed -ne 's/.*color1*:\s*\(.*\)$/\1/p' | head -n 1) +BACKGROUND_COLOR=$(xrdb -query | sed -ne 's/.*background:\s*\(.*\)$/\1/p' | head -n 1) +FOREGROUND_COLOR=$(xrdb -query | sed -ne 's/.*foreground:\s*\(.*\)$/\1/p' | head -n 1) + +rofi -show run -font "$LAUNCHER_FONT $LAUNCHER_FONT_SIZE" -lines 16 -width 10 -padding 8 -fuzzy -bw "$BORDER_WIDTH" -color-enabled -color-window "$BACKGROUND_COLOR","$HIGHLIGHT_COLOR","$HIGHLIGHT_COLOR","$BACKGROUND_COLOR" -color-normal "$BACKGROUND_COLOR","$FOREGROUND_COLOR","$BACKGROUND_COLOR","$HIGHLIGHT_COLOR","$FOREGROUND_COLOR" -separator-style none -hide-scrollbar diff --git a/de/bspwmrc b/de/bspwmrc index 01fdea2..d267d02 100755 --- a/de/bspwmrc +++ b/de/bspwmrc @@ -25,11 +25,6 @@ if command -v urxvtd >/dev/null 2>&1; then fi if command -v sxhkd >/dev/null 2>&1; then - export LAUNCHER_FONT=$(xrdb -query | sed -ne 's/.*font:\s*xft:\(.*\)\-.*$/\1/p' | head -n 1) - export LAUNCHER_FONT_SIZE=$(xrdb -query | sed -ne 's/.*font:\s*xft:.*\-\(.*\)$/\1/p' | head -n 1) - export HIGHLIGHT_COLOR=$(xrdb -query | sed -ne 's/.*color1*:\s*\(.*\)$/\1/p' | head -n 1) - export BACKGROUND_COLOR=$(xrdb -query | sed -ne 's/.*background:\s*\(.*\)$/\1/p' | head -n 1) - export FOREGROUND_COLOR=$(xrdb -query | sed -ne 's/.*foreground:\s*\(.*\)$/\1/p' | head -n 1) # export HIGHLIGHT_COLOR=$(xrdb -query | sed -ne 's/.*font:\s*xft:.*\-\(.*\)$/\1/p' | head -n 1) sxhkd & fi diff --git a/de/sxhkdrc b/de/sxhkdrc index 08671d0..66e658e 100755 --- a/de/sxhkdrc +++ b/de/sxhkdrc @@ -166,7 +166,7 @@ super + shift + Return # spawn the app launcher super + space - rofi -show run -font "$LAUNCHER_FONT $LAUNCHER_FONT_SIZE" -lines 16 -width 10 -padding 8 -fuzzy -bw "$BORDER_WIDTH" -color-enabled -color-window "$BACKGROUND_COLOR","$HIGHLIGHT_COLOR","$HIGHLIGHT_COLOR","$BACKGROUND_COLOR" -color-normal "$BACKGROUND_COLOR","$FOREGROUND_COLOR","$BACKGROUND_COLOR","$HIGHLIGHT_COLOR","$FOREGROUND_COLOR" -separator-style none -hide-scrollbar + "$DOTFILES_PATH/de/app-launcher" # lock the desktop super + ctrl + shift + l diff --git a/os-specific/arch-linux/provisioning/2-essentials.bash b/os-specific/arch-linux/provisioning/2-essentials.bash index e1f3a10..abb8fbf 100755 --- a/os-specific/arch-linux/provisioning/2-essentials.bash +++ b/os-specific/arch-linux/provisioning/2-essentials.bash @@ -11,6 +11,7 @@ sudo pacman -S \ openssl \ ruby \ python python-pip \ + python2 python2-pip \ pass \ qutebrowser \ bash-completion \ @@ -39,5 +40,8 @@ pacaur -S \ siji-git terminus-font ttf-monaco gohufont artwiz-fonts phallus-fonts-git \ --noconfirm --noedit +sudo pip3 install neovim +sudo pip2 install neovim + # sudo ln -s /usr/bin/google-chrome-unstable /usr/bin/chrome diff --git a/readme.md b/readme.md index e920d82..c6d0222 100644 --- a/readme.md +++ b/readme.md @@ -78,3 +78,5 @@ Here are some bullet points on my workflow as a Web Developer: * Add a file containing common variables in `common/`. * Add more content to the other sections? +* GTK theme +* Disable caps lock?