changed the gtk icon theme
This commit is contained in:
parent
697d25ae0a
commit
879e8675e7
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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"
|
||||
|
|
Loading…
Reference in New Issue