diff options
author | Vidhu Kant Sharma <vidhukant@vidhukant.com> | 2024-03-09 20:55:23 +0530 |
---|---|---|
committer | Vidhu Kant Sharma <vidhukant@vidhukant.com> | 2024-03-09 20:55:23 +0530 |
commit | 206f12417109bbf1508eab4593fea3fb9fb35ad9 (patch) | |
tree | 5d430c5e3d09f2a417beaf49bd02723b6a826c0b | |
parent | d459b0d44ff0af51d5bd70a9309c4292b304792a (diff) |
starting flameshot in systray
-rw-r--r-- | .config/XMonad/lib/DvorakKeybindings.hs | 3 | ||||
-rw-r--r-- | .config/mpd/database | bin | 8448 -> 7854 bytes | |||
-rw-r--r-- | .config/mpd/mpd.conf | 2 | ||||
-rw-r--r-- | .doom.d/custom.el | 2 | ||||
-rw-r--r-- | .doom.d/init.el | 4 | ||||
-rwxr-xr-x | .xprofile | 12 |
6 files changed, 10 insertions, 13 deletions
diff --git a/.config/XMonad/lib/DvorakKeybindings.hs b/.config/XMonad/lib/DvorakKeybindings.hs index 31a0cd4..caebdc8 100644 --- a/.config/XMonad/lib/DvorakKeybindings.hs +++ b/.config/XMonad/lib/DvorakKeybindings.hs @@ -25,7 +25,7 @@ import Util import Defaults import Scratchpads -myWorkspaceKeys = [xK_1, xK_2, xK_3, xK_4, xK_5, xK_6, xK_7, xK_8, xK_9, xK_B] +myWorkspaceKeys = [xK_1, xK_2, xK_3, xK_4, xK_5, xK_6, xK_7, xK_8, xK_9, xK_0] --myWorkspaceKeys = [xK_ampersand, xK_bracketleft, xK_braceleft, xK_braceright, xK_parenleft, xK_equal, xK_asterisk, xK_parenright, xK_plus, xK_bracketright] myWorkspaces = wsKeys myWorkspaceKeys myWorkspaceNames @@ -33,6 +33,7 @@ myKeybindings :: [((KeyMask, KeySym), X ())] myKeybindings = [ ((myModMask, xK_Return), spawn myTerminal) , ((myModShiftMask, xK_Return), spawn myLockscreen) + , ((myModMask .|. shiftMask, xK_c), kill1) , ((myModMask, xK_s), spawn myLauncher) -- view prev/next workspaces diff --git a/.config/mpd/database b/.config/mpd/database Binary files differindex 07df128..0a09bf8 100644 --- a/.config/mpd/database +++ b/.config/mpd/database diff --git a/.config/mpd/mpd.conf b/.config/mpd/mpd.conf index 15b0859..e13748b 100644 --- a/.config/mpd/mpd.conf +++ b/.config/mpd/mpd.conf @@ -2,7 +2,7 @@ pid_file "/home/zt/.local/share/mpd/pid" #state_file "/home/zt/.local/share/mpd/state" db_file "/home/zt/.config/mpd/database" playlist_directory "/home/zt/.config/mpd/playlists" -music_directory "/home/zt/hdd/Music/lib" +music_directory "/home/zt/hdd/Music/Songs" port "6600" auto_update "yes" log_file "syslog" diff --git a/.doom.d/custom.el b/.doom.d/custom.el index 29d6b70..d1fb65e 100644 --- a/.doom.d/custom.el +++ b/.doom.d/custom.el @@ -48,4 +48,4 @@ (assoc-delete-all "Open org-agenda" +doom-dashboard-menu-sections) (assoc-delete-all "Jump to bookmark" +doom-dashboard-menu-sections) (assoc-delete-all "Open documentation" +doom-dashboard-menu-sections) -(assoc-delete-all "Open private configuration" +doom-dashboard-menu-sections) +(assoc-delete-all "Open private configuration" +doom-dashboard-menu-sections)
\ No newline at end of file diff --git a/.doom.d/init.el b/.doom.d/init.el index 817929b..f2db2ad 100644 --- a/.doom.d/init.el +++ b/.doom.d/init.el @@ -175,14 +175,14 @@ :email ;;(mu4e +org +gmail) ;;notmuch - ;;(wanderlust +gmail) + wanderlust :app ;;calendar ;;emms ;;everywhere ; *leave* Emacs!? You must be joking ;;irc ; how neckbeards socialize - (rss +org) ; emacs as an RSS reader + rss ; emacs as an RSS reader ;;twitter ; twitter client https://twitter.com/vnought :config @@ -4,18 +4,17 @@ [[ -f ~/.config/zsh/.zshenv ]] && source ~/.config/zsh/.zshenv # keyboard layout -xmodmap /home/zt/.Xmodmap & +# xmodmap /home/zt/.Xmodmap & # makes gnome-keyring work dbus-update-activation-environment --all & # autostart apps for both xmonad and any other DE emacs --daemon & -# mpd & # now started by systemd #virtual_mic.sh & -# autostart apps for both xmonad and dwm -if [[ "$DESKTOP_SESSION" = "xmonad" || "$DESKTOP_SESSION" = "dwm" ]]; then +# autostart apps only for XMonad +if [[ "$DESKTOP_SESSION" = "xmonad" ]]; then screensetup.sh & # autostart apps @@ -25,11 +24,8 @@ if [[ "$DESKTOP_SESSION" = "xmonad" || "$DESKTOP_SESSION" = "dwm" ]]; then udiskie & # glava -dm radial & -fi - -# autostart apps just for xmonad -if [[ "$DESKTOP_SESSION" = "xmonad" ]]; then polystart & nm-applet & blueman-applet & + flameshot & fi |