mirror of
https://gitlab.com/dwt1/dotfiles.git
synced 2026-04-22 19:10:24 +10:00
Changed all /home/dt for ~/ because is more generic and easy to deploy
This commit is contained in:
@@ -455,16 +455,16 @@ myKeys =
|
||||
-- Other Dmenu Prompts
|
||||
-- In Xmonad and many tiling window managers, M-p is the default keybinding to
|
||||
-- launch dmenu_run, so I've decided to use M-p plus KEY for these dmenu scripts.
|
||||
, ("M-p c", spawn "/home/dt/dmscripts/dcolors") -- pick color from our scheme
|
||||
, ("M-p e", spawn "/home/dt/dmscripts/dmconf") -- edit config files
|
||||
, ("M-p i", spawn "/home/dt/dmscripts/dmscrot") -- screenshots (images)
|
||||
, ("M-p k", spawn "/home/dt/dmscripts/dmkill") -- kill processes
|
||||
, ("M-p m", spawn "/home/dt/dmscripts/dman") -- manpages
|
||||
, ("M-p o", spawn "/home/dt/dmscripts/dmqute") -- qutebrowser bookmarks/history
|
||||
, ("M-p c", spawn "~/dmscripts/dcolors") -- pick color from our scheme
|
||||
, ("M-p e", spawn "~/dmscripts/dmconf") -- edit config files
|
||||
, ("M-p i", spawn "~/dmscripts/dmscrot") -- screenshots (images)
|
||||
, ("M-p k", spawn "~/dmscripts/dmkill") -- kill processes
|
||||
, ("M-p m", spawn "~/dmscripts/dman") -- manpages
|
||||
, ("M-p o", spawn "~/dmscripts/dmqute") -- qutebrowser bookmarks/history
|
||||
, ("M-p p", spawn "passmenu") -- passmenu
|
||||
, ("M-p q", spawn "/home/dt/dmscripts/dmlogout") -- logout menu
|
||||
, ("M-p r", spawn "/home/dt/dmscripts/dmred") -- reddio (a reddit viewer)
|
||||
, ("M-p s", spawn "/home/dt/dmscripts/dmsearch") -- search various search engines
|
||||
, ("M-p q", spawn "~/dmscripts/dmlogout") -- logout menu
|
||||
, ("M-p r", spawn "~/dmscripts/dmred") -- reddio (a reddit viewer)
|
||||
, ("M-p s", spawn "~/dmscripts/dmsearch") -- search various search engines
|
||||
|
||||
-- Useful programs to have a keybinding for launch
|
||||
, ("M-<Return>", spawn (myTerminal))
|
||||
|
||||
@@ -139,7 +139,7 @@ myStartupHook = do
|
||||
spawnOnce "nitrogen --restore &"
|
||||
spawnOnce "picom &"
|
||||
spawnOnce "/usr/bin/emacs --daemon &"
|
||||
spawnOnce "/home/dt/.config/polybar/launch-xmonad.sh &"
|
||||
spawnOnce "~/.config/polybar/launch-xmonad.sh &"
|
||||
setWMName "LG3D"
|
||||
|
||||
------------------------------------------------------------------------
|
||||
@@ -220,13 +220,13 @@ myBookmarks = [ ("Site Name", myBrowser ++ "https://www.distrotube.com", "Offici
|
||||
]
|
||||
|
||||
myConfigs :: [(String, String, String)]
|
||||
myConfigs = [ ("bashrc", myEditor ++ "/home/dt/.bashrc", "the bourne again shell")
|
||||
, ("doom emacs config.el", myEditor ++ "/home/dt/.doom.d/config.el", "doom emacs config")
|
||||
, ("doom emacs init.el", myEditor ++ "/home/dt/.doom.d/init.el", "doom emacs init")
|
||||
, ("dwm", myEditor ++ "/home/dt/dwm-distrotube/config.h", "dwm config file")
|
||||
, ("qtile", myEditor ++ "/home/dt/.config/qtile/config.py", "qtile config")
|
||||
, ("xmonad.hs", myEditor ++ "/home/dt/.xmonad/xmonad.hs", "xmonad config")
|
||||
, ("zshrc", myEditor ++ "/home/dt/.zshrc", "config for the z shell")
|
||||
myConfigs = [ ("bashrc", myEditor ++ "~/.bashrc", "the bourne again shell")
|
||||
, ("doom emacs config.el", myEditor ++ "~/.doom.d/config.el", "doom emacs config")
|
||||
, ("doom emacs init.el", myEditor ++ "~/.doom.d/init.el", "doom emacs init")
|
||||
, ("dwm", myEditor ++ "~/dwm-distrotube/config.h", "dwm config file")
|
||||
, ("qtile", myEditor ++ "~/.config/qtile/config.py", "qtile config")
|
||||
, ("xmonad.hs", myEditor ++ "~/.xmonad/xmonad.hs", "xmonad config")
|
||||
, ("zshrc", myEditor ++ "~/.zshrc", "config for the z shell")
|
||||
]
|
||||
|
||||
-- Let's take myApplications, myBookmarks and myConfigs and take only
|
||||
|
||||
@@ -217,13 +217,13 @@ myBookmarks = [ ("Site Name", myBrowser ++ "https://www.distrotube.com", "Offici
|
||||
]
|
||||
|
||||
myConfigs :: [(String, String, String)]
|
||||
myConfigs = [ ("bashrc", myEditor ++ "/home/dt/.bashrc", "the bourne again shell")
|
||||
, ("doom emacs config.el", myEditor ++ "/home/dt/.doom.d/config.el", "doom emacs config")
|
||||
, ("doom emacs init.el", myEditor ++ "/home/dt/.doom.d/init.el", "doom emacs init")
|
||||
, ("dwm", myEditor ++ "/home/dt/dwm-distrotube/config.h", "dwm config file")
|
||||
, ("qtile", myEditor ++ "/home/dt/.config/qtile/config.py", "qtile config")
|
||||
, ("xmonad.hs", myEditor ++ "/home/dt/.xmonad/xmonad.hs", "xmonad config")
|
||||
, ("zshrc", myEditor ++ "/home/dt/.zshrc", "config for the z shell")
|
||||
myConfigs = [ ("bashrc", myEditor ++ "~/.bashrc", "the bourne again shell")
|
||||
, ("doom emacs config.el", myEditor ++ "~/.doom.d/config.el", "doom emacs config")
|
||||
, ("doom emacs init.el", myEditor ++ "~/.doom.d/init.el", "doom emacs init")
|
||||
, ("dwm", myEditor ++ "~/dwm-distrotube/config.h", "dwm config file")
|
||||
, ("qtile", myEditor ++ "~/.config/qtile/config.py", "qtile config")
|
||||
, ("xmonad.hs", myEditor ++ "~/.xmonad/xmonad.hs", "xmonad config")
|
||||
, ("zshrc", myEditor ++ "~/.zshrc", "config for the z shell")
|
||||
]
|
||||
|
||||
-- Let's take myApplications, myBookmarks and myConfigs and take only
|
||||
@@ -758,9 +758,9 @@ myKeys =
|
||||
main :: IO ()
|
||||
main = do
|
||||
-- Launching three instances of xmobar on their monitors.
|
||||
xmproc0 <- spawnPipe "xmobar -x 0 /home/dt/.config/xmobar/xmobarrc0"
|
||||
xmproc1 <- spawnPipe "xmobar -x 1 /home/dt/.config/xmobar/xmobarrc2"
|
||||
xmproc2 <- spawnPipe "xmobar -x 2 /home/dt/.config/xmobar/xmobarrc1"
|
||||
xmproc0 <- spawnPipe "xmobar -x 0 ~/.config/xmobar/xmobarrc0"
|
||||
xmproc1 <- spawnPipe "xmobar -x 1 ~/.config/xmobar/xmobarrc2"
|
||||
xmproc2 <- spawnPipe "xmobar -x 2 ~/.config/xmobar/xmobarrc1"
|
||||
-- the xmonad, ya know...what the WM is named after!
|
||||
xmonad $ ewmh def
|
||||
{ manageHook = ( isFullscreen --> doFullFloat ) <+> myManageHook <+> manageDocks
|
||||
|
||||
@@ -217,13 +217,13 @@ myBookmarks = [ ("Site Name", myBrowser ++ "https://www.distrotube.com", "Offici
|
||||
]
|
||||
|
||||
myConfigs :: [(String, String, String)]
|
||||
myConfigs = [ ("bashrc", myEditor ++ "/home/dt/.bashrc", "the bourne again shell")
|
||||
, ("doom emacs config.el", myEditor ++ "/home/dt/.doom.d/config.el", "doom emacs config")
|
||||
, ("doom emacs init.el", myEditor ++ "/home/dt/.doom.d/init.el", "doom emacs init")
|
||||
, ("dwm", myEditor ++ "/home/dt/dwm-distrotube/config.h", "dwm config file")
|
||||
, ("qtile", myEditor ++ "/home/dt/.config/qtile/config.py", "qtile config")
|
||||
, ("xmonad.hs", myEditor ++ "/home/dt/.xmonad/xmonad.hs", "xmonad config")
|
||||
, ("zshrc", myEditor ++ "/home/dt/.zshrc", "config for the z shell")
|
||||
myConfigs = [ ("bashrc", myEditor ++ "~/.bashrc", "the bourne again shell")
|
||||
, ("doom emacs config.el", myEditor ++ "~/.doom.d/config.el", "doom emacs config")
|
||||
, ("doom emacs init.el", myEditor ++ "~/.doom.d/init.el", "doom emacs init")
|
||||
, ("dwm", myEditor ++ "~/dwm-distrotube/config.h", "dwm config file")
|
||||
, ("qtile", myEditor ++ "~/.config/qtile/config.py", "qtile config")
|
||||
, ("xmonad.hs", myEditor ++ "~/.xmonad/xmonad.hs", "xmonad config")
|
||||
, ("zshrc", myEditor ++ "~/.zshrc", "config for the z shell")
|
||||
]
|
||||
|
||||
-- Let's take myApplications, myBookmarks and myConfigs and take only
|
||||
@@ -743,9 +743,9 @@ myKeys =
|
||||
main :: IO ()
|
||||
main = do
|
||||
-- Launching three instances of xmobar on their monitors.
|
||||
xmproc0 <- spawnPipe "xmobar -x 0 /home/dt/.config/xmobar/xmobarrc0"
|
||||
xmproc1 <- spawnPipe "xmobar -x 1 /home/dt/.config/xmobar/xmobarrc2"
|
||||
xmproc2 <- spawnPipe "xmobar -x 2 /home/dt/.config/xmobar/xmobarrc1"
|
||||
xmproc0 <- spawnPipe "xmobar -x 0 ~/.config/xmobar/xmobarrc0"
|
||||
xmproc1 <- spawnPipe "xmobar -x 1 ~/.config/xmobar/xmobarrc2"
|
||||
xmproc2 <- spawnPipe "xmobar -x 2 ~/.config/xmobar/xmobarrc1"
|
||||
-- the xmonad, ya know...what the WM is named after!
|
||||
xmonad $ ewmh def
|
||||
{ manageHook = ( isFullscreen --> doFullFloat ) <+> myManageHook <+> manageDocks
|
||||
|
||||
@@ -217,13 +217,13 @@ myBookmarks = [ ("Site Name", myBrowser ++ "https://www.distrotube.com", "Offici
|
||||
]
|
||||
|
||||
myConfigs :: [(String, String, String)]
|
||||
myConfigs = [ ("bashrc", myEditor ++ "/home/dt/.bashrc", "the bourne again shell")
|
||||
, ("doom emacs config.el", myEditor ++ "/home/dt/.doom.d/config.el", "doom emacs config")
|
||||
, ("doom emacs init.el", myEditor ++ "/home/dt/.doom.d/init.el", "doom emacs init")
|
||||
, ("dwm", myEditor ++ "/home/dt/dwm-distrotube/config.h", "dwm config file")
|
||||
, ("qtile", myEditor ++ "/home/dt/.config/qtile/config.py", "qtile config")
|
||||
, ("xmonad.hs", myEditor ++ "/home/dt/.xmonad/xmonad.hs", "xmonad config")
|
||||
, ("zshrc", myEditor ++ "/home/dt/.zshrc", "config for the z shell")
|
||||
myConfigs = [ ("bashrc", myEditor ++ "~/.bashrc", "the bourne again shell")
|
||||
, ("doom emacs config.el", myEditor ++ "~/.doom.d/config.el", "doom emacs config")
|
||||
, ("doom emacs init.el", myEditor ++ "~/.doom.d/init.el", "doom emacs init")
|
||||
, ("dwm", myEditor ++ "~/dwm-distrotube/config.h", "dwm config file")
|
||||
, ("qtile", myEditor ++ "~/.config/qtile/config.py", "qtile config")
|
||||
, ("xmonad.hs", myEditor ++ "~/.xmonad/xmonad.hs", "xmonad config")
|
||||
, ("zshrc", myEditor ++ "~/.zshrc", "config for the z shell")
|
||||
]
|
||||
|
||||
-- Let's take myApplications, myBookmarks and myConfigs and take only
|
||||
@@ -829,9 +829,9 @@ myKeys =
|
||||
main :: IO ()
|
||||
main = do
|
||||
-- Launching three instances of xmobar on their monitors.
|
||||
xmproc0 <- spawnPipe "xmobar -x 0 /home/dt/.config/xmobar/xmobarrc0"
|
||||
xmproc1 <- spawnPipe "xmobar -x 1 /home/dt/.config/xmobar/xmobarrc2"
|
||||
xmproc2 <- spawnPipe "xmobar -x 2 /home/dt/.config/xmobar/xmobarrc1"
|
||||
xmproc0 <- spawnPipe "xmobar -x 0 ~/.config/xmobar/xmobarrc0"
|
||||
xmproc1 <- spawnPipe "xmobar -x 1 ~/.config/xmobar/xmobarrc2"
|
||||
xmproc2 <- spawnPipe "xmobar -x 2 ~/.config/xmobar/xmobarrc1"
|
||||
-- the xmonad, ya know...what the WM is named after!
|
||||
xmonad $ ewmh def
|
||||
{ manageHook = ( isFullscreen --> doFullFloat ) <+> myManageHook <+> manageDocks
|
||||
|
||||
@@ -352,16 +352,16 @@ myKeys =
|
||||
-- Other Dmenu Prompts
|
||||
-- In Xmonad and many tiling window managers, M-p is the default keybinding to
|
||||
-- launch dmenu_run, so I've decided to use M-p plus KEY for these dmenu scripts.
|
||||
, ("M-p c", spawn "/home/dt/dmscripts/dcolors") -- pick color from our scheme
|
||||
, ("M-p e", spawn "/home/dt/dmscripts/dmconf") -- edit config files
|
||||
, ("M-p i", spawn "/home/dt/dmscripts/dmscrot") -- screenshots (images)
|
||||
, ("M-p k", spawn "/home/dt/dmscripts/dmkill") -- kill processes
|
||||
, ("M-p m", spawn "/home/dt/dmscripts/dman") -- manpages
|
||||
, ("M-p o", spawn "/home/dt/dmscripts/dmqute") -- qutebrowser bookmarks/history
|
||||
, ("M-p c", spawn "~/dmscripts/dcolors") -- pick color from our scheme
|
||||
, ("M-p e", spawn "~/dmscripts/dmconf") -- edit config files
|
||||
, ("M-p i", spawn "~/dmscripts/dmscrot") -- screenshots (images)
|
||||
, ("M-p k", spawn "~/dmscripts/dmkill") -- kill processes
|
||||
, ("M-p m", spawn "~/dmscripts/dman") -- manpages
|
||||
, ("M-p o", spawn "~/dmscripts/dmqute") -- qutebrowser bookmarks/history
|
||||
, ("M-p p", spawn "passmenu") -- passmenu
|
||||
, ("M-p q", spawn "/home/dt/dmscripts/dmlogout") -- logout menu
|
||||
, ("M-p r", spawn "/home/dt/dmscripts/dmred") -- reddio (a reddit viewer)
|
||||
, ("M-p s", spawn "/home/dt/dmscripts/dmsearch") -- search various search engines
|
||||
, ("M-p q", spawn "~/dmscripts/dmlogout") -- logout menu
|
||||
, ("M-p r", spawn "~/dmscripts/dmred") -- reddio (a reddit viewer)
|
||||
, ("M-p s", spawn "~/dmscripts/dmsearch") -- search various search engines
|
||||
|
||||
-- Useful programs to have a keybinding for launch
|
||||
, ("M-<Return>", spawn (myTerminal))
|
||||
|
||||
Reference in New Issue
Block a user