changed projects names so they all include the letters "urr" for some reason

This commit is contained in:
Paul Wilde 2022-07-17 19:12:20 +01:00
parent d39f25dbdf
commit e3365b7ede
44 changed files with 36 additions and 26 deletions

View file

@ -1,4 +1,4 @@
import ../../base import ../../globurrl
import std/[strutils,os] import std/[strutils,os]
const battery = "BAT0" const battery = "BAT0"

View file

@ -1,5 +0,0 @@
# This is just an example to get you started. A typical binary package
# uses this file as the main entry point of the application.
when isMainModule:
echo("Hello, World!")

View file

@ -1,4 +1,4 @@
import ../../base import ../../globurrl
import std/[os,strutils,osproc,math] import std/[os,strutils,osproc,math]
const backlight = "intel_backlight" const backlight = "intel_backlight"

View file

@ -1,4 +1,4 @@
import ../../base import ../../globurrl
import std/[osproc,strutils,sequtils] import std/[osproc,strutils,sequtils]
#using qalc as it has a lot of nice inbuilt features #using qalc as it has a lot of nice inbuilt features

View file

@ -1,4 +1,4 @@
import ../../base import ../../globurrl
import std/[times,osproc,re] import std/[times,osproc,re]
const default_bg = blue const default_bg = blue

View file

@ -1,4 +1,4 @@
import ../../base import ../../globurrl
import std/[strutils,os,db_sqlite,osproc] import std/[strutils,os,db_sqlite,osproc]
const CLIP_DB = WM_TOOLS_DIR & ".clipurr_cache.sqlite" const CLIP_DB = WM_TOOLS_DIR & ".clipurr_cache.sqlite"

View file

@ -1,4 +1,4 @@
import ../../base import ../../globurrl
import std/[strutils,osproc] import std/[strutils,osproc]
# Basically just a wrapper to style passmenu nicely # Basically just a wrapper to style passmenu nicely

View file

@ -5,7 +5,9 @@ for dir in ./*; do
cd $dir cd $dir
f=$(echo $dir | sed 's/\.\///') f=$(echo $dir | sed 's/\.\///')
nimble install -y nimble install -y
sudo cp -v $f /usr/local/bin/$f if [[ $1 == "install" ]]; then
sudo cp -v $f /usr/local/bin/$f
fi
cd ../ cd ../
fi fi
done done

View file

@ -1,5 +1,5 @@
import ../../base import ../../globurrl
import lib/emojilist import lib/emurrjilist
import std/[re] import std/[re]
proc main() = proc main() =

View file

@ -1,4 +1,4 @@
import ../../base import ../../globurrl
import std/[times] import std/[times]
const default_bg = lightblue const default_bg = lightblue

View file

@ -1,4 +1,4 @@
import ../../base import ../../globurrl
import std/[osproc,json,strutils] import std/[osproc,json,strutils]
const I3_WORKSPACES = "i3-msg -t get_workspaces" const I3_WORKSPACES = "i3-msg -t get_workspaces"

View file

@ -1,4 +1,4 @@
import ../../base import ../../globurrl
import std/[os,osproc,strutils,sequtils] import std/[os,osproc,strutils,sequtils]
const default_fg = black const default_fg = black

View file

@ -1,4 +1,4 @@
import ../../base import ../../globurrl
import std/[os,strutils,sequtils,times] import std/[os,strutils,sequtils,times]
const note_dir = WM_TOOLS_DIR & ".notes.dmenu/" # Putting it in Nextcloud so it can sync :-) const note_dir = WM_TOOLS_DIR & ".notes.dmenu/" # Putting it in Nextcloud so it can sync :-)

View file

@ -1,4 +1,4 @@
import ../../base import ../../globurrl
import std/[osproc, re, strutils] import std/[osproc, re, strutils]
const host: string = "9.9.9.9" const host: string = "9.9.9.9"

View file

@ -1,4 +1,4 @@
import ../../base import ../../globurrl
import std/[os,osproc,tables,algorithm] import std/[os,osproc,tables,algorithm]
import configparser import configparser

View file

@ -1,4 +1,4 @@
import ../../base import ../../globurrl
import std/[times,os,osproc,strutils,sequtils] import std/[times,os,osproc,strutils,sequtils]
var screenshot_type = "" var screenshot_type = ""

View file

@ -1,4 +1,4 @@
import ../../base import ../../globurrl
import std/[os,re,math,strutils] import std/[os,re,math,strutils]
const default_bg = green const default_bg = green

View file

@ -1,5 +1,5 @@
#curl https://www.tidetimes.org.uk/exmouth-dock-tide-times-20190101 | grep -E -o ">((High|Low)|([0-9]+:[0-9]+)|([0-9]+\.[0-9]+m))" #curl https://www.tidetimes.org.uk/exmouth-dock-tide-times-20190101 | grep -E -o ">((High|Low)|([0-9]+:[0-9]+)|([0-9]+\.[0-9]+m))"
import ../../base import ../../globurrl
import std/[re,httpclient,times,osproc,sequtils] import std/[re,httpclient,times,osproc,sequtils]
# TODO: # TODO:

View file

@ -1,4 +1,4 @@
import ../../base import ../../globurrl
import std/[re,httpclient,json,strutils,tables] import std/[re,httpclient,json,strutils,tables]

View file

@ -1,4 +1,4 @@
import ../../base import ../../globurrl
import std/[os,strutils,sequtils,osproc] import std/[os,strutils,sequtils,osproc]
const audio_tools = @["ncpamixer", "pavucontrol"] const audio_tools = @["ncpamixer", "pavucontrol"]

13
volurrme/volurrme.nimble Normal file
View file

@ -0,0 +1,13 @@
# Package
version = "0.1.0"
author = "Paul Wilde"
description = "Display and control volume with dmenu"
license = "GPL-3.0-or-later"
srcDir = "src"
bin = @["volume"]
# Dependencies
requires "nim >= 1.6.6"

View file

@ -1,4 +1,4 @@
import ../../base import ../../globurrl
import std/[os,osproc,strutils,sequtils] import std/[os,osproc,strutils,sequtils]
const default_bg = purple const default_bg = purple