diff --git a/chunkwm/.chunkwmrc b/chunkwm/.chunkwmrc deleted file mode 100755 index 9239f6b..0000000 --- a/chunkwm/.chunkwmrc +++ /dev/null @@ -1,72 +0,0 @@ -#!/bin/bash - -# -# NOTE: specify the absolutepath to the directory to use when -# loading a plugin. '~' expansion is supported. -# - -chunkc core::plugin_dir /usr/local/opt/chunkwm/share/chunkwm/plugins - -# -# NOTE: if enabled, chunkwm will monitor the specified plugin_dir -# and automatically reload any '.so' file that is changed. -# - -chunkc core::hotload 1 -chunkc core::unload tiling.so -chunkc core::unload ffm.so -chunkc core::unload border.so - -# -# NOTE: the following are config variables for the chunkwm-tiling plugin. -# - -chunkc set global_desktop_mode bsp -chunkc set 2_desktop_mode monocle -chunkc set 5_desktop_mode float - -chunkc set global_desktop_offset_top 20 -chunkc set global_desktop_offset_bottom 20 -chunkc set global_desktop_offset_left 20 -chunkc set global_desktop_offset_right 20 -chunkc set global_desktop_offset_gap 20 - -chunkc set desktop_padding_step_size 10.0 -chunkc set desktop_gap_step_size 5.0 - -chunkc set bsp_spawn_left 1 -chunkc set bsp_optimal_ratio 1.618 -chunkc set bsp_split_mode optimal -chunkc set bsp_split_ratio 0.5 - -chunkc set monitor_focus_cycle 1 -chunkc set window_focus_cycle monitor - -chunkc set mouse_follows_focus 0 -chunkc set window_float_next 0 -chunkc set window_float_center 1 -chunkc set window_region_locked 1 - -chunkc set mouse_modifier fn - -chunkc set preselect_border_color 0xaad75f5f -chunkc set preselect_border_width 5 -chunkc set preselect_border_radius 0 - -chunkc set focused_border_color 0xff0f6288 -chunkc set focused_border_width 3 -chunkc set focused_border_radius 0 -chunkc set focused_border_skip_floating 0 - -# -# NOTE: specify plugins to load when chunkwm starts. -# if chunkc plugin_dir is not set, the absolutepath is necessary. -# - -chunkc core::load border.so -chunkc core::load tiling.so -chunkc core::load blur.so - -chunkc tiling::rule --owner Finder --name Copy --state float & -chunkc tiling::rule --owner \"App Store\" --state float & -chunkc tiling::rule --owner Doom Emacs --subrole "AXStandardWindow" --except "^$" --state tile diff --git a/chunkwm/.skhdrc b/chunkwm/.skhdrc deleted file mode 100644 index bb606de..0000000 --- a/chunkwm/.skhdrc +++ /dev/null @@ -1,74 +0,0 @@ -# enter fullscreen mode for the focused container -alt - f : chunkc tiling::window --toggle fullscreen - -# change focus between tiling / floating windows -shift + alt - space : chunkc tiling::window --toggle float - -# change layout of desktop -alt - t : chunkc tiling::desktop --layout bsp -alt - m : chunkc tiling::desktop --layout monocle - -# kill focused window -shift + alt - q : chunkc tiling::window --close - -# change focus -alt - h : chunkc tiling::window --focus west -alt - j : chunkc tiling::window --focus south -alt - k : chunkc tiling::window --focus north -alt - l : chunkc tiling::window --focus east - -alt - p : chunkc tiling::window --focus prev -alt - n : chunkc tiling::window --focus next - -# move focused window -shift + alt - h : chunkc tiling::window --warp west -shift + alt - j : chunkc tiling::window --warp south -shift + alt - k : chunkc tiling::window --warp north -shift + alt - l : chunkc tiling::window --warp east - -alt - r : chunkc tiling::desktop --rotate 90 - -# move focused container to workspace -shift + alt - m : chunkc tiling::window --send-to-desktop $(chunkc get _last_active_desktop) -shift + alt - p : chunkc tiling::window --send-to-desktop prev -shift + alt - n : chunkc tiling::window --send-to-desktop next -shift + alt - 1 : chunkc tiling::window --send-to-desktop 1 -shift + alt - 2 : chunkc tiling::window --send-to-desktop 2 -shift + alt - 3 : chunkc tiling::window --send-to-desktop 3 -shift + alt - 4 : chunkc tiling::window --send-to-desktop 4 -shift + alt - 5 : chunkc tiling::window --send-to-desktop 5 -shift + alt - 6 : chunkc tiling::window --send-to-desktop 6 - -shift + alt - a : chunkc tiling::window --use-temporary-ratio 0.05 --adjust-window-edge west; chunkc tiling::window --use-temporary-ratio -0.05 --adjust-window-edge east -shift + alt - s : chunkc tiling::window --use-temporary-ratio 0.05 --adjust-window-edge south; chunkc tiling::window --use-temporary-ratio -0.05 --adjust-window-edge north -shift + alt - w : chunkc tiling::window --use-temporary-ratio 0.05 --adjust-window-edge north; chunkc tiling::window --use-temporary-ratio -0.05 --adjust-window-edge south -shift + alt - d : chunkc tiling::window --use-temporary-ratio 0.05 --adjust-window-edge east; chunkc tiling::window --use-temporary-ratio -0.05 --adjust-window-edge west - -# create desktop, move window and follow focus -shift + cmd - n : chunkc tiling::desktop --create;\ - id=$(chunkc tiling::query --desktops-for-monitor $(chunkc tiling::query --monitor-for-desktop $(chunkc tiling::query --desktop id)));\ - chunkc tiling::window --send-to-desktop $(echo ${id##* });\ - chunkc tiling::desktop --focus $(echo ${id##* }) - -# create desktop and follow focus -cmd + alt - n : chunkc tiling::desktop --create;\ - id=$(chunkc tiling::query --desktops-for-monitor $(chunkc tiling::query --monitor-for-desktop $(chunkc tiling::query --desktop id)));\ - chunkc tiling::desktop --focus $(echo ${id##* }) -# destroy desktop -cmd + alt - w : chunkc tiling::desktop --annihilate - -# send window to desktop and follow focus -shift + cmd - x : chunkc tiling::window --send-to-desktop $(chunkc get _last_active_desktop); chunkc tiling::desktop --focus $(chunkc get _last_active_desktop) -shift + cmd - z : chunkc tiling::window --send-to-desktop prev; chunkc tiling::desktop --focus prev -shift + cmd - c : chunkc tiling::window --send-to-desktop next; chunkc tiling::desktop --focus next -shift + cmd - 1 : chunkc tiling::window --send-to-desktop 1; chunkc tiling::desktop --focus 1 -shift + cmd - 2 : chunkc tiling::window --send-to-desktop 2; chunkc tiling::desktop --focus 2 -shift + cmd - 3 : chunkc tiling::window --send-to-desktop 3; chunkc tiling::desktop --focus 3 -shift + cmd - 4 : chunkc tiling::window --send-to-desktop 4; chunkc tiling::desktop --focus 4 -shift + cmd - 5 : chunkc tiling::window --send-to-desktop 5; chunkc tiling::desktop --focus 5 -shift + cmd - 6 : chunkc tiling::window --send-to-desktop 6; chunkc tiling::desktop --focus 6 -shift + cmd - 7 : chunkc tiling::window --send-to-desktop 7; chunkc tiling::desktop --focus 7 - -# toggle sticky, float and resize to picture-in-picture size -alt - s : chunkc tiling::window --toggle sticky;\ -chunkc tiling::window --grid-layout 5:5:4:0:1:1 diff --git a/jobber/.jobber b/jobber/.jobber deleted file mode 100644 index 5a4bb09..0000000 --- a/jobber/.jobber +++ /dev/null @@ -1,37 +0,0 @@ -version: 1.4 - -prefs: - logPath: /home/powellc/var/log/jobber.log - runLog: - type: file - path: /home/powellc/var/run/jobber - maxFileLen: 100m - maxHistories: 2 - -jobs: - CheckForNewWallpaper: - cmd: /home/powellc/.bin/changepaper.sh - time: 0 */30 - onError: Stop - notifyOnFailure: - - *filesystemSink - - SyncMail: - cmd: /home/powellc/.bin/syncmail.sh - time: 0 */5 - onError: Stop - notifyOnFailure: - - *filesystemSink - -resultSinks: - - &filesystemSink - type: filesystem - path: /home/bob/tmp/jobber-results - data: - - stdout - - stderr - maxAgeDays: 10 - - - &textAirQuality - type: program - path: /home/bob/text-air-quality.sh diff --git a/nethack/.config/nethack/nethackrc b/nethack/.config/nethack/nethackrc new file mode 100644 index 0000000..9160492 --- /dev/null +++ b/nethack/.config/nethack/nethackrc @@ -0,0 +1,5 @@ +OPTIONS=boulder:0, autodig, !cmdassist, norest_on_space +OPTIONS=align:neutral, !autopickup, autoquiver, catname:Detra, checkpoint +OPTIONS=confirm, dogname:Detra, gender:male, horsename:Detra, legacy +OPTIONS=name:Alx, safe_pet, showexp, showrace, showscore, silent, time +OPTIONS=color diff --git a/radiotray-ng/.config/radiotray-ng/bookmarks.json b/radiotray-ng/.config/radiotray-ng/bookmarks.json deleted file mode 100644 index 24ebb83..0000000 --- a/radiotray-ng/.config/radiotray-ng/bookmarks.json +++ /dev/null @@ -1,34 +0,0 @@ -[ - { - "group" : "root", - "image" : "", - "stations" : [ - { - "image" : "", - "name" : "Unblink", - "url" : "https://stream.unbl.ink/mopidy" - }, - { - "image" : "", - "name" : "Maine Public", - "url" : "https://playerservices.streamtheworld.com/api/livestream-redirect/WMEAFM.mp3" - }, - { - "image" : "", - "name" : "Anonradio", - "url" : "http://anonradio.net:8000/anonradio" - }, - { - "image" : "", - "name" : "Tildeverse", - "url" : "http://radio.tildeverse.org/radio/8000/radio.mp3" - }, - { - "image" : "", - "name" : "Salut", - "notifications" : true, - "url" : "http://www.salutcestcool.com/radio/playlist.m3u" - } - ] - } -] diff --git a/radiotray-ng/.config/radiotray-ng/radiotray-ng.json b/radiotray-ng/.config/radiotray-ng/radiotray-ng.json deleted file mode 100644 index 27b75e7..0000000 --- a/radiotray-ng/.config/radiotray-ng/radiotray-ng.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "bookmarks" : "/home/powellc/.config/radiotray-ng/bookmarks.json", - "last-station" : "Unblink", - "last-station-group" : "root", - "last-station-notifications" : true, - "notification-verbose" : true, - "notifications" : true, - "split-title" : true, - "volume-level" : 100 -} diff --git a/radiotray-ng/.config/radiotray-ng/rtng-bookmark-editor.cfg b/radiotray-ng/.config/radiotray-ng/rtng-bookmark-editor.cfg deleted file mode 100644 index fb21331..0000000 --- a/radiotray-ng/.config/radiotray-ng/rtng-bookmark-editor.cfg +++ /dev/null @@ -1,12 +0,0 @@ -[main] -x=1282 -y=29 -w=627 -h=991 -split=163 -[group] -col1=160 -[station] -col1=160 -col2=340 -col3=60