Skip to content

Instantly share code, notes, and snippets.

@ssov
Created October 24, 2013 03:05
Show Gist options
  • Save ssov/7130647 to your computer and use it in GitHub Desktop.
Save ssov/7130647 to your computer and use it in GitHub Desktop.
壁紙をランダムにチェンジ。デュアルモニタに対応。
# coding: utf-8
landscape = Dir.glob("#{File.expand_path("~")}/dotfiles/background/landscape/*.jpg")
portrait = Dir.glob("#{File.expand_path("~")}/dotfiles/background/portrait/*.jpg")
puts "feh --bg-fill #{landscape.shuffle.first} #{portrait.shuffle.first}"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment