以下のスクリプトは、デスクトップを次のように再配置します。
...次のようなアルファベット順に並べられたデスクトップに:
注文済み:
さらに、任意の数のアイテムを垂直方向(行)に設定できます。水平間隔はそれに応じて自動的に設定されます。
#!/usr/bin/env python3
import subprocess
import os
import math
import time
# set the size of the squares (indirectly, by setting n- rows)
rows = 10
# set x/y offset of the matrix if you want
x_offs = -15
y_offs = -30
def get(cmd):
return subprocess.check_output(cmd).decode("utf-8")
dt = get(["xdg-user-dir", "DESKTOP"]).strip()
# find size of the left screen
left = [int(n) for n in sum(
[s.split("+")[0].split("x") for s in \
get("xrandr").split() if "+0+" in s], [])]
# size of the squares (icon area)
sqr = int((left[1]/rows))
# number of cols, squares
cols = math.floor(left[0]/sqr)
n_sqrs = cols*rows
# define positions (matrix)
pos = list([[
str(int((math.floor(n/rows)*sqr)+(sqr/2)+x_offs)),
str(int(((n%rows)*sqr)+(sqr/2)+y_offs)),
] for n in range(n_sqrs)])
# list iconfiles, split into dirs and files, sort & combine
iconlist = [os.path.join(dt, item) for item in \
sorted([item for item in os.listdir(dt) if not "~" in item])]
dirs = []; files = []
for it in iconlist:
if os.path.isfile(it):
files.append(it)
else:
dirs.append(it)
iconlist = dirs+files
# place icons in position(s)
for i, item in enumerate(iconlist):
location = (",").join(pos[i])
subprocess.call(["gvfs-set-attribute", "-t", "string", item,
'metadata::nautilus-icon-position', location])
# simulate F5 to refresh desktop, retry for max 20 secs if not in front
t = 0
while t < 40:
w_id = [l.split()[-1] for l in get(["xprop", "-root"]).splitlines() \
if "_NET_ACTIVE_WINDOW(WINDOW):" in l][0]
if "desktop" in get(["xprop", "-id", w_id, "WM_CLASS"]):
subprocess.Popen(["xdotool", "key", "F5"])
break
else:
time.sleep(0.5)
t += 1
スクリプトにはxdotool
が必要です。
Sudo apt-get install xdotool
スクリプトを空のファイルにコピーし、arrange_dt.py
として保存します
次のコマンドでテスト実行します:
python3 /path/to/arrange_dt.py
20秒以内にデスクトップをクリックすると、新しい配置が適用されます。デスクトップが前面にあるときにショートカットからスクリプトを実行すると、配置がすぐに適用されます。デスクトップが最前面にない場合、スクリプトは最大20秒間待機します。時間を超過する場合は、単に F5 応募する。
すべてが正常に機能する場合は、ショートカットキーに追加します。[システム設定]> [キーボード]> [ショートカット]> [カスタムショートカット]を選択します。 「+」をクリックして、コマンドを追加します。
python3 /path/to/arrange_dt.py
次の3つの方法でアイコンの配置に影響を与えることができます。
「タイル」のサイズを設定します
# set the size of the squares (indirectly, by setting n- rows)
rows = 10
これにより、アイコンの(最大)数が垂直に設定されます。 「タイル」のsizeは、等しい(x、y)
水平オフセットを設定します
x_offs = -15
これにより、全体としてアイコンマトリックスのデフォルト位置からのx-偏差が設定されます。
垂直オフセットを設定します
y_offs = -30
これにより、アイコンマトリックスのデフォルト位置からのy偏差が設定されます。
例:
# set the size of the squares (indirectly, by setting n- rows)
rows = 6
# set x/y offset of the matrix if you want
x_offs = 50
y_offs = 10
以下の説明は、ほとんどの場合、コーディングではなく、概念の説明です
python
のos.listdir(Desktop)
を使用してデスクトップ上のアイテムをリストします次に、マトリックスを作成します。
以下の画像では、これらの「仮想」正方形が表示されています。赤い点はアイコンが配置されている場所です。
その後、最初のアイコンを正方形の半分のサイズ(水平および垂直の両方)に配置するだけです。
他のすべてのアイコンのx-positionを見つけるには、それらのindex(ゼロから始まる)を数字で割るだけです。切り捨てられた行。結果は、最初のアイコン(左上)のx位置に追加されます。例:
item 10 (index 9): 9/4 = 2,25, rounded down: 2
x position = position of icon 0 + 2 x the width of a square
item 17 (index 16): 16/4 = 4, rounded down: 4
x position = position of icon 0 + 4 x the width of a square
他のすべてのアイコンのy-positionを見つけるには、インデックスのremainderと行数が必要です。結果x正方形の幅は、最初のアイコン(左上)のy位置に追加されます。例:
item 10 (index 9): 9%4 = 1
y position = position of icon 0 + 1 x the height of a square
item 17 (index 16): 16%4 = 0
y position = position of icon 0 + 0 x the height of a square
続いて、次のコマンドを使用してデスクトップにアイコンを配置します。
gvfs-set-attribute <path_to_dir_or_file> metadata::nautilus-icon-position x,y
最後に、押す必要があります F5 デスクトップを前にして、変更されたレイアウトを適用します(デスクトップを更新します)。その場合、すぐに実行されます。そうでない場合、デスクトップが前面にある場合、スクリプトは20秒以内に再試行します。 F5 そして休憩。 20秒後にデスクトップstillが前面になかった場合、手動で押す必要があります F5。
上記の質問に一部触発されて、アイコンを4つの異なる方法でソートできるようにすることでこの問題を解決するiconic
を作成しました。さらに、次のことを行います。
スクリプトは github で取得できます。
メイン画面は次のとおりです。
iconicの github ページにアクセスして、他のすべての画面、説明、およびスクリプトのコピーを確認します。