推荐使用平铺窗口管理器的自动安装程序?

推荐使用平铺窗口管理器的自动安装程序?

在 Ubuntu 上使用平铺窗口管理器自动安装 USB 驱动器、光学介质、硬盘驱动器等的推荐方法是什么?

我是平铺窗口管理器的忠实粉丝,但每当有人拿着 USB 钥匙走到我面前时,我总是看起来像个傻瓜,我疯狂地开始输入命令来创建挂载点,找出 /dev 中设备的名称,挂载等......

我目前正在使用 i3,但由于这对我来说比 awesome/i3/dwm 之间的差异更大......

答案1

您可以使用udisks-glue使用以下配置。请注意,这是正在运行惊人的其中有一个自动挂载页面您可以在那里找到其他不太优雅的(以我并不谦虚的观点来看)解决方案......

 filter disks {
        optical = false
        partition_table = false
        usage = filesystem
 }
 match disks {
        automount = true
        automount_options = sync
        post_mount_command = "notify-send \"Disks-glue mount USB\" \"mounted %device_file on %mount_point\" --icon=/path/to/ikons/usb.png"
        post_unmount_command = "notify-send \"Disks-glue umount USB\" \"umounted %device_file from %mount_point\" --icon=/path/to/ikons/usb.png"
 }

答案2

乌迪斯基(https://github.com/coldfix/udiskie)是平铺 WM 中安装磁盘的最佳解决方案

相关内容