From 879e8675e700fafc38d04f8f909834948d1f080b Mon Sep 17 00:00:00 2001 From: Massaki Archambault Date: Tue, 11 Sep 2018 15:00:53 -0400 Subject: [PATCH] changed the gtk icon theme --- files/.config/gtk-3.0/settings.ini | 10 +++++----- files/.config/polybar/bluetooth.bash | 2 +- files/.config/polybar/openvpn.bash | 2 +- files/.config/polybar/wifi_toggle.bash | 2 +- files/.gtkrc-2.0 | 10 +++++----- 5 files changed, 13 insertions(+), 13 deletions(-) diff --git a/files/.config/gtk-3.0/settings.ini b/files/.config/gtk-3.0/settings.ini index c2cbb31..f28a717 100644 --- a/files/.config/gtk-3.0/settings.ini +++ b/files/.config/gtk-3.0/settings.ini @@ -1,5 +1,5 @@ [Settings] -gtk-icon-theme-name=custom +gtk-icon-theme-name=Vibrancy-Full-Dark-Orange gtk-theme-name=Vertex gtk-application-prefer-dark-theme=0 gtk-font-name=Cantarell 11 @@ -7,10 +7,10 @@ gtk-cursor-theme-name=Breeze_Snow gtk-cursor-theme-size=0 gtk-toolbar-style=GTK_TOOLBAR_TEXT gtk-toolbar-icon-size=GTK_ICON_SIZE_MENU -gtk-button-images=1 -gtk-menu-images=1 +gtk-button-images=0 +gtk-menu-images=0 gtk-enable-event-sounds=1 gtk-enable-input-feedback-sounds=1 gtk-xft-antialias=1 -gtk-xft-hinting=0 -gtk-xft-hintstyle=hintfull +gtk-xft-hinting=1 +gtk-xft-hintstyle=hintslight diff --git a/files/.config/polybar/bluetooth.bash b/files/.config/polybar/bluetooth.bash index 4c8c52c..479fc9f 100755 --- a/files/.config/polybar/bluetooth.bash +++ b/files/.config/polybar/bluetooth.bash @@ -1,6 +1,6 @@ #!/bin/bash -if which rfkill >/dev/null && [[ -f /dev/rfkill ]]; then +if which rfkill &>/dev/null && [[ -f /dev/rfkill ]]; then if rfkill list bluetooth | grep "yes" >/dev/null; then if [[ "$1" == "toggle" ]]; then rfkill unblock bluetooth diff --git a/files/.config/polybar/openvpn.bash b/files/.config/polybar/openvpn.bash index 30bb29c..281625c 100755 --- a/files/.config/polybar/openvpn.bash +++ b/files/.config/polybar/openvpn.bash @@ -1,6 +1,6 @@ #!/bin/bash -if which openvpn >/dev/null; then +if which openvpn &>/dev/null; then if ! pgrep "openvpn" &>/dev/null || ! ip link | grep -q tun; then echo "$ICO_VPN_OFF " else diff --git a/files/.config/polybar/wifi_toggle.bash b/files/.config/polybar/wifi_toggle.bash index 089a172..d1b53dd 100755 --- a/files/.config/polybar/wifi_toggle.bash +++ b/files/.config/polybar/wifi_toggle.bash @@ -1,6 +1,6 @@ #!/bin/bash -if which rfkill >/dev/null && [[ -f /dev/rfkill ]]; then +if which rfkill &>/dev/null && [[ -f /dev/rfkill ]]; then if rfkill list wifi | grep "yes" >/dev/null; then rfkill unblock wifi else diff --git a/files/.gtkrc-2.0 b/files/.gtkrc-2.0 index 41b319c..1e9f49c 100644 --- a/files/.gtkrc-2.0 +++ b/files/.gtkrc-2.0 @@ -3,16 +3,16 @@ include "/home/marchambault/.gtkrc-2.0.mine" gtk-theme-name="Vertex" -gtk-icon-theme-name="custom" +gtk-icon-theme-name="Vibrancy-Full-Dark-Orange" gtk-font-name="Cantarell 11" gtk-cursor-theme-name="Breeze_Snow" gtk-cursor-theme-size=0 gtk-toolbar-style=GTK_TOOLBAR_TEXT gtk-toolbar-icon-size=GTK_ICON_SIZE_MENU -gtk-button-images=1 -gtk-menu-images=1 +gtk-button-images=0 +gtk-menu-images=0 gtk-enable-event-sounds=1 gtk-enable-input-feedback-sounds=1 gtk-xft-antialias=1 -gtk-xft-hinting=0 -gtk-xft-hintstyle="hintfull" +gtk-xft-hinting=1 +gtk-xft-hintstyle="hintslight"