new fortune. added missing sudo for game perm fixer.
authorChris Koeritz <fred@gruntose.com>
Fri, 16 May 2014 19:06:07 +0000 (15:06 -0400)
committerChris Koeritz <fred@gruntose.com>
Fri, 16 May 2014 19:06:07 +0000 (15:06 -0400)
infobase/fortunes.dat
scripts/files/fix_game_perms.sh

index 332f2a27dcab4dc49cbe15c783d9a733bac8dd0d..a7aff3e4e0eb940eea4f3da54310ce5358208fd6 100644 (file)
@@ -40137,3 +40137,19 @@ not four kinds of spiritual individuals.
   -- Jamgön Kongtrul, from "The Treasury of Knowledge: Book Seven and Book
      Eight, Parts One and Two: Foundations of Buddhist Study and Practice",
      published by Shambhala Publications.
+~
+    One way to prevent mental suffering is to observe ourselves and figure out
+what triggers our problem.  If we can identify what makes our blood pressure
+rise and causes us to feel upset, then we have taken a big step toward seeing
+the larger picture.  With this wider perspective, there is less chance that we
+will jump back into an old habitual pattern that only makes us feel bad.
+    It is not that we have to stop going to all family holidays, but that we
+figure out ways to enjoy the parts that are enjoyable, like the delicious food
+and the chance to connect with people, and to feel more neutral and detached
+about the annoying or hurtful moments.  We often place too many expectations
+and requirements on ourselves and those around us.  We could give the
+situation a little space and see what develops.  The kindest thing we can do
+in these situations is to remain calm and refrain from causing more
+difficulty.
+  -- Khenpo Gawang, from "Your Mind Is Your Teacher: Self-Awakening through
+     Contemplative Meditation", published by Shambhala Publications
index 4dd7a913fab1d00f79b9dee54b759cdbca742afd..9d21480842daa73cd5032e2dfe4dc7b267eabd3c 100644 (file)
@@ -3,8 +3,8 @@
 # fixes the permissions of files in the local games directory so that
 # everyone can run or read them if the owner could.
 
-find /home/games -type f -perm /100 -exec chmod a+x {} ';'
-find /home/games -type f -perm /400 -exec chmod a+r {} ';'
+sudo find /home/games -type f -perm /100 -exec chmod a+x {} ';'
+sudo find /home/games -type f -perm /400 -exec chmod a+r {} ';'
 
-find /home/games -type d -exec chmod a+rx {} ';'
+sudo find /home/games -type d -exec chmod a+rx {} ';'