2016年8月16日火曜日

ワークスペース毎に動くタイリング・シェルスクリプト

前回作成したシェルスクリプトを、ワークスペース毎に操作できるようにする実験


WmCtrlGtk(0)とWmCtrlGtk(1)で、それぞれワークスペース0とワークスペース1を別個に操作する。
(その分、シェルスクリプトから保存するファイルが増えてます。)

  1. #!/bin/bash
  2.  
  3. PRE_IFS=$IFS
  4. IFS=$'\n'
  5.  
  6. top_panel_h=0
  7. bottom_panel_h=26
  8. title_h=30
  9. disp_width=$(xwininfo -root | grep 'Width' | cut -f2 -d ':')
  10. disp_height=$(xwininfo -root | grep 'Height' | cut -f2 -d ':')
  11. export current_ws=$(xprop -root -notype _NET_CURRENT_DESKTOP | cut -b 24)
  12.  
  13. if [ ! $(wmctrl -l | grep "WmCtrlGtk("$current_ws")") ]; then
  14. export MAIN_DIALOG$current_ws='
  15. <window title="WmCtrlGtk('$current_ws')">
  16. <hbox>
  17. <button>
  18. <label>h</label>
  19. <action>'$0' h 200</action>
  20. </button>
  21. <button>
  22. <label>v</label>
  23. <action>'$0' v 200</action>
  24. </button>
  25. <button>
  26. <label>r</label>
  27. <action>'$0' r</action>
  28. </button>
  29. <button>
  30. <label>+100</label>
  31. <action>'$0' 100</action>
  32. </button>
  33. <button>
  34. <label>-100</label>
  35. <action>'$0' -100</action>
  36. </button>
  37. </hbox>
  38. </window>
  39. '
  40.  
  41. gtkdialog -p MAIN_DIALOG$current_ws -c
  42. fi
  43.  
  44. rotate_flag=0
  45. if [ $# -eq 1 ]; then
  46. if [ $1 = 'h' -o $1 = 'v' ]; then
  47. hv_flag=$1
  48. main_add=0
  49. elif [ $1 = 'r' ]; then
  50. rotate_flag=1
  51. elif [ $1 -gt 0 -o $1 -lt 0 ]; then
  52. rotate_flag=2
  53. else
  54. hv_flag='h'
  55. fi
  56. elif [ $# -eq 2 ]; then
  57. hv_flag=$1
  58. main_add=$2
  59. else
  60. exit 0
  61. fi
  62.  
  63. temp_file='./wm-ctrl'$current_ws'.txt'
  64. if [ $rotate_flag -gt 0 ]; then
  65. hv_flag=$(sed -n 1p ./wm-ctrl${current_ws}.his | cut -f1 -d',')
  66. main_add=$(sed -n 1p ./wm-ctrl${current_ws}.his | cut -f2 -d',')
  67. if [ $rotate_flag -eq 1 ]; then
  68. temp_1=$(sed -n 2p ./wm-ctrl${current_ws}.his)
  69. sed -i '$a '$temp_1'' ./wm-ctrl${current_ws}.his
  70. sed -i 1,2d ./wm-ctrl${current_ws}.his
  71. else
  72. sed -i 1d ./wm-ctrl${current_ws}.his
  73. main_add=$((main_add + $1))
  74. fi
  75. sed -i 's/_/ /g' ./wm-ctrl${current_ws}.his
  76. temp_file='./wm-ctrl'$current_ws'.his'
  77. fi
  78.  
  79. wmctrl -l > wm-ctrl${current_ws}.txt
  80. sed -i '/WmCtrlGtk/d' ./wm-ctrl${current_ws}.txt
  81. txt_lines=$(wc $temp_file | sed 's/^[ \t]*//' | cut -f1 -d " ")
  82. if [ $txt_lines -gt 0 ]; then
  83. # current_ws=$(xprop -root -notype _NET_CURRENT_DESKTOP | cut -b 24)
  84. #active_win=$(xprop -root -notype _NET_ACTIVE_WINDOW | cut -b 33-43)
  85.  
  86. ws_windows=0
  87. for((i = 1; i <= $txt_lines; i++)); do
  88. ws_flag=$(sed -n $i'p' $temp_file | cut -b 12-13)
  89. if [ $ws_flag -eq $current_ws ]; then
  90. let ws_windows++
  91. fi
  92. done
  93.  
  94. disp_width2=$((disp_width / 2))
  95. disp_height2=$(($(((disp_height - top_panel_h - bottom_panel_h) / 2)) - title_h))
  96. disp_width_main=$((disp_width2 + main_add))
  97. disp_height_main=$((disp_height2 + main_add))
  98. disp_width_sub=$((disp_width2 - main_add))
  99. disp_height_sub=$((disp_height2 - main_add))
  100.  
  101. pos_width=$((disp_width / 2))
  102. pos_height=$(((disp_height - top_panel_h - bottom_panel_h) / 2))
  103.  
  104. if [ $hv_flag = 'v' ]; then
  105. x_pos=(0 0 $pos_width $pos_width)
  106. y_pos=($((0 + top_panel_h)) $((pos_height + top_panel_h + main_add)) \
  107. $((pos_height + top_panel_h+ main_add)) $((0 + top_panel_h)))
  108. else
  109. x_pos=(0 $((pos_width + main_add)) $((pos_width + main_add)) 0)
  110. y_pos=($((0 + top_panel_h)) $((0 + top_panel_h)) $((pos_height + top_panel_h)) \
  111. $((pos_height + top_panel_h)))
  112. fi
  113.  
  114. case $ws_windows in
  115. 1)
  116. temp_width=$disp_width
  117. temp_height=$((disp_height - top_panel_h - bottom_panel_h - title_h));;
  118. [2-3])
  119. temp_width=$disp_width2
  120. temp_height=$((disp_height - top_panel_h - bottom_panel_h - title_h));;
  121. *)
  122. temp_width=$disp_width2
  123. temp_height=$disp_height2;;
  124. esac
  125.  
  126. window_array=()
  127. n=0
  128. for((i = 1; i <= $txt_lines; i++)); do
  129. if [ $n -gt 3 ]; then
  130. n=0
  131. fi
  132. ws_flag=$(sed -n $i'p' $temp_file | cut -b 11-13)
  133. if [ $ws_flag -eq $current_ws ]; then
  134. win_id=$(sed -n $i'p' $temp_file | cut -b 1-10)
  135. if [ $rotate_flag -eq 0 ]; then
  136. if [ $n -eq 0 ]; then
  137. echo $hv_flag','$main_add',' > wm-ctrl${current_ws}.his
  138. echo $win_id'__'$current_ws'_' >> wm-ctrl${current_ws}.his
  139. else
  140. echo $win_id'__'$current_ws'_' >> wm-ctrl${current_ws}.his
  141. fi
  142. fi
  143. if [ $ws_windows -eq 2 ]; then
  144. if [ $n -eq 0 ]; then
  145. if [ $hv_flag = 'v' ]; then
  146. temp_width=$disp_width
  147. temp_height=$disp_height_main
  148. else
  149. temp_width=$disp_width_main
  150. fi
  151. else
  152. if [ $hv_flag = 'v' ]; then
  153. temp_width=$disp_width
  154. temp_height=$disp_height_sub
  155. else
  156. temp_width=$disp_width_sub
  157. temp_height=$((disp_height - top_panel_h - bottom_panel_h - title_h))
  158. fi
  159. fi
  160. fi
  161. if [ $ws_windows -eq 3 ]; then
  162. if [ $n -eq 0 ]; then
  163. if [ $hv_flag = 'v' ]; then
  164. temp_width=$disp_width
  165. temp_height=$disp_height_main
  166. else
  167. temp_width=$disp_width_main
  168. fi
  169. fi
  170. fi
  171. if [ $ws_windows -gt 2 -a $n -gt 0 ]; then
  172. if [ $hv_flag = 'v' ]; then
  173. temp_width=$disp_width2
  174. temp_height=$disp_height_sub
  175. else
  176. temp_width=$disp_width_sub
  177. temp_height=$disp_height2
  178. fi
  179. fi
  180. if [ $ws_windows -gt 3 -a $n -gt 0 ]; then
  181. x_pos=(0 $pos_width $pos_width 0)
  182. y_pos=($((0 + top_panel_h)) $((0 + top_panel_h)) $((pos_height + top_panel_h)) \
  183. $((pos_height + top_panel_h)))
  184. temp_width=$disp_width2
  185. temp_height=$disp_height2
  186. fi
  187. window_array+=( $win_id','${x_pos[$n]}','${y_pos[$n]}','$temp_width','$temp_height )
  188. let n++
  189. fi
  190. done
  191.  
  192. for par in ${window_array[@]}; do
  193. for((i = 1; i <= 5; i++)); do
  194. declare par$i=$(echo ${par} | cut -f$i -d ',')
  195. done
  196. wmctrl -i -r $par1 -e 0,$par2,$par3,$par4,$par5
  197. done
  198. fi
  199.  
  200. if [ $rotate_flag -gt 0 ]; then
  201. sed -i 's/ /_/g' ./wm-ctrl${current_ws}.his
  202. temp=$hv_flag','$main_add','
  203. sed -i '1i '$temp'' ./wm-ctrl${current_ws}.his
  204. fi