From 171f1ca97eb6ff63f86008633800fc671b272054 Mon Sep 17 00:00:00 2001 From: Severin Kaderli Date: Tue, 26 Feb 2019 15:29:45 +0100 Subject: [PATCH] Update aliases and games.sh Signed-off-by: Severin Kaderli --- system/.config/compton/compton.conf | 3 +-- system/.config/custom/aliases | 2 +- system/.config/termite/config | 2 +- system/.local/bin/games.sh | 4 ++++ 4 files changed, 7 insertions(+), 4 deletions(-) diff --git a/system/.config/compton/compton.conf b/system/.config/compton/compton.conf index 99939aa..62f898a 100644 --- a/system/.config/compton/compton.conf +++ b/system/.config/compton/compton.conf @@ -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; \ No newline at end of file diff --git a/system/.config/custom/aliases b/system/.config/custom/aliases index ed15e2d..e9b1da5 100644 --- a/system/.config/custom/aliases +++ b/system/.config/custom/aliases @@ -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" diff --git a/system/.config/termite/config b/system/.config/termite/config index 9d281c7..016e95f 100644 --- a/system/.config/termite/config +++ b/system/.config/termite/config @@ -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 diff --git a/system/.local/bin/games.sh b/system/.local/bin/games.sh index d12f776..fcabe28 100755 --- a/system/.local/bin/games.sh +++ b/system/.local/bin/games.sh @@ -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