Fixed #137
@ -45,6 +45,7 @@ DASH_TO_DOCK_DIR_ROOT="/usr/share/gnome-shell/extensions/dash-to-dock@micxgx.gma
 | 
			
		||||
DASH_TO_DOCK_DIR_HOME="/home/${MY_USERNAME}/.local/share/gnome-shell/extensions/dash-to-dock@micxgx.gmail.com"
 | 
			
		||||
FIREFOX_SRC_DIR="${REPO_DIR}/src/other/firefox"
 | 
			
		||||
FIREFOX_DIR_HOME="/home/${MY_USERNAME}/.mozilla/firefox"
 | 
			
		||||
FIREFOX_THEME_DIR="/home/${MY_USERNAME}/.mozilla/firefox/firefox-themes"
 | 
			
		||||
export WHITESUR_TMP_DIR="/tmp/WhiteSur.lock"
 | 
			
		||||
 | 
			
		||||
if [[ -w "/" ]]; then
 | 
			
		||||
 | 
			
		||||
@ -176,6 +176,9 @@ install_theemy() {
 | 
			
		||||
  local TMP_DIR_T="${WHITESUR_TMP_DIR}/gtk-3.0${color}${opacity}${alt}${theme}"
 | 
			
		||||
  local TMP_DIR_F="${WHITESUR_TMP_DIR}/gtk-4.0${color}${opacity}${alt}${theme}"
 | 
			
		||||
 | 
			
		||||
  local HDPI_TARGET_DIR="${dest}/${name}${color}-hdpi"
 | 
			
		||||
  local XHDPI_TARGET_DIR="${dest}/${name}${color}-xhdpi"
 | 
			
		||||
 | 
			
		||||
  mkdir -p                                                                                    "${TARGET_DIR}"
 | 
			
		||||
  local desktop_entry="
 | 
			
		||||
  [Desktop Entry]
 | 
			
		||||
@ -273,12 +276,22 @@ install_theemy() {
 | 
			
		||||
  cp -r "${THEME_SRC_DIR}/assets/xfwm4/assets${color}/"*".png"                                "${TARGET_DIR}/xfwm4"
 | 
			
		||||
  cp -r "${THEME_SRC_DIR}/main/xfwm4/themerc${color}"                                         "${TARGET_DIR}/xfwm4/themerc"
 | 
			
		||||
 | 
			
		||||
  mkdir -p                                                                                    "${HDPI_TARGET_DIR}/xfwm4"
 | 
			
		||||
  cp -r "${THEME_SRC_DIR}/assets/xfwm4/assets${color}-hdpi/"*".png"                           "${HDPI_TARGET_DIR}/xfwm4"
 | 
			
		||||
  cp -r "${THEME_SRC_DIR}/main/xfwm4/themerc${color}"                                         "${HDPI_TARGET_DIR}/xfwm4/themerc"
 | 
			
		||||
 | 
			
		||||
  mkdir -p                                                                                    "${XHDPI_TARGET_DIR}/xfwm4"
 | 
			
		||||
  cp -r "${THEME_SRC_DIR}/assets/xfwm4/assets${color}-xhdpi/"*".png"                          "${XHDPI_TARGET_DIR}/xfwm4"
 | 
			
		||||
  cp -r "${THEME_SRC_DIR}/main/xfwm4/themerc${color}"                                         "${XHDPI_TARGET_DIR}/xfwm4/themerc"
 | 
			
		||||
 | 
			
		||||
  mkdir -p                                                                                    "${TARGET_DIR}/plank"
 | 
			
		||||
  cp -r "${THEME_SRC_DIR}/other/plank/theme${color}/"*".theme"                                "${TARGET_DIR}/plank"
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
remove_packy() {
 | 
			
		||||
  rm -rf "${dest}/${name}$(destify ${1})$(destify ${2})$(destify ${3})$(destify ${4})"
 | 
			
		||||
  rm -rf "${dest}/${name}$(destify ${1})-hdpi"
 | 
			
		||||
  rm -rf "${dest}/${name}$(destify ${1})-xhdpi"
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
###############################################################################
 | 
			
		||||
@ -385,7 +398,7 @@ revert_gdm_theme() {
 | 
			
		||||
 | 
			
		||||
install_firefox_theme() {
 | 
			
		||||
  remove_firefox_theme
 | 
			
		||||
  userify cp -rf "${FIREFOX_SRC_DIR}"                                                           "${FIREFOX_DIR_HOME}/WhiteSur-chrome"
 | 
			
		||||
  userify cp -rf "${FIREFOX_SRC_DIR}"                                                           "${FIREFOX_THEME_DIR}"
 | 
			
		||||
  config_firefox
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
@ -394,7 +407,7 @@ config_firefox() {
 | 
			
		||||
 | 
			
		||||
  for d in "${FIREFOX_DIR_HOME}/"*"default"*; do
 | 
			
		||||
    rm -rf                                                                                      "${d}/chrome"
 | 
			
		||||
    userify ln -sf "${FIREFOX_DIR_HOME}/WhiteSur-chrome"                                        "${d}/chrome"
 | 
			
		||||
    userify ln -sf "${FIREFOX_THEME_DIR}"                                                       "${d}/chrome"
 | 
			
		||||
    userify echo "user_pref(\"toolkit.legacyUserProfileCustomizations.stylesheets\", true);" >> "${d}/prefs.js"
 | 
			
		||||
    userify echo "user_pref(\"browser.tabs.drawInTitlebar\", true);" >>                         "${d}/prefs.js"
 | 
			
		||||
    userify echo "user_pref(\"browser.uidensity\", 0);" >>                                      "${d}/prefs.js"
 | 
			
		||||
@ -404,14 +417,14 @@ config_firefox() {
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
edit_firefox_theme_prefs() {
 | 
			
		||||
  [[ ! -d "${FIREFOX_DIR_HOME}/WhiteSur-chrome" ]] && install_firefox_theme ; config_firefox
 | 
			
		||||
  ${EDITOR:-nano}                                                                               "${FIREFOX_DIR_HOME}/WhiteSur-chrome/userChrome.css"
 | 
			
		||||
  ${EDITOR:-nano}                                                                               "${FIREFOX_DIR_HOME}/WhiteSur-chrome/customChrome.css"
 | 
			
		||||
  [[ ! -d "${FIREFOX_THEME_DIR}" ]] && install_firefox_theme ; config_firefox
 | 
			
		||||
  ${EDITOR:-nano}                                                                               "${FIREFOX_THEME_DIR}/userChrome.css"
 | 
			
		||||
  ${EDITOR:-nano}                                                                               "${FIREFOX_THEME_DIR}/customChrome.css"
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
remove_firefox_theme() {
 | 
			
		||||
  rm -rf "${FIREFOX_DIR_HOME}/"*"default"*"/chrome"
 | 
			
		||||
  rm -rf "${FIREFOX_DIR_HOME}/WhiteSur-chrome"
 | 
			
		||||
  rm -rf "${FIREFOX_THEME_DIR}"
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
###############################################################################
 | 
			
		||||
 | 
			
		||||
							
								
								
									
										
											BIN
										
									
								
								src/assets/xfwm4/assets-dark-hdpi/bottom-active.png
									
									
									
									
									
										Normal file
									
								
							
							
						
						| 
		 After Width: | Height: | Size: 146 B  | 
							
								
								
									
										
											BIN
										
									
								
								src/assets/xfwm4/assets-dark-hdpi/bottom-inactive.png
									
									
									
									
									
										Normal file
									
								
							
							
						
						| 
		 After Width: | Height: | Size: 146 B  | 
							
								
								
									
										
											BIN
										
									
								
								src/assets/xfwm4/assets-dark-hdpi/bottom-left-active.png
									
									
									
									
									
										Normal file
									
								
							
							
						
						| 
		 After Width: | Height: | Size: 190 B  | 
							
								
								
									
										
											BIN
										
									
								
								src/assets/xfwm4/assets-dark-hdpi/bottom-left-inactive.png
									
									
									
									
									
										Normal file
									
								
							
							
						
						| 
		 After Width: | Height: | Size: 190 B  | 
							
								
								
									
										
											BIN
										
									
								
								src/assets/xfwm4/assets-dark-hdpi/bottom-right-active.png
									
									
									
									
									
										Normal file
									
								
							
							
						
						| 
		 After Width: | Height: | Size: 184 B  | 
							
								
								
									
										
											BIN
										
									
								
								src/assets/xfwm4/assets-dark-hdpi/bottom-right-inactive.png
									
									
									
									
									
										Normal file
									
								
							
							
						
						| 
		 After Width: | Height: | Size: 182 B  | 
							
								
								
									
										
											BIN
										
									
								
								src/assets/xfwm4/assets-dark-hdpi/close-active.png
									
									
									
									
									
										Normal file
									
								
							
							
						
						| 
		 After Width: | Height: | Size: 439 B  | 
							
								
								
									
										
											BIN
										
									
								
								src/assets/xfwm4/assets-dark-hdpi/close-inactive.png
									
									
									
									
									
										Normal file
									
								
							
							
						
						| 
		 After Width: | Height: | Size: 268 B  | 
							
								
								
									
										
											BIN
										
									
								
								src/assets/xfwm4/assets-dark-hdpi/close-prelight.png
									
									
									
									
									
										Normal file
									
								
							
							
						
						| 
		 After Width: | Height: | Size: 523 B  | 
							
								
								
									
										
											BIN
										
									
								
								src/assets/xfwm4/assets-dark-hdpi/close-pressed.png
									
									
									
									
									
										Normal file
									
								
							
							
						
						| 
		 After Width: | Height: | Size: 506 B  | 
							
								
								
									
										
											BIN
										
									
								
								src/assets/xfwm4/assets-dark-hdpi/hide-active.png
									
									
									
									
									
										Normal file
									
								
							
							
						
						| 
		 After Width: | Height: | Size: 434 B  | 
							
								
								
									
										
											BIN
										
									
								
								src/assets/xfwm4/assets-dark-hdpi/hide-inactive.png
									
									
									
									
									
										Normal file
									
								
							
							
						
						| 
		 After Width: | Height: | Size: 268 B  | 
							
								
								
									
										
											BIN
										
									
								
								src/assets/xfwm4/assets-dark-hdpi/hide-prelight.png
									
									
									
									
									
										Normal file
									
								
							
							
						
						| 
		 After Width: | Height: | Size: 491 B  | 
							
								
								
									
										
											BIN
										
									
								
								src/assets/xfwm4/assets-dark-hdpi/hide-pressed.png
									
									
									
									
									
										Normal file
									
								
							
							
						
						| 
		 After Width: | Height: | Size: 483 B  | 
							
								
								
									
										
											BIN
										
									
								
								src/assets/xfwm4/assets-dark-hdpi/left-active.png
									
									
									
									
									
										Normal file
									
								
							
							
						
						| 
		 After Width: | Height: | Size: 143 B  | 
							
								
								
									
										
											BIN
										
									
								
								src/assets/xfwm4/assets-dark-hdpi/left-inactive.png
									
									
									
									
									
										Normal file
									
								
							
							
						
						| 
		 After Width: | Height: | Size: 143 B  | 
							
								
								
									
										
											BIN
										
									
								
								src/assets/xfwm4/assets-dark-hdpi/maximize-active.png
									
									
									
									
									
										Normal file
									
								
							
							
						
						| 
		 After Width: | Height: | Size: 421 B  | 
							
								
								
									
										
											BIN
										
									
								
								src/assets/xfwm4/assets-dark-hdpi/maximize-inactive.png
									
									
									
									
									
										Normal file
									
								
							
							
						
						| 
		 After Width: | Height: | Size: 268 B  | 
							
								
								
									
										
											BIN
										
									
								
								src/assets/xfwm4/assets-dark-hdpi/maximize-prelight.png
									
									
									
									
									
										Normal file
									
								
							
							
						
						| 
		 After Width: | Height: | Size: 520 B  | 
							
								
								
									
										
											BIN
										
									
								
								src/assets/xfwm4/assets-dark-hdpi/maximize-pressed.png
									
									
									
									
									
										Normal file
									
								
							
							
						
						| 
		 After Width: | Height: | Size: 503 B  | 
							
								
								
									
										
											BIN
										
									
								
								src/assets/xfwm4/assets-dark-hdpi/maximize-toggled-active.png
									
									
									
									
									
										Normal file
									
								
							
							
						
						| 
		 After Width: | Height: | Size: 421 B  | 
							
								
								
									
										
											BIN
										
									
								
								src/assets/xfwm4/assets-dark-hdpi/maximize-toggled-inactive.png
									
									
									
									
									
										Normal file
									
								
							
							
						
						| 
		 After Width: | Height: | Size: 268 B  | 
							
								
								
									
										
											BIN
										
									
								
								src/assets/xfwm4/assets-dark-hdpi/maximize-toggled-prelight.png
									
									
									
									
									
										Normal file
									
								
							
							
						
						| 
		 After Width: | Height: | Size: 486 B  | 
							
								
								
									
										
											BIN
										
									
								
								src/assets/xfwm4/assets-dark-hdpi/maximize-toggled-pressed.png
									
									
									
									
									
										Normal file
									
								
							
							
						
						| 
		 After Width: | Height: | Size: 477 B  | 
							
								
								
									
										
											BIN
										
									
								
								src/assets/xfwm4/assets-dark-hdpi/menu-active.png
									
									
									
									
									
										Normal file
									
								
							
							
						
						| 
		 After Width: | Height: | Size: 316 B  | 
							
								
								
									
										
											BIN
										
									
								
								src/assets/xfwm4/assets-dark-hdpi/menu-inactive.png
									
									
									
									
									
										Normal file
									
								
							
							
						
						| 
		 After Width: | Height: | Size: 302 B  | 
							
								
								
									
										
											BIN
										
									
								
								src/assets/xfwm4/assets-dark-hdpi/menu-pressed.png
									
									
									
									
									
										Normal file
									
								
							
							
						
						| 
		 After Width: | Height: | Size: 501 B  | 
							
								
								
									
										
											BIN
										
									
								
								src/assets/xfwm4/assets-dark-hdpi/right-active.png
									
									
									
									
									
										Normal file
									
								
							
							
						
						| 
		 After Width: | Height: | Size: 144 B  | 
							
								
								
									
										
											BIN
										
									
								
								src/assets/xfwm4/assets-dark-hdpi/right-inactive.png
									
									
									
									
									
										Normal file
									
								
							
							
						
						| 
		 After Width: | Height: | Size: 144 B  | 
							
								
								
									
										
											BIN
										
									
								
								src/assets/xfwm4/assets-dark-hdpi/shade-active.png
									
									
									
									
									
										Normal file
									
								
							
							
						
						| 
		 After Width: | Height: | Size: 208 B  | 
							
								
								
									
										
											BIN
										
									
								
								src/assets/xfwm4/assets-dark-hdpi/shade-inactive.png
									
									
									
									
									
										Normal file
									
								
							
							
						
						| 
		 After Width: | Height: | Size: 206 B  | 
							
								
								
									
										
											BIN
										
									
								
								src/assets/xfwm4/assets-dark-hdpi/shade-pressed.png
									
									
									
									
									
										Normal file
									
								
							
							
						
						| 
		 After Width: | Height: | Size: 301 B  | 
							
								
								
									
										
											BIN
										
									
								
								src/assets/xfwm4/assets-dark-hdpi/stick-active.png
									
									
									
									
									
										Normal file
									
								
							
							
						
						| 
		 After Width: | Height: | Size: 198 B  | 
							
								
								
									
										
											BIN
										
									
								
								src/assets/xfwm4/assets-dark-hdpi/stick-inactive.png
									
									
									
									
									
										Normal file
									
								
							
							
						
						| 
		 After Width: | Height: | Size: 198 B  | 
							
								
								
									
										
											BIN
										
									
								
								src/assets/xfwm4/assets-dark-hdpi/stick-pressed.png
									
									
									
									
									
										Normal file
									
								
							
							
						
						| 
		 After Width: | Height: | Size: 198 B  | 
							
								
								
									
										
											BIN
										
									
								
								src/assets/xfwm4/assets-dark-hdpi/title-1-active.png
									
									
									
									
									
										Normal file
									
								
							
							
						
						| 
		 After Width: | Height: | Size: 161 B  | 
							
								
								
									
										
											BIN
										
									
								
								src/assets/xfwm4/assets-dark-hdpi/title-1-inactive.png
									
									
									
									
									
										Normal file
									
								
							
							
						
						| 
		 After Width: | Height: | Size: 161 B  | 
							
								
								
									
										
											BIN
										
									
								
								src/assets/xfwm4/assets-dark-hdpi/title-2-active.png
									
									
									
									
									
										Normal file
									
								
							
							
						
						| 
		 After Width: | Height: | Size: 161 B  | 
							
								
								
									
										
											BIN
										
									
								
								src/assets/xfwm4/assets-dark-hdpi/title-2-inactive.png
									
									
									
									
									
										Normal file
									
								
							
							
						
						| 
		 After Width: | Height: | Size: 161 B  | 
							
								
								
									
										
											BIN
										
									
								
								src/assets/xfwm4/assets-dark-hdpi/title-3-active.png
									
									
									
									
									
										Normal file
									
								
							
							
						
						| 
		 After Width: | Height: | Size: 161 B  | 
							
								
								
									
										
											BIN
										
									
								
								src/assets/xfwm4/assets-dark-hdpi/title-3-inactive.png
									
									
									
									
									
										Normal file
									
								
							
							
						
						| 
		 After Width: | Height: | Size: 161 B  | 
							
								
								
									
										
											BIN
										
									
								
								src/assets/xfwm4/assets-dark-hdpi/title-4-active.png
									
									
									
									
									
										Normal file
									
								
							
							
						
						| 
		 After Width: | Height: | Size: 161 B  | 
							
								
								
									
										
											BIN
										
									
								
								src/assets/xfwm4/assets-dark-hdpi/title-4-inactive.png
									
									
									
									
									
										Normal file
									
								
							
							
						
						| 
		 After Width: | Height: | Size: 161 B  | 
							
								
								
									
										
											BIN
										
									
								
								src/assets/xfwm4/assets-dark-hdpi/title-5-active.png
									
									
									
									
									
										Normal file
									
								
							
							
						
						| 
		 After Width: | Height: | Size: 161 B  | 
							
								
								
									
										
											BIN
										
									
								
								src/assets/xfwm4/assets-dark-hdpi/title-5-inactive.png
									
									
									
									
									
										Normal file
									
								
							
							
						
						| 
		 After Width: | Height: | Size: 161 B  | 
							
								
								
									
										
											BIN
										
									
								
								src/assets/xfwm4/assets-dark-hdpi/top-left-active.png
									
									
									
									
									
										Normal file
									
								
							
							
						
						| 
		 After Width: | Height: | Size: 264 B  | 
							
								
								
									
										
											BIN
										
									
								
								src/assets/xfwm4/assets-dark-hdpi/top-left-inactive.png
									
									
									
									
									
										Normal file
									
								
							
							
						
						| 
		 After Width: | Height: | Size: 264 B  | 
							
								
								
									
										
											BIN
										
									
								
								src/assets/xfwm4/assets-dark-hdpi/top-right-active.png
									
									
									
									
									
										Normal file
									
								
							
							
						
						| 
		 After Width: | Height: | Size: 250 B  | 
							
								
								
									
										
											BIN
										
									
								
								src/assets/xfwm4/assets-dark-hdpi/top-right-inactive.png
									
									
									
									
									
										Normal file
									
								
							
							
						
						| 
		 After Width: | Height: | Size: 250 B  | 
							
								
								
									
										
											BIN
										
									
								
								src/assets/xfwm4/assets-dark-xhdpi/bottom-active.png
									
									
									
									
									
										Normal file
									
								
							
							
						
						| 
		 After Width: | Height: | Size: 146 B  | 
							
								
								
									
										
											BIN
										
									
								
								src/assets/xfwm4/assets-dark-xhdpi/bottom-inactive.png
									
									
									
									
									
										Normal file
									
								
							
							
						
						| 
		 After Width: | Height: | Size: 146 B  | 
							
								
								
									
										
											BIN
										
									
								
								src/assets/xfwm4/assets-dark-xhdpi/bottom-left-active.png
									
									
									
									
									
										Normal file
									
								
							
							
						
						| 
		 After Width: | Height: | Size: 171 B  | 
							
								
								
									
										
											BIN
										
									
								
								src/assets/xfwm4/assets-dark-xhdpi/bottom-left-inactive.png
									
									
									
									
									
										Normal file
									
								
							
							
						
						| 
		 After Width: | Height: | Size: 171 B  | 
							
								
								
									
										
											BIN
										
									
								
								src/assets/xfwm4/assets-dark-xhdpi/bottom-right-active.png
									
									
									
									
									
										Normal file
									
								
							
							
						
						| 
		 After Width: | Height: | Size: 173 B  | 
							
								
								
									
										
											BIN
										
									
								
								src/assets/xfwm4/assets-dark-xhdpi/bottom-right-inactive.png
									
									
									
									
									
										Normal file
									
								
							
							
						
						| 
		 After Width: | Height: | Size: 173 B  | 
							
								
								
									
										
											BIN
										
									
								
								src/assets/xfwm4/assets-dark-xhdpi/close-active.png
									
									
									
									
									
										Normal file
									
								
							
							
						
						| 
		 After Width: | Height: | Size: 510 B  | 
							
								
								
									
										
											BIN
										
									
								
								src/assets/xfwm4/assets-dark-xhdpi/close-inactive.png
									
									
									
									
									
										Normal file
									
								
							
							
						
						| 
		 After Width: | Height: | Size: 299 B  | 
							
								
								
									
										
											BIN
										
									
								
								src/assets/xfwm4/assets-dark-xhdpi/close-prelight.png
									
									
									
									
									
										Normal file
									
								
							
							
						
						| 
		 After Width: | Height: | Size: 642 B  | 
							
								
								
									
										
											BIN
										
									
								
								src/assets/xfwm4/assets-dark-xhdpi/close-pressed.png
									
									
									
									
									
										Normal file
									
								
							
							
						
						| 
		 After Width: | Height: | Size: 637 B  | 
							
								
								
									
										
											BIN
										
									
								
								src/assets/xfwm4/assets-dark-xhdpi/hide-active.png
									
									
									
									
									
										Normal file
									
								
							
							
						
						| 
		 After Width: | Height: | Size: 525 B  | 
							
								
								
									
										
											BIN
										
									
								
								src/assets/xfwm4/assets-dark-xhdpi/hide-inactive.png
									
									
									
									
									
										Normal file
									
								
							
							
						
						| 
		 After Width: | Height: | Size: 299 B  | 
							
								
								
									
										
											BIN
										
									
								
								src/assets/xfwm4/assets-dark-xhdpi/hide-prelight.png
									
									
									
									
									
										Normal file
									
								
							
							
						
						| 
		 After Width: | Height: | Size: 576 B  | 
							
								
								
									
										
											BIN
										
									
								
								src/assets/xfwm4/assets-dark-xhdpi/hide-pressed.png
									
									
									
									
									
										Normal file
									
								
							
							
						
						| 
		 After Width: | Height: | Size: 556 B  | 
							
								
								
									
										
											BIN
										
									
								
								src/assets/xfwm4/assets-dark-xhdpi/left-active.png
									
									
									
									
									
										Normal file
									
								
							
							
						
						| 
		 After Width: | Height: | Size: 146 B  | 
							
								
								
									
										
											BIN
										
									
								
								src/assets/xfwm4/assets-dark-xhdpi/left-inactive.png
									
									
									
									
									
										Normal file
									
								
							
							
						
						| 
		 After Width: | Height: | Size: 146 B  | 
							
								
								
									
										
											BIN
										
									
								
								src/assets/xfwm4/assets-dark-xhdpi/maximize-active.png
									
									
									
									
									
										Normal file
									
								
							
							
						
						| 
		 After Width: | Height: | Size: 508 B  | 
							
								
								
									
										
											BIN
										
									
								
								src/assets/xfwm4/assets-dark-xhdpi/maximize-inactive.png
									
									
									
									
									
										Normal file
									
								
							
							
						
						| 
		 After Width: | Height: | Size: 299 B  | 
							
								
								
									
										
											BIN
										
									
								
								src/assets/xfwm4/assets-dark-xhdpi/maximize-prelight.png
									
									
									
									
									
										Normal file
									
								
							
							
						
						| 
		 After Width: | Height: | Size: 588 B  | 
							
								
								
									
										
											BIN
										
									
								
								src/assets/xfwm4/assets-dark-xhdpi/maximize-pressed.png
									
									
									
									
									
										Normal file
									
								
							
							
						
						| 
		 After Width: | Height: | Size: 585 B  | 
							
								
								
									
										
											BIN
										
									
								
								src/assets/xfwm4/assets-dark-xhdpi/maximize-toggled-active.png
									
									
									
									
									
										Normal file
									
								
							
							
						
						| 
		 After Width: | Height: | Size: 508 B  | 
							
								
								
									
										
											BIN
										
									
								
								src/assets/xfwm4/assets-dark-xhdpi/maximize-toggled-inactive.png
									
									
									
									
									
										Normal file
									
								
							
							
						
						| 
		 After Width: | Height: | Size: 299 B  | 
							
								
								
									
										
											BIN
										
									
								
								src/assets/xfwm4/assets-dark-xhdpi/maximize-toggled-prelight.png
									
									
									
									
									
										Normal file
									
								
							
							
						
						| 
		 After Width: | Height: | Size: 601 B  | 
							
								
								
									
										
											BIN
										
									
								
								src/assets/xfwm4/assets-dark-xhdpi/maximize-toggled-pressed.png
									
									
									
									
									
										Normal file
									
								
							
							
						
						| 
		 After Width: | Height: | Size: 597 B  | 
							
								
								
									
										
											BIN
										
									
								
								src/assets/xfwm4/assets-dark-xhdpi/menu-active.png
									
									
									
									
									
										Normal file
									
								
							
							
						
						| 
		 After Width: | Height: | Size: 389 B  | 
							
								
								
									
										
											BIN
										
									
								
								src/assets/xfwm4/assets-dark-xhdpi/menu-inactive.png
									
									
									
									
									
										Normal file
									
								
							
							
						
						| 
		 After Width: | Height: | Size: 374 B  | 
							
								
								
									
										
											BIN
										
									
								
								src/assets/xfwm4/assets-dark-xhdpi/menu-pressed.png
									
									
									
									
									
										Normal file
									
								
							
							
						
						| 
		 After Width: | Height: | Size: 620 B  | 
							
								
								
									
										
											BIN
										
									
								
								src/assets/xfwm4/assets-dark-xhdpi/right-active.png
									
									
									
									
									
										Normal file
									
								
							
							
						
						| 
		 After Width: | Height: | Size: 146 B  | 
							
								
								
									
										
											BIN
										
									
								
								src/assets/xfwm4/assets-dark-xhdpi/right-inactive.png
									
									
									
									
									
										Normal file
									
								
							
							
						
						| 
		 After Width: | Height: | Size: 146 B  | 
							
								
								
									
										
											BIN
										
									
								
								src/assets/xfwm4/assets-dark-xhdpi/shade-active.png
									
									
									
									
									
										Normal file
									
								
							
							
						
						| 
		 After Width: | Height: | Size: 229 B  | 
							
								
								
									
										
											BIN
										
									
								
								src/assets/xfwm4/assets-dark-xhdpi/shade-inactive.png
									
									
									
									
									
										Normal file
									
								
							
							
						
						| 
		 After Width: | Height: | Size: 226 B  | 
							
								
								
									
										
											BIN
										
									
								
								src/assets/xfwm4/assets-dark-xhdpi/shade-pressed.png
									
									
									
									
									
										Normal file
									
								
							
							
						
						| 
		 After Width: | Height: | Size: 339 B  | 
							
								
								
									
										
											BIN
										
									
								
								src/assets/xfwm4/assets-dark-xhdpi/stick-active.png
									
									
									
									
									
										Normal file
									
								
							
							
						
						| 
		 After Width: | Height: | Size: 176 B  | 
							
								
								
									
										
											BIN
										
									
								
								src/assets/xfwm4/assets-dark-xhdpi/stick-inactive.png
									
									
									
									
									
										Normal file
									
								
							
							
						
						| 
		 After Width: | Height: | Size: 176 B  | 
							
								
								
									
										
											BIN
										
									
								
								src/assets/xfwm4/assets-dark-xhdpi/stick-pressed.png
									
									
									
									
									
										Normal file
									
								
							
							
						
						| 
		 After Width: | Height: | Size: 176 B  | 
							
								
								
									
										
											BIN
										
									
								
								src/assets/xfwm4/assets-dark-xhdpi/title-1-active.png
									
									
									
									
									
										Normal file
									
								
							
							
						
						| 
		 After Width: | Height: | Size: 157 B  | 
							
								
								
									
										
											BIN
										
									
								
								src/assets/xfwm4/assets-dark-xhdpi/title-1-inactive.png
									
									
									
									
									
										Normal file
									
								
							
							
						
						| 
		 After Width: | Height: | Size: 157 B  | 
							
								
								
									
										
											BIN
										
									
								
								src/assets/xfwm4/assets-dark-xhdpi/title-2-active.png
									
									
									
									
									
										Normal file
									
								
							
							
						
						| 
		 After Width: | Height: | Size: 157 B  | 
							
								
								
									
										
											BIN
										
									
								
								src/assets/xfwm4/assets-dark-xhdpi/title-2-inactive.png
									
									
									
									
									
										Normal file
									
								
							
							
						
						| 
		 After Width: | Height: | Size: 157 B  | 
							
								
								
									
										
											BIN
										
									
								
								src/assets/xfwm4/assets-dark-xhdpi/title-3-active.png
									
									
									
									
									
										Normal file
									
								
							
							
						
						| 
		 After Width: | Height: | Size: 157 B  | 
							
								
								
									
										
											BIN
										
									
								
								src/assets/xfwm4/assets-dark-xhdpi/title-3-inactive.png
									
									
									
									
									
										Normal file
									
								
							
							
						
						| 
		 After Width: | Height: | Size: 157 B  | 
							
								
								
									
										
											BIN
										
									
								
								src/assets/xfwm4/assets-dark-xhdpi/title-4-active.png
									
									
									
									
									
										Normal file
									
								
							
							
						
						| 
		 After Width: | Height: | Size: 157 B  | 
							
								
								
									
										
											BIN
										
									
								
								src/assets/xfwm4/assets-dark-xhdpi/title-4-inactive.png
									
									
									
									
									
										Normal file
									
								
							
							
						
						| 
		 After Width: | Height: | Size: 157 B  | 
							
								
								
									
										
											BIN
										
									
								
								src/assets/xfwm4/assets-dark-xhdpi/title-5-active.png
									
									
									
									
									
										Normal file
									
								
							
							
						
						| 
		 After Width: | Height: | Size: 157 B  | 
							
								
								
									
										
											BIN
										
									
								
								src/assets/xfwm4/assets-dark-xhdpi/title-5-inactive.png
									
									
									
									
									
										Normal file
									
								
							
							
						
						| 
		 After Width: | Height: | Size: 157 B  | 
							
								
								
									
										
											BIN
										
									
								
								src/assets/xfwm4/assets-dark-xhdpi/top-left-active.png
									
									
									
									
									
										Normal file
									
								
							
							
						
						| 
		 After Width: | Height: | Size: 184 B  | 
							
								
								
									
										
											BIN
										
									
								
								src/assets/xfwm4/assets-dark-xhdpi/top-left-inactive.png
									
									
									
									
									
										Normal file
									
								
							
							
						
						| 
		 After Width: | Height: | Size: 184 B  | 
							
								
								
									
										
											BIN
										
									
								
								src/assets/xfwm4/assets-dark-xhdpi/top-right-active.png
									
									
									
									
									
										Normal file
									
								
							
							
						
						| 
		 After Width: | Height: | Size: 185 B  | 
							
								
								
									
										
											BIN
										
									
								
								src/assets/xfwm4/assets-dark-xhdpi/top-right-inactive.png
									
									
									
									
									
										Normal file
									
								
							
							
						
						| 
		 After Width: | Height: | Size: 185 B  |