小物類いろいろ。作りっぱなし置きっぱなし。
スクリーンショット
- 単一のウィンドウをキャプチャする場合はそのウィンドウをクリック
- 画面全体をキャプチャする場合は第一引数に-rootを与えてどこかを適当にクリック
dwmのパッチ
dwm 6.0で動作確認。たぶん5.8.2や5.9でも使えるはず。
dwm-6.0-rotate.diff - ウィンドウ配置を時計回りに回転する(タイル配置時)
dwm-6.0-statuscolor.diff - ステータス領域に固有の色を設定可能にする
dwm-6.0-moderatetile.diff - タイル配置かつ縦横に見てウィンドウ数が1の場合、余白を入れる
詳細はこちら
dwm用ステータスバー
環境や起動の仕方によってはdwmが終了しても生き残る場合があるので、そのような場合は生存確認をする。
pgrep -aU $(id -u) dwm > /dev/null if [ $? -eq 1 ]; then exit 0 else sleep 30 fi
シンプルなバッテリ状態+時計
あまり画面に余裕のないラップトップ用。
普通の時計
月日と曜日、時刻。
色
16色端末
端末エミュレータの色設定を確認するためのもの。
行番号表示/非表示切替
1 #!/usr/local/bin/bash
2 reset="\033[0m"
3 echo -e "\033[30mblack\t\033[1;30mbold black$reset"
4 echo -e "\033[31mred\t\033[1;31mbold red$reset"
5 echo -e "\033[32mgreen\t\033[1;32mbold green$reset"
6 echo -e "\033[33myellow\t\033[1;33mbold yellow$reset"
7 echo -e "\033[34mblue\t\033[1;34mbold blue$reset"
8 echo -e "\033[35mmagenta\t\033[1;35mbold magenta$reset"
9 echo -e "\033[36mcyan\t\033[1;36mbold cyan$reset"
10 echo -e "\033[37mwhite\t\033[1;37mbold white$reset"
デュアルディスプレイ
ノートPCをプロジェクタ等に接続して外部出力する際の設定を行うスクリプト。
行番号表示/非表示切替
1 #!/bin/sh
2 # vgaout.sh [l|r|a|b] on|off
3
4 # monitor on the laptop
5 LCD=LVDS1
6 # external monitor
7 VGA=VGA1
8
9 orientation='--below'
10 if [ $# -gt 1 ]; then
11 case $1 in
12 l)
13 orientation='--left-of'
14 ;;
15 r)
16 orientation='--right-of'
17 ;;
18 a)
19 orientation='--above'
20 ;;
21 b|*)
22 orientation='--below'
23 ;;
24 esac
25 op=$2
26 else
27 op=$1
28 fi
29
30 case $op in
31 on)
32 echo "$VGA: on($(echo $orientation | tr - \ | sed 's/^ \(.*\)/\1/') $LCD)"
33 xrandr --output $VGA --auto $orientation $LCD
34 ;;
35 off)
36 echo $VGA: off
37 xrandr --output $VGA --off
38 ;;
39 *)
40 echo unknown option
41 exit 1
42 ;;
43 esac