Minor edits.

This commit is contained in:
Derek Taylor
2020-09-02 23:37:14 -05:00
parent 934d29c709
commit e8ae19d7ad
5 changed files with 19 additions and 13 deletions

View File

@@ -82,7 +82,7 @@ myTerminal :: String
myTerminal = "alacritty" -- Sets default terminal
myBrowser :: String
myBrowser = "qutebrowser " -- Sets firefox as browser for tree select
myBrowser = "qutebrowser " -- Sets qutebrowser as browser for tree select
-- myBrowser = myTerminal ++ " -e lynx " -- Sets lynx as browser for tree select
myEditor :: String
@@ -303,7 +303,7 @@ treeselectAction a = TS.treeselectAction a
, Node (TS.TSNode "Wikipedia" "The free encyclopedia" (spawn (myBrowser ++ "https://www.wikipedia.org/"))) []
]
, Node (TS.TSNode "+ Programming" "programming and scripting" (return ()))
[ Node (TS.TSNode "Bash and Shell Scripting" "shell scripting documentation" (return ()))
[ Node (TS.TSNode "+ Bash and Shell Scripting" "shell scripting documentation" (return ()))
[ Node (TS.TSNode "GNU Bash" "Documentation for bash" (spawn (myBrowser ++ "https://www.gnu.org/software/bash/manual/"))) []
, Node (TS.TSNode "r/bash" "Subreddit for bash" (spawn (myBrowser ++ "https://www.reddit.com/r/bash/"))) []
, Node (TS.TSNode "r/commandline" "Subreddit for the command line" (spawn (myBrowser ++ "https://www.reddit.com/r/commandline/"))) []
@@ -331,6 +331,7 @@ treeselectAction a = TS.treeselectAction a
, Node (TS.TSNode "r/Vim" "Subreddit for vim" (spawn (myBrowser ++ "https://www.reddit.com/r/vim/"))) []
, Node (TS.TSNode "Vi/m StackExchange" "Vi/m related questions" (spawn (myBrowser ++ "https://vi.stackexchange.com/"))) []
]
, Node (TS.TSNode "My Start Page" "Custom start page for browser" (spawn (myBrowser ++ "file:///home/dt/.surf/html/homepage.html"))) []
]
, Node (TS.TSNode "+ Config Files" "config files that edit often" (return ()))
[ Node (TS.TSNode "+ emacs configs" "My xmonad config files" (return ()))