changed projects names so they all include the letters "urr" for some reason
This commit is contained in:
parent
d39f25dbdf
commit
e3365b7ede
44 changed files with 36 additions and 26 deletions
|
@ -1,4 +1,4 @@
|
|||
import ../../base
|
||||
import ../../globurrl
|
||||
import std/[strutils,os]
|
||||
|
||||
const battery = "BAT0"
|
|
@ -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!")
|
|
@ -1,4 +1,4 @@
|
|||
import ../../base
|
||||
import ../../globurrl
|
||||
import std/[os,strutils,osproc,math]
|
||||
|
||||
const backlight = "intel_backlight"
|
|
@ -1,4 +1,4 @@
|
|||
import ../../base
|
||||
import ../../globurrl
|
||||
import std/[osproc,strutils,sequtils]
|
||||
|
||||
#using qalc as it has a lot of nice inbuilt features
|
|
@ -1,4 +1,4 @@
|
|||
import ../../base
|
||||
import ../../globurrl
|
||||
import std/[times,osproc,re]
|
||||
|
||||
const default_bg = blue
|
|
@ -1,4 +1,4 @@
|
|||
import ../../base
|
||||
import ../../globurrl
|
||||
import std/[strutils,os,db_sqlite,osproc]
|
||||
|
||||
const CLIP_DB = WM_TOOLS_DIR & ".clipurr_cache.sqlite"
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
import ../../base
|
||||
import ../../globurrl
|
||||
import std/[strutils,osproc]
|
||||
|
||||
# Basically just a wrapper to style passmenu nicely
|
|
@ -5,7 +5,9 @@ for dir in ./*; do
|
|||
cd $dir
|
||||
f=$(echo $dir | sed 's/\.\///')
|
||||
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 ../
|
||||
fi
|
||||
done
|
|
@ -1,5 +1,5 @@
|
|||
import ../../base
|
||||
import lib/emojilist
|
||||
import ../../globurrl
|
||||
import lib/emurrjilist
|
||||
import std/[re]
|
||||
|
||||
proc main() =
|
|
@ -1,4 +1,4 @@
|
|||
import ../../base
|
||||
import ../../globurrl
|
||||
import std/[times]
|
||||
|
||||
const default_bg = lightblue
|
|
@ -1,4 +1,4 @@
|
|||
import ../../base
|
||||
import ../../globurrl
|
||||
import std/[osproc,json,strutils]
|
||||
|
||||
const I3_WORKSPACES = "i3-msg -t get_workspaces"
|
|
@ -1,4 +1,4 @@
|
|||
import ../../base
|
||||
import ../../globurrl
|
||||
import std/[os,osproc,strutils,sequtils]
|
||||
|
||||
const default_fg = black
|
|
@ -1,4 +1,4 @@
|
|||
import ../../base
|
||||
import ../../globurrl
|
||||
import std/[os,strutils,sequtils,times]
|
||||
|
||||
const note_dir = WM_TOOLS_DIR & ".notes.dmenu/" # Putting it in Nextcloud so it can sync :-)
|
|
@ -1,4 +1,4 @@
|
|||
import ../../base
|
||||
import ../../globurrl
|
||||
import std/[osproc, re, strutils]
|
||||
|
||||
const host: string = "9.9.9.9"
|
|
@ -1,4 +1,4 @@
|
|||
import ../../base
|
||||
import ../../globurrl
|
||||
import std/[os,osproc,tables,algorithm]
|
||||
import configparser
|
||||
|
|
@ -1,4 +1,4 @@
|
|||
import ../../base
|
||||
import ../../globurrl
|
||||
import std/[times,os,osproc,strutils,sequtils]
|
||||
|
||||
var screenshot_type = ""
|
|
@ -1,4 +1,4 @@
|
|||
import ../../base
|
||||
import ../../globurrl
|
||||
import std/[os,re,math,strutils]
|
||||
|
||||
const default_bg = green
|
|
@ -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))"
|
||||
import ../../base
|
||||
import ../../globurrl
|
||||
import std/[re,httpclient,times,osproc,sequtils]
|
||||
|
||||
# TODO:
|
|
@ -1,4 +1,4 @@
|
|||
import ../../base
|
||||
import ../../globurrl
|
||||
import std/[re,httpclient,json,strutils,tables]
|
||||
|
||||
|
|
@ -1,4 +1,4 @@
|
|||
import ../../base
|
||||
import ../../globurrl
|
||||
import std/[os,strutils,sequtils,osproc]
|
||||
|
||||
const audio_tools = @["ncpamixer", "pavucontrol"]
|
13
volurrme/volurrme.nimble
Normal file
13
volurrme/volurrme.nimble
Normal 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"
|
|
@ -1,4 +1,4 @@
|
|||
import ../../base
|
||||
import ../../globurrl
|
||||
import std/[os,osproc,strutils,sequtils]
|
||||
|
||||
const default_bg = purple
|
Loading…
Reference in a new issue