app-launcher, some other laptop fixes
This commit is contained in:
parent
e1c88a1392
commit
bdc6f2dc25
9
de/app-launcher
Executable file
9
de/app-launcher
Executable file
|
@ -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
|
|
@ -25,11 +25,6 @@ if command -v urxvtd >/dev/null 2>&1; then
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if command -v sxhkd >/dev/null 2>&1; then
|
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)
|
# export HIGHLIGHT_COLOR=$(xrdb -query | sed -ne 's/.*font:\s*xft:.*\-\(.*\)$/\1/p' | head -n 1)
|
||||||
sxhkd &
|
sxhkd &
|
||||||
fi
|
fi
|
||||||
|
|
|
@ -166,7 +166,7 @@ super + shift + Return
|
||||||
|
|
||||||
# spawn the app launcher
|
# spawn the app launcher
|
||||||
super + space
|
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
|
# lock the desktop
|
||||||
super + ctrl + shift + l
|
super + ctrl + shift + l
|
||||||
|
|
|
@ -11,6 +11,7 @@ sudo pacman -S \
|
||||||
openssl \
|
openssl \
|
||||||
ruby \
|
ruby \
|
||||||
python python-pip \
|
python python-pip \
|
||||||
|
python2 python2-pip \
|
||||||
pass \
|
pass \
|
||||||
qutebrowser \
|
qutebrowser \
|
||||||
bash-completion \
|
bash-completion \
|
||||||
|
@ -39,5 +40,8 @@ pacaur -S \
|
||||||
siji-git terminus-font ttf-monaco gohufont artwiz-fonts phallus-fonts-git \
|
siji-git terminus-font ttf-monaco gohufont artwiz-fonts phallus-fonts-git \
|
||||||
--noconfirm --noedit
|
--noconfirm --noedit
|
||||||
|
|
||||||
|
sudo pip3 install neovim
|
||||||
|
sudo pip2 install neovim
|
||||||
|
|
||||||
# sudo ln -s /usr/bin/google-chrome-unstable /usr/bin/chrome
|
# sudo ln -s /usr/bin/google-chrome-unstable /usr/bin/chrome
|
||||||
|
|
||||||
|
|
|
@ -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 a file containing common variables in `common/`.
|
||||||
* Add more content to the other sections?
|
* Add more content to the other sections?
|
||||||
|
* GTK theme
|
||||||
|
* Disable caps lock?
|
||||||
|
|
Reference in a new issue