1
0
Fork 0

changed the gtk icon theme

This commit is contained in:
Massaki Archambault 2018-09-11 15:00:53 -04:00
parent 697d25ae0a
commit 879e8675e7
5 changed files with 13 additions and 13 deletions

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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"