Update aliases and games.sh

Signed-off-by: Severin Kaderli <severin.kaderli@gmail.com>
This commit is contained in:
Severin Kaderli 2019-02-26 15:29:45 +01:00
parent df208c3d3e
commit 171f1ca97e
Signed by: severinkaderli
GPG key ID: F419F8835B72F0C4
4 changed files with 7 additions and 4 deletions

View file

@ -22,6 +22,5 @@ backend = "glx";
glx-no-stencil = true;
glx-copy-from-front = false;
glx-swap-method = "undefined";
refresh-rate = 0;
vsync = "none";
vsync = "opengl-swc";
xrender-sync-fence = true;

View file

@ -16,7 +16,7 @@
alias cls="clear"
# Alias for using lsd as ls replacement
alias ls='lsd'
alias ls='lsd --icon never'
alias la="ls -al"
alias lt="ls --tree"

View file

@ -20,7 +20,7 @@ allow_bold = true
dynamic_title = true
urgent_on_bell = false
clickable_url = true
font = Hack 12
font = Hack 11
scrollback_lines = 1000
search_wrap = true

View file

@ -19,6 +19,7 @@ PROMPT="Games"
ACTIONS=(
"1: Steam"
"2: Guild Wars 2"
"3: Pegasus"
)
SELECTION=$(printf '%s\n' "${ACTIONS[@]}" | rofi -dmenu -p "${PROMPT}" | cut -d ":" -f1)
@ -29,4 +30,7 @@ case "${SELECTION}" in
"2")
g2.sh
;;
"3")
pegasus-fe
;;
esac